BENVGSA6: Data Science for Spatial Systems - Coursework Final

Lumiere London 2018

by Vishal Kumar

Introduction

Lumiere London 2018 was a four-day light festival and public art initiative which took place across the entire city of London between 18th to 21st January 2018. Lumiere London was commissioned by the Mayor of London and was programmed, produced and curated by Artichoke Trust, an arts charity.

In total, there were 58 public art installations from 53 artists across in six main locations – this is how the installations were divided by location: King’s Cross (11), Fitzrovia (5), Mayfair (10), London’s West End (15), Westminster & Victoria (6), and Southbank & Waterloo (10) - see map below, taken from the official Lumiere London programme.

The event was free-to-attent and was mainly supported by London & Partners, King's Cross and the West End. According to the press release (11th September 2017), additional funding and support was provided by a whole host of partners including Bloomberg Philanthropies, Wellcome, The Fitzrovia Partnership and South Bank and Waterloo BIDs.

Building on the phenomenal success of Lumiere London 2016, which was attended by 1.3 million people over four nights and generated £22 million for the local economy (Press Releass), Lumiere London 2018 is a successful example of integrating culture within the smart city framework.

For the organisers, artists, policy makers and also the local business who helped arrange and ensure the success of the festival, it is important to understand which of these light installations were most popular and which areas were most successful with the public.

The scope of the research is to assess which areas and installation were most popular by using social media data. Text analysis and Natural Language Processing will be used to answer the question by discovering which installations or areas were reference the most. Moreover, Image Recognition will be used to discover which areas appear the most in images uploaded online.

Step 1: Answering The Question

The goal of any data analysis project is to clarify the question or problem we're looking to solve, and to define a measure (or set of measures) for our success at solving that task.

The question I am trying to answer and solve is, "which Lumiere London 2018 area was most popular, and also which installation was most popular?"

Data and Methods

Manually-complied data of the installations from the official Lumiere London 2018 programme, Twitter data and Flickr data are used to answer the questions above.

Installation Data

Data about each installation - which includes the name of the artist, the title of the installation, the location of the installation, and the street name of the installation - was manually complied from the Lumiere London map provided to all attendees by Artichoke trust.

Twitter Data

Lumiere London was heavily promoted and marketed with the hashtag #LumiereLDN. This meant that there was a great opportunity to collect social media data about the event. The most popular social media platforms for engagment and interest were Twitter and Instagram.

Because Twitter's API only allows users to collect and stream data for free for a 7-day window, it was vitally important to capture Twitter data whilst Lumiere London was taking place betwen 18-21 January. At the time, I had not learnt and did have the knowledge to execute an effective API call to capture all of the #LumiereLDN Twitter data. I searched around for alternatives and found a website called TAGS which is a Google Sheets template developed by Martin Hawksey that lets you setup and run automated collection of search results from Twitter.

I used TAGs to collect data whilst the festival was and it automatically populated a Google Sheets which I then downloaded and cleaned before the analysis. I will talk more about this in Step 3.

Instagram Data

I also wanted to get my hand on some Instagram data using the hashtag #LumiereLDN, but Instagram's API was proving to be much more difficult than anticipated because it is extremely rigid and limited compared to Twitter's API. Moreover, Instagram has recently changed its API from a Legacy version to a Graph API; the change from Legacy to Graph also came with much stricter regualation and compliance obligations, where developers needed to submit an app for approval before being able to use the API. Because of these constraints, Instagram data was not used in the analysis.

Flickr data

I used Flikr's API to search for images related to the search query "Lumiere London" on Flickr. I used the API to gather various bits of information which I then pieced together to create a long list of URLs for images related to the search "Lumiere London". This will be explained in more detail later. The reason for gathering URLs of images related to the search term "Lumiere London" is because I hope to use Google's Vision API on these use these images to identify which installation was photographed the most.

Literature Review

There is not a traditional literature as such - most of the literature needed to inform and undertake the analysis came from articles on Medium, questions and answered on StackOverFlow, or official documentations of the Python libraries; these will be referenced, cited and credited accordingly.

Step 2: Required Libraries

The primary libraries that will be used to undertake the analysis are:

  1. NumPy: Provides a fast numerical array structure and helper functions.
  2. pandas: Provides a DataFrame structure to store data in memory and work with it easily and efficiently.
  3. matplotlib: Basic plotting library in Python; most other Python plotting libraries are built on top of it.
  4. seaborn: Advanced statistical plotting library.
  5. Natural Language Toolkit: a library used to work with human language data and to conduct text processing.
  6. scikit-learn: The essential Machine Learning package in Python.
In [1]:
import pandas as pd
import numpy as np

pd.set_option('display.max_rows', 300) # specifies number of rows to show
pd.options.display.float_format = '{:40,.0f}'.format # specifies default number format to 4 decimal places
pd.options.display.max_colwidth
pd.options.display.max_colwidth = 1000

#Whats the reason for setting these options?
In [2]:
# This line tells the notebook to show plots inside of the notebook
import matplotlib.pyplot as plt
%matplotlib inline

import seaborn as sb
In [3]:
import nltk
import sklearn

However, other specilaised libraries will be installed throughout this notebook in order to undertake deeper and more advanced analysis. These will be installed and then imported within the notebook only when neccessary.

  1. Pip: a package management system used to install and manage software packages written in Python.
  2. Plotly: a graphing library to make interactive, publication-quality graphs.
  3. Requests: a simple to use HTTP library for Python which makes API requests easy.
  4. JSON:
  5. Flickr API: Flickr is one of the most popular photo hosting platforms. Their API gives developers the opportunity to use Flickr.
  6. Watson Developer Cloud:
  7. Google Cloud Natural Langauage API:
  8. gensim:
  9. Google Cloud Vision API:

Installing advanced libraries using pip

To install these more advanced libraries, we can use the sys library and the executable function in order to install libraries using a pip install directly into this Jupyter kernal. We are first going to install pip and then the flickrapi and plotly.

In [4]:
# Install pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install --upgrade pip
Collecting pip
  Downloading https://files.pythonhosted.org/packages/5f/25/e52d3f31441505a5f3af41213346e5b6c221c9e086a166f3703d2ddaf940/pip-18.0-py2.py3-none-any.whl (1.3MB)
    100% |████████████████████████████████| 1.3MB 3.8MB/s ta 0:00:01
google-cloud 0.32.0 has requirement google-cloud-vision<0.30dev,>=0.29.0, but you'll have google-cloud-vision 0.31.0 which is incompatible.
Installing collected packages: pip
  Found existing installation: pip 10.0.1
    Uninstalling pip-10.0.1:
      Successfully uninstalled pip-10.0.1
Successfully installed pip-18.0

Flickr API installation

Install Flickr API on your machine using:

pip install flickrapi

Or, you can install inside this notebook by runing the line below.

In [5]:
# Install FlickrAPI pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install flickrapi
Requirement already satisfied: flickrapi in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (2.4.0)
Requirement already satisfied: requests-toolbelt>=0.3.1 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from flickrapi) (0.8.0)
Requirement already satisfied: requests>=2.2.1 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from flickrapi) (2.18.4)
Requirement already satisfied: six>=1.5.2 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from flickrapi) (1.11.0)
Requirement already satisfied: requests-oauthlib>=0.4.0 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from flickrapi) (0.8.0)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests>=2.2.1->flickrapi) (3.0.4)
Requirement already satisfied: idna<2.7,>=2.5 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests>=2.2.1->flickrapi) (2.6)
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests>=2.2.1->flickrapi) (1.22)
Requirement already satisfied: certifi>=2017.4.17 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests>=2.2.1->flickrapi) (2018.1.18)
Requirement already satisfied: oauthlib>=0.6.2 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests-oauthlib>=0.4.0->flickrapi) (2.0.6)

Advanced visualisation using plotly

Install Plotly on your machine using:

$ pip install plotly

Or, you can install inside this notebook by runing the line below.

In [6]:
# Install Plotly pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install plotly
Requirement already satisfied: plotly in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (2.5.1)
Requirement already satisfied: pytz in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from plotly) (2018.3)
Requirement already satisfied: six in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from plotly) (1.11.0)
Requirement already satisfied: decorator>=4.0.6 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from plotly) (4.1.2)
Requirement already satisfied: requests in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from plotly) (2.18.4)
Requirement already satisfied: nbformat>=4.2 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from plotly) (4.4.0)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests->plotly) (3.0.4)
Requirement already satisfied: idna<2.7,>=2.5 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests->plotly) (2.6)
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests->plotly) (1.22)
Requirement already satisfied: certifi>=2017.4.17 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from requests->plotly) (2018.1.18)
Requirement already satisfied: ipython_genutils in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from nbformat>=4.2->plotly) (0.2.0)
Requirement already satisfied: traitlets>=4.1 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from nbformat>=4.2->plotly) (4.3.2)
Requirement already satisfied: jsonschema!=2.5.0,>=2.4 in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from nbformat>=4.2->plotly) (2.6.0)
Requirement already satisfied: jupyter_core in /Users/vishalkumar.london/anaconda3/lib/python3.6/site-packages (from nbformat>=4.2->plotly) (4.3.0)

Step 3: Checking and cleaning the Data

Now that the relevant packages are installed, the next step is to take a look at the data we are working with. It's important to do this so that we can spot errors and clean the data to make subsequent analysis is easier and smoother.

We will start by reading all the data as Pandas DataFrames.

Lumiere London Installation Data

In [7]:
installation_data = pd.read_csv('data/installation_data.csv')
installation_data.head()
Out[7]:
Number CodeNumber Location InstallationName Artist StreetName
0 1 KX1 king's cross ifo (identified flying object) jacques rival battle bridge place london
1 2 KX2 king's cross dot philippe morvan universal music four pancras square london
2 3 KX3 king's cross upperground maya mouawad and cyril laurier king’s cross tunnel london
3 4 KX4 king's cross lampounette tilt king’s boulevard london
4 5 KX5 king's cross waterlicht​ daan​ ​roosegaarde​ granary square london
In [8]:
installation_data = installation_data.fillna(value=0)

#maybe make the installation names in lowercase

Twitter Data

Next we will look at the Twitter data which I got from TAGs. The csv loaded in below is a slightly-cleaned version of the output I recived from TAGS.

In [9]:
twitter_data = pd.read_csv('data/LumiereLDN_Twitter_clean.csv')
twitter_data.head(2)
Out[9]:
DateTime Day Date UserId UserHandle Text UserFollowers UserFriends GeogCoordinates Long Lat UserLocation UserLanguage TweetURL from_user_id_str source profile_image_url
0 23/01/2018 14:51 Tue Jan 23 14:51:59 +0000 2018 956,000,000,000,000,000 Reo_reo_BLEACH RT @newsdigest: 【英国】ロンドンの赤い電話ボックスが水槽に変身!電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが、今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです。 #LumiereLDN Benedetto Bufalino and Benoit Deseille: Aquarium https://t.co/8QNZARaJ8M 8 18 NaN nan nan NaN ja http://twitter.com/Reo_reo_BLEACH/statuses/955815379355316224 946,000,000,000,000,000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> http://pbs.twimg.com/profile_images/951045994023501824/CtAY4MJj_normal.jpg
1 23/01/2018 14:51 Tue Jan 23 14:51:03 +0000 2018 956,000,000,000,000,000 markpinneyassoc RT @_designjunction: Did you visit #LumiereLDN this year? With so many installations what were your favourites? We loved this installation by Dutch artist Daan Roosegaarde on Granary Square, @kingscrossN1C https://t.co/4dLy9LGgsn 331 183 NaN nan nan London en http://twitter.com/markpinneyassoc/statuses/955815145363660800 404,135,007 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> http://pbs.twimg.com/profile_images/903287154289369088/gqXwqXrw_normal.jpg

There are a lot of NaN values which I am going to change to 0 using the below code fillna() function.

In [10]:
twitter_data = twitter_data.fillna(value=0)

I also want to convert the DateTime column to have a data type of datetime64 - this is done by the using the below code.

In [11]:
twitter_data['DateTime'] = pd.to_datetime(twitter_data['DateTime'])
twitter_data.dtypes
Out[11]:
DateTime             datetime64[ns]
Day                          object
Date                         object
UserId                      float64
UserHandle                   object
Text                         object
UserFollowers               float64
UserFriends                 float64
GeogCoordinates              object
Long                        float64
Lat                         float64
UserLocation                 object
UserLanguage                 object
TweetURL                     object
from_user_id_str            float64
source                       object
profile_image_url            object
dtype: object

Moreover, I want to split out DateTime column into its various components - Year, Month, Day, Hour - this will be useful for future analysis when I want to view how the frequency of tweets evolved through time.

In [12]:
twitter_data['Hour'] = twitter_data['DateTime'].apply(lambda x: x.hour)
twitter_data['Month'] = twitter_data['DateTime'].apply(lambda x: x.month)
twitter_data['Day'] = twitter_data['DateTime'].apply(lambda x: x.day)
twitter_data['Year'] = twitter_data['DateTime'].apply(lambda x: x.year)
In [13]:
twitter_data.head(3)
Out[13]:
DateTime Day Date UserId UserHandle Text UserFollowers UserFriends GeogCoordinates Long Lat UserLocation UserLanguage TweetURL from_user_id_str source profile_image_url Hour Month Year
0 2018-01-23 14:51:00 23 Jan 23 14:51:59 +0000 2018 956,000,000,000,000,000 Reo_reo_BLEACH RT @newsdigest: 【英国】ロンドンの赤い電話ボックスが水槽に変身!電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが、今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです。 #LumiereLDN Benedetto Bufalino and Benoit Deseille: Aquarium https://t.co/8QNZARaJ8M 8 18 0 0 0 0 ja http://twitter.com/Reo_reo_BLEACH/statuses/955815379355316224 946,000,000,000,000,000 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> http://pbs.twimg.com/profile_images/951045994023501824/CtAY4MJj_normal.jpg 14 1 2018
1 2018-01-23 14:51:00 23 Jan 23 14:51:03 +0000 2018 956,000,000,000,000,000 markpinneyassoc RT @_designjunction: Did you visit #LumiereLDN this year? With so many installations what were your favourites? We loved this installation by Dutch artist Daan Roosegaarde on Granary Square, @kingscrossN1C https://t.co/4dLy9LGgsn 331 183 0 0 0 London en http://twitter.com/markpinneyassoc/statuses/955815145363660800 404,135,007 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> http://pbs.twimg.com/profile_images/903287154289369088/gqXwqXrw_normal.jpg 14 1 2018
2 2018-01-23 14:46:00 23 Jan 23 14:46:38 +0000 2018 956,000,000,000,000,000 syedarqam Fish in a phone booth.\nLumiere London 2018.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#nofilters #LumiereLDN… https://t.co/ZJBwrK860O 253 203 0 0 0 Karachi, Pakistan en http://twitter.com/syedarqam/statuses/955814031872454656 306,194,009 <a href="http://instagram.com" rel="nofollow">Instagram</a> http://pbs.twimg.com/profile_images/659013942237360128/A_zsS1J2_normal.jpg 14 1 2018

The twitter_data DataFrame has a variety of columns, however, I am only interested in a subset of these columns in order to answer my main questions. I am going to use the below code to select the columns that I am most interested in, rearrange them in an order I prefer, and create a new, smaller DataFrame called twitter.

In [14]:
twitter_data.columns
Out[14]:
Index(['DateTime', 'Day', 'Date', 'UserId', 'UserHandle', 'Text',
       'UserFollowers', 'UserFriends', 'GeogCoordinates', 'Long', 'Lat',
       'UserLocation', 'UserLanguage', 'TweetURL', 'from_user_id_str',
       'source', 'profile_image_url', 'Hour', 'Month', 'Year'],
      dtype='object')
In [15]:
twitter = twitter_data[['DateTime', 'Hour', 'Day', 'Month', 'Year', 'UserId', 'UserHandle', 'Text',
       'UserFollowers', 'UserFriends', 'GeogCoordinates', 'Long', 'Lat',
       'UserLocation', 'UserLanguage', 'TweetURL','source', 'profile_image_url']]

twitter.head(3)
Out[15]:
DateTime Hour Day Month Year UserId UserHandle Text UserFollowers UserFriends GeogCoordinates Long Lat UserLocation UserLanguage TweetURL source profile_image_url
0 2018-01-23 14:51:00 14 23 1 2018 956,000,000,000,000,000 Reo_reo_BLEACH RT @newsdigest: 【英国】ロンドンの赤い電話ボックスが水槽に変身!電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが、今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです。 #LumiereLDN Benedetto Bufalino and Benoit Deseille: Aquarium https://t.co/8QNZARaJ8M 8 18 0 0 0 0 ja http://twitter.com/Reo_reo_BLEACH/statuses/955815379355316224 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> http://pbs.twimg.com/profile_images/951045994023501824/CtAY4MJj_normal.jpg
1 2018-01-23 14:51:00 14 23 1 2018 956,000,000,000,000,000 markpinneyassoc RT @_designjunction: Did you visit #LumiereLDN this year? With so many installations what were your favourites? We loved this installation by Dutch artist Daan Roosegaarde on Granary Square, @kingscrossN1C https://t.co/4dLy9LGgsn 331 183 0 0 0 London en http://twitter.com/markpinneyassoc/statuses/955815145363660800 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> http://pbs.twimg.com/profile_images/903287154289369088/gqXwqXrw_normal.jpg
2 2018-01-23 14:46:00 14 23 1 2018 956,000,000,000,000,000 syedarqam Fish in a phone booth.\nLumiere London 2018.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#nofilters #LumiereLDN… https://t.co/ZJBwrK860O 253 203 0 0 0 Karachi, Pakistan en http://twitter.com/syedarqam/statuses/955814031872454656 <a href="http://instagram.com" rel="nofollow">Instagram</a> http://pbs.twimg.com/profile_images/659013942237360128/A_zsS1J2_normal.jpg

Flickr Data

Next we will check the Flickr data.

In order to create the flicker_urls_complete.csv, I used the Flickr API. Flickr's API documentation explains that it is possible to construct the source URL to a photo once you know its ID, server ID, farm ID and secret, as returned by the API method.

Below I will use the API key and secret provided to me by Flickr to make an API call. I will then create a function which gathers and then appends all photo IDs, server IDs, farm IDs and secrets to four different list for the search term "Lumiere London" on Flickr between the dates 01/01/2018 and 10/04/2018.

Good Python documentation of the Flickr API can be found here.

In [16]:
import flickrapi

api_key = u'cc897c10a2313e8464848766e33a2b3d'
api_secret = u'3d53e2ac88c39840'

flickr = flickrapi.FlickrAPI(api_key, api_secret)

flickr_farm = []
flickr_server = []
flickr_id = []
flickr_secret = []

for photo in flickr.walk(tag_mode='all',
        text='Lumiere London',
        min_taken_date='2018-01-01',
        max_taken_date='2018-04-10'):
            flickr_farm.append(photo.get('farm'))
            flickr_id.append(photo.get('id'))
            flickr_server.append(photo.get('server'))
            flickr_secret.append(photo.get('secret'))
            
In [17]:
a = np.array(flickr_farm)
b = np.array(flickr_server)
c = np.array(flickr_id)
d = np.array(flickr_secret)

Once I got four different lists for a photo's ID, server ID, farm ID and secret, I turned them into numpy arrays (as shown above) and then concatinated them and converted the whole thing into a pandas DataFrame (as shown below).

In [18]:
new = np.concatenate((a,b,c,d), axis=0)
new = pd.DataFrame(new)
#new.to_csv('flicker_urls.csv')

I then saved the new DataFrame as a csv file and created the URLS by joining them together in Excel to save time. Below I have loaded in the "flicker_urls_complete.csv" csv file, which is a complete list of all the URLs related to the search term "Lumiere London" on Flickr.

In [19]:
flickr_urls = pd.read_csv('Data/flicker_urls_complete.csv')
flickr_urls.head()
Out[19]:
Rank FlickrURLs
0 1 https://farm1.staticflickr.com/864/26456445337_9d7bbd990f.jpg
1 2 https://farm1.staticflickr.com/806/41112347391_4ce8c26be5.jpg
2 3 https://farm1.staticflickr.com/800/39303645560_1c95dece06.jpg
3 4 https://farm1.staticflickr.com/865/40217700035_1f4ff25156.jpg
4 5 https://farm1.staticflickr.com/806/39303643590_ca4fbe67e1.jpg

This section presents pelimary analysis on the various data sets to get a better understanding of the what happened during Lumeire London 2018.

Lumiere London Installation Data Analysis

Lets look at how many installations were in each area. We are fist going to import Plotly, a data visualisation tool to help us interactively visualise the data.

In [20]:
from plotly import __version__
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot

import plotly.graph_objs as go
from plotly.graph_objs import *

#You can also plot your graphs offline inside a Jupyter Notebook Environment. 
#First you need to initiate the Plotly Notebook mode as below:
init_notebook_mode(connected=True)

#Run at the start of every ipython notebook to use plotly.offline. 
#This injects the plotly.js source files into the notebook.

#https://plot.ly/python/offline/#generating-offline-graphs-within-jupyter-notebook'

The below code will create a simle bar graph with the frequency of installation by location area. Hover over the graphs to view the data points.

In [21]:
#which areas had the most instalations

installation_data['freq'] = installation_data.groupby('Location')['Location'].transform('count')

#make graph
data = [Bar(x=installation_data['Location'],
            y=installation_data['freq'])]

layout = Layout(
    title="Number of Lumiere Installations by Location",
    xaxis=dict(title='Location'),
    yaxis=dict(title='Number of Installations')
)

fig = Figure(data=data, layout=layout)

iplot(fig, filename='jupyter/basic_bar')

The West End had the most installations with 15 in total; King's Cross came in second with 11 installations in total, and Fitzrovia had the least number of insallations with 4 - it seems like the areas which donated and contributed to more funding to Lumiere London recived more installations. Please see the images below to see what the installaitons looked like - this information was taken from the official Lumiere London programme.

Twitter Data Analysis

Now, let's take a quick loko at the twitter data by using the describe function; I will also create some graphs.

In [22]:
twitter.describe()
Out[22]:
Hour Day Month Year UserId UserFollowers UserFriends Long Lat
count 10,709 10,709 10,709 10,709 10,709 10,709 10,709 10,709 10,709
mean 15 19 1 2,018 954,385,003,268,559,104 16,039 1,669 2 -0
std 6 2 0 0 683,442,002,073,736 218,215 6,993 9 0
min 0 13 1 2,018 952,000,000,000,000,000 0 0 0 -0
25% 11 18 1 2,018 954,000,000,000,000,000 211 288 0 0
50% 16 19 1 2,018 954,000,000,000,000,000 757 675 0 0
75% 20 21 1 2,018 955,000,000,000,000,000 2,676 1,670 0 0
max 23 23 1 2,018 956,000,000,000,000,000 16,784,087 480,020 52 4

In total we have 10,709 tweets. The users had an average number of followers of 16,039, with one Twitter profile who has a max number of followers of 16,784,087. Let's try find out who these Twitter profiles are and perhaps some of the top ones.

Who are the top 10 twitter profiles?

In [23]:
top10_twitterUsers = twitter[['UserHandle','UserFollowers','Text','DateTime']]
top10_twitterUsers = top10_twitterUsers.set_index(['DateTime'])

top10_twitterUsers = top10_twitterUsers.sort_values(['UserFollowers'],ascending=False).head(10)
In [24]:
top10_twitterUsers
Out[24]:
UserHandle UserFollowers Text
DateTime
2018-01-19 19:54:00 TwitterVideo 16,784,087 RT @PriorConstruct: Lumiere London #Lumiereldn #Westminster Abbey https://t.co/mN93eCO8c0
2018-01-17 07:08:00 BBCNews 9,146,738 RT @BBCLondonNews: Festival of light returns to London #LumiereLDN https://t.co/XlEnl7BteC https://t.co/pj6LxlvXHH
2018-01-19 12:49:00 GordonRamsay 6,509,338 RT @mazerestaurant: 'A nice little challenge, to create something with light - so why not a light bulb itself? #LumiereLDN is finally here and our bar team is celebrating with the perfect serve throughout the festival between 18-21st January. 💡 https://t.co/3g6Yu4SVSi
2018-01-20 15:39:00 MayorofLondon 3,162,069 Lumiere London is the capital’s biggest free outdoor light festival with more than 50 installations reimagining London’s spectacular architecture and streets. It runs until Sunday 21 January - get a taste here ↓ #LumiereLDN https://t.co/QbMjqfJEgC
2018-01-21 12:09:00 ThisisDavina 2,864,950 RT @SadiqKhan: Glad you enjoyed it. Bigger, brighter and bolder than before, tonight is the last night of #LumiereLDN. Don’t miss out! #LondonIsOpen\nhttps://t.co/L1flMOWcuq https://t.co/KohYriG8Va
2018-01-22 11:12:00 businessinsider 2,299,670 RT @BIUK: Did you get a chance to see #LumiereLDN? The spectacular art display featured dazzling work from over 50 artists. https://t.co/c174ydN0FG
2018-01-19 17:44:00 TfL 2,272,092 The lights are on, but they’re not home – TfL and partners are working hard throughout the night to keep London moving during #LumiereLDN Don’t miss out on London’s spectacular light festival until 21 Jan💡 https://t.co/yCfypTqjJC
2018-01-17 23:06:00 MikeBloomberg 2,190,297 Today our Best of Bloomberg volunteers joined @CirqueBijou &amp; @LambethAcademy students to kick off #LumiereLDN outside our new European HQ. Running through Jan 21, Londoners can view 50+ stunning artworks each night from 5:30pm to 10:30pm. #BloombergService https://t.co/12tuBcUzcc https://t.co/hpeMUNi3LZ
2018-01-18 16:18:00 TimeOutLondon 1,592,926 Get ready: @LumiereLondon launches tonight. Here's where to find the best installations across the city #LumiereLDN https://t.co/p2k9qY3iwF https://t.co/ASm5RYpZbm
2018-01-19 23:22:00 TfLTrafficNews 1,358,453 #LumiereLDN - All road closures have now been removed. Traffic flows are returning to normal for the time of day. The event will continue tomorrow with closures in place from 1630hrs.
In [25]:
top10 = np.array(top10_twitterUsers['UserHandle'])
top10
Out[25]:
array(['TwitterVideo', 'BBCNews', 'GordonRamsay', 'MayorofLondon',
       'ThisisDavina', 'businessinsider', 'TfL', 'MikeBloomberg',
       'TimeOutLondon', 'TfLTrafficNews'], dtype=object)

Number of tweets per day

In order to count the frequency of tweets by day, we need to perform a count function on the Day column of the orginal twitter_data DataFrame. I will then use the Plotly graphing library to create a bar graph to visulise tweets by day.

In [26]:
twitter_data['DailyFreq'] = twitter_data.groupby('Day')['Day'].transform('count')

data = [Bar(x=twitter_data['Day'],  #change back to location_freq['Location']
            y=twitter_data['DailyFreq'])] #change back to location_freq['Frequency']

layout = Layout(
    title="Number of Tweets by Day",
    xaxis=dict(title='Day in January'),
    yaxis=dict(title='Number of Tweets')
)

fig = Figure(data=data, layout=layout)

iplot(fig, filename='jupyter/basic_bar')

According to the Twitter data I got from TAGS, the most popular Lumiere London day in terms of the number of tweets was Day 2, 19th January 2018, with a total of 2,449 unique tweets. Again, scroll over the bars to see the number of tweets per day.

Number of tweets by hour

In [27]:
twitter_data['HourlyFreq'] = twitter_data.groupby('Hour')['Hour'].transform('count')

data = [Bar(x=twitter_data['Hour'],  #change back to location_freq['Location']
            y=twitter_data['HourlyFreq'])] #change back to location_freq['Frequency']

layout = Layout(
    title="Number of Tweets by Hour",
    xaxis=dict(title='Hour of Day'),
    yaxis=dict(title='Number of Tweets')
)

fig = Figure(data=data, layout=layout)

iplot(fig, filename='jupyter/basic_bar')

The most popular time of the for tweets during the festival was 6pm; there is a cumulative total of 781 tweets for the 18th hour (6pm) of each the day. The second most popular time was the 21st hour (9 pm), with a cumulative 773 tweets.

In [28]:
twitter_data['LanguageFreq'] = twitter_data.groupby('UserLanguage')['UserLanguage'].transform('count')
In [29]:
df_lan = twitter_data[['UserLanguage','LanguageFreq']]
df_lan = df_lan.drop_duplicates()
df_lan = df_lan.sort_values('LanguageFreq', ascending=False)
df_lan = df_lan.reset_index(drop=True)
df_lan = df_lan.head(10)

df_lan
Out[29]:
UserLanguage LanguageFreq
0 en 8914
1 en-gb 886
2 es 160
3 ja 145
4 fr 133
5 it 118
6 de 85
7 en-GB 84
8 zh-cn 28
9 pt 27
In [30]:
data = [
    go.Bar(
        x=df_lan['LanguageFreq'], # assign x as the dataframe column 'x'
        y=df_lan['UserLanguage'],
        orientation='h',
    )
]

layout = Layout(
    title="Frequency of Language by Twitter User",
    xaxis=dict(title='Number of Users'),
    yaxis=dict(title='User Language')
)

fig = Figure(data=data, layout=layout)

iplot(fig)

As expected, english was overwhelmingly the most popular language of the tweets.

Natural Language Processing

In the last section, we saw that there were 10,709 tweets in total on Twitter for the hashtag #LumiereLDN, this means that there is a sizable amount of text that can be analysed. In this section, I will use natural language processing techniques to analyse the text of the tweets to discover which areas and installations were most popular, what was the general sentiment of the Lumiere London, and to see if there are any entities and classifcations that can be drawn.

Firstly, I will pre-process the text by cleaning it, then I will create a large corpus, and finally, I will perform some natural language processing using IBM Watson's Cloud NLP and Google Cloud's Language API, and I will use a powerful NLP library called word2vec from gensim to vectorise the corpus and then visualise these vectors using a t-SNE from the scikit-learn library.

First we need to pre-process the text. The main library we will start with is Python's nltk Natural Language Tool Kit, which has already been installed in Step 2 of this notebook.

The aim is to first remove all frequent and ordinary words (stopwords) from the text, web-links and hyperlinks, and punctuation and numbers, so that we are just left with a clean bag of sentences.

We first download the stopwords list and the punkt lsit from the nltk library. Stopwords will remove works like "and", "or", "not", "the", "that", etc. Punkt Tokenizer Models divides a text into a list of sentences by using an unsupervised algorithm to build a model for abbreviation words, collocations, and words that start sentences. Finally, we download the re library to help provide regular expression matching operations.

In [31]:
#import nltk
nltk.download('stopwords')
nltk.download('punkt')

import re
[nltk_data] Downloading package stopwords to
[nltk_data]     /Users/kumarv/nltk_data...
[nltk_data]   Package stopwords is already up-to-date!
[nltk_data] Downloading package punkt to /Users/kumarv/nltk_data...
[nltk_data]   Package punkt is already up-to-date!

All the text from the tweets look like this in a Pandas DataFrame

In [32]:
twittertext = pd.DataFrame(twitter['Text'])

twittertext.head()
Out[32]:
Text
0 RT @newsdigest: 【英国】ロンドンの赤い電話ボックスが水槽に変身!電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが、今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです。 #LumiereLDN Benedetto Bufalino and Benoit Deseille: Aquarium https://t.co/8QNZARaJ8M
1 RT @_designjunction: Did you visit #LumiereLDN this year? With so many installations what were your favourites? We loved this installation by Dutch artist Daan Roosegaarde on Granary Square, @kingscrossN1C https://t.co/4dLy9LGgsn
2 Fish in a phone booth.\nLumiere London 2018.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n#nofilters #LumiereLDN… https://t.co/ZJBwrK860O
3 RT @artichoketrust: Ever wondered who the people behind #LumiereLDN are? Read an interview with Harry from @qedproductions as part of our partnership with @technicians_mih https://t.co/DjMHP54Mzb #techniciansmakeithappen https://t.co/Wd5gHKVI7a
4 See a selection of our favourite installations from this year's #LumiereLDN ⚡️ \nhttps://t.co/3aVAOUXlik @artichoketrust @visitlondon @LDN_gov

Twitter Corpus

We take the text from the tweets and create a corpus. First, I join each of the rows in the "Text" column within the DataFrame with the .join function and then we remove all "http://" links using the sub operation from re.

In [33]:
#this is the whole thing
corpus = ' '.join(twitter['Text'][0:])
#remove https links
corpus = re.sub(r"http\S+", "", corpus)
corpus = corpus.replace('.', '. ')
In [34]:
#corpus

However, the corpus of all the tweets is huge and was giving me problems later down the line because it wasn't easily passing into many of the other functions. So, I will split corpus into four small corpuses.

In [35]:
#create a smaller corpus from the first 3000 words
corpus1 = ' '.join(twitter['Text'][0:3000])
#remove https links
corpus1 = re.sub(r"http\S+", "", corpus1)
corpus1 = corpus1.replace('.', '. ')
In [36]:
#create a second smaller corpus from the next 3000 words
corpus2 = ' '.join(twitter['Text'][3000:6000])
#remove https links
corpus2 = re.sub(r"http\S+", "", corpus2)
corpus2 = corpus2.replace('.', '. ')
In [37]:
#create a third smaller corpus from the next 3000 words
corpus3 = ' '.join(twitter['Text'][6000:9000])
#remove https links
corpus3 = re.sub(r"http\S+", "", corpus3)
corpus3 = corpus3.replace('.', '. ')
In [38]:
#create a third smaller corpus from the next 3000 words
corpus4 = ' '.join(twitter['Text'][9000:12000])
#remove https links
corpus4 = re.sub(r"http\S+", "", corpus4)
corpus4 = corpus4.replace('.', '. ')

Using nltk to tokenise the words in each of the corpuses

This article on Medium provides a great intro into the essentials of nltk. The corpuses above are just large chunks of free-form text and do not provide much insight, yet. The article explains that the first step should be to tokenize sentences into words. Moreover, it's important to remove stop words and punctuation because these appear very frequently but will offer very little insight when performing the final analysis.

I used the function from the following gist in order to pre-process corpus1 by removing stopwords and punctuation.

In [39]:
import string
import nltk

from nltk.tokenize import RegexpTokenizer
from nltk.corpus import stopwords

def preprocess1(sentence):
    sentence = sentence.lower()
    #removes punctuation
    tokenizer = RegexpTokenizer(r'\w+')
    tokens = tokenizer.tokenize(sentence)
    #removes stopwords
    filtered_words = [w for w in tokens if not w in stopwords.words('english')]
    return " ".join(filtered_words)

sentence = corpus1

#print (preprocess(sentence))

Our next step in working with free-form text is to tokenize sentences into words - I will use the word_tokenize function from the nltk library to do this.

In [40]:
from nltk.tokenize import word_tokenize
sentence_tokenized1 = preprocess1(sentence)

#sentence_tokenized1
In [41]:
tokens1 = word_tokenize(sentence_tokenized1)

We will then turn the tokenised text (only for corpus 1) without stop words, puctuation and hyperlinks into a Pandas Dataframe with a column for how frequently the tokenised text appeared in the corpus.

In [42]:
df_corpus1 = pd.DataFrame(tokens1)
df_corpus1.columns = ['Words']
df_corpus1['Freq'] = df_corpus1.groupby('Words')['Words'].transform('count')
df_corpus1.head()
Out[42]:
Words Freq
0 rt 1532
1 newsdigest 33
2 英国 34
3 ロンドンの赤い電話ボックスが水槽に変身 33
4 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 33
In [43]:
df_corpus1.Words.value_counts()

#remove words with frequency of 1
Out[43]:
lumiereldn             3002
rt                     1532
london                  964
lumierelondon           488
lumiere                 475
visitlondon             456
artichoketrust          437
light                   394
amp                     324
see                     322
night                   291
last                    288
festival                275
tonight                 262
square                  251
lights                  243
art                     241
installations           226
lumierelondon2018       185
evening                 177
2018                    162
westminster             158
chance                  145
abbey                   143
installation            142
leicester               137
weekend                 134
cross                   132
spectacular             132
part                    126
get                     113
make                    110
great                   107
dazzling                107
thelondoneye            106
absolutely              105
city                    101
beautiful               101
30                       99
londonisopen             97
us                       96
westminsterabbey         92
lighting                 92
around                   89
badger                   89
50                       87
fox                      86
stars                    86
southbank                85
work                     84
box                      83
invaded                  83
beasts                   83
irradiated               83
terrifying               83
colossal                 83
like                     82
marshalljulius           82
dreams                   82
badgertrust              82
one                      81
amazing                  80
day                      80
sweet                    79
year                     79
lit                      78
sunday                   77
kingscross               77
kingscrossn1c            77
visit                    77
across                   76
check                    76
thank                    75
aquarium                 75
display                  74
wabbey                   72
time                     71
miss                     70
south                    70
king                     69
mayoroflondon            69
artists                  68
find                     67
tomorrow                 67
bank                     66
favourite                66
st                       65
photos                   65
sadiqkhan                63
today                    63
street                   61
trafalgar                60
stunning                 60
people                   59
kings                    58
telephone                56
love                     56
enjoyed                  56
looking                  55
mayfair                  55
loved                    54
thanks                   53
timeoutlondon            53
30pm                     52
next                     52
go                       51
fantastic                51
spirit                   51
warrener                 50
patrice                  50
incredible               50
6                        49
waterlicht               47
enjoy                    47
featured                 47
rain                     47
granary                  47
event                    47
enjoying                 46
end                      46
biuk                     46
gt                       45
busy                     45
lives                    45
best                     45
17                       45
well                     45
many                     45
oxford                   44
circus                   43
southbanklondon          43
piccadilly               43
lovelondon               41
westend                  41
new                      41
wonderful                40
3                        40
really                   40
brilliant                40
fun                      39
explore                  39
5                        38
use                      38
final                    38
got                      38
back                     38
londonlife               38
coming                   37
free                     36
another                  36
                       ... 
mr_simms_hx               1
ups                       1
treatment                 1
privacy                   1
homesweethome             1
feast                     1
iphone                    1
eslighting                1
winterweather             1
telling                   1
9                         1
accumulated               1
gohitit                   1
cite                      1
arrived                   1
ealking                   1
stream                    1
purchase                  1
assim                     1
worthy                    1
em                        1
noir                      1
prevalence                1
homes                     1
bamconstructuk            1
unit                      1
marlo                     1
recently                  1
tasty                     1
paulwf                    1
jar                       1
unkind                    1
viewing                   1
shimmering                1
lumire                    1
culturallearning          1
heartwarming              1
photographing             1
wants                     1
eluminate2018             1
candlelit                 1
styles                    1
filter                    1
printer                   1
fella                     1
wonderland                1
shitshow                  1
netherlands               1
streetlife                1
fucking                   1
sleety                    1
site                      1
sofa                      1
advance                   1
islingtontunnel           1
performances              1
soak                      1
mount                     1
daniel                    1
cyclingpower              1
customary                 1
monmouthkitchen           1
sipsmith                  1
shadow                    1
sundayshowtunes           1
beams                     1
impactful                 1
bruges                    1
pep                       1
german                    1
koalacourses              1
watering                  1
resonates                 1
jungle                    1
launch                    1
liaison                   1
streetphotog              1
piers                     1
stayed                    1
pots                      1
beans                     1
2019                      1
gantonstreet              1
offices                   1
failing                   1
ici                       1
ig_captu                  1
excellent                 1
reason                    1
possibly                  1
whatmap                   1
cultureisgreat            1
750                       1
pairs                     1
ago                       1
frankly                   1
mondrianldn               1
urbanpartnersuk           1
entered                   1
gave                      1
lastchance                1
picasso                   1
super                     1
memories                  1
hmorphitis                1
michael                   1
ponds                     1
光の祭典                      1
balloon                   1
headed                    1
primera                   1
lumiering                 1
constructed               1
visitar                   1
lol                       1
warping                   1
single                    1
dee                       1
success                   1
thlf2018                  1
kx10                      1
particolari               1
peut                      1
concept                   1
stmartininthefields       1
hennasam                  1
retweet                   1
surprising                1
iheartlondon              1
ilovephotography          1
palette                   1
weroamtheworl             1
trends                    1
emma                      1
turning                   1
dramatic                  1
cleverly                  1
dance                     1
cedricleborgne            1
unitedkingdom             1
spotting                  1
coloured                  1
score                     1
women                     1
revdsimonharvey           1
array                     1
parks                     1
arrives                   1
owners                    1
originoftheworld          1
Name: Words, Length: 3864, dtype: int64

I used the value_counts() function to count the frequency at which words appear in corpus1. As you can see, "lumiereldn" appears the most at 3,002 times, followed by "rt" at 1,532 times - "rt" shows that there were 1,532 retweets.

Repeat tokenisation process for corpus 2, 3 and 4

I will repeat the cleaning and tokenising steps for corpus2, corpus3, and corpus4.

In [44]:
#corpus2 - remove stopwords and punctuation using function below

def preprocess2(sentence):
    sentence = sentence.lower()
    tokenizer = RegexpTokenizer(r'\w+')
    tokens = tokenizer.tokenize(sentence)
    filtered_words = [w for w in tokens if not w in stopwords.words('english')]
    return " ".join(filtered_words)

sentence = corpus2

sentence_tokenized2 = preprocess2(sentence)

tokens2 = word_tokenize(sentence_tokenized2)

#change tokens2 into a Pandas Dataframe

df_corpus2 = pd.DataFrame(tokens2)
df_corpus2.columns = ['Words']
df_corpus2['Freq'] = df_corpus2.groupby('Words')['Words'].transform('count')
In [45]:
#corpus3 - remove stopwords and punctuation using function below

def preprocess3(sentence):
    sentence = sentence.lower()
    tokenizer = RegexpTokenizer(r'\w+')
    tokens = tokenizer.tokenize(sentence)
    filtered_words = [w for w in tokens if not w in stopwords.words('english')]
    return " ".join(filtered_words)

sentence = corpus3

sentence_tokenized3 = preprocess3(sentence)

tokens3 = word_tokenize(sentence_tokenized3)

#change tokens2 into a Pandas Dataframe

df_corpus3 = pd.DataFrame(tokens3)
df_corpus3.columns = ['Words']
df_corpus3['Freq'] = df_corpus3.groupby('Words')['Words'].transform('count')
In [46]:
#corpus4 - remove stopwords and punctuation using function below

def preprocess4(sentence):
    sentence = sentence.lower()
    tokenizer = RegexpTokenizer(r'\w+')
    tokens = tokenizer.tokenize(sentence)
    filtered_words = [w for w in tokens if not w in stopwords.words('english')]
    return " ".join(filtered_words)

sentence = corpus4

sentence_tokenized4 = preprocess4(sentence)

tokens4 = word_tokenize(sentence_tokenized4)

#change tokens2 into a Pandas Dataframe

df_corpus4 = pd.DataFrame(tokens4)
df_corpus4.columns = ['Words']
df_corpus4['Freq'] = df_corpus4.groupby('Words')['Words'].transform('count')

Mergeing the tokenised text

Having first divided the main corpus into four parts and then creating four DataFrames for the tokens in each of the corpuses, I want to now join each of the tokenised DataFrames to create a big Pandas DataFrame for the frequency of words within the large corpus.

I use the merge function to combine df_corpus1 and df_corpus2 on the column Words; I then do the same for df_corpus3 and df_corpus4.

In [47]:
merge1 = pd.merge(df_corpus1, df_corpus2, on=['Words'])
merge2 = pd.merge(df_corpus3, df_corpus4, on=['Words'])

merge1.head()
Out[47]:
Words Freq_x Freq_y
0 rt 1532 1708
1 rt 1532 1708
2 rt 1532 1708
3 rt 1532 1708
4 rt 1532 1708
In [48]:
merge1['TotalFreq'] = merge1['Freq_x'] + merge1['Freq_y']
merge2['TotalFreq'] = merge2['Freq_x'] + merge2['Freq_y']

Above, I create a new column adding up both frequency of the word in corpus 1 with the frequency in corpus 2 to give a "Total Frequency" of that word in the DataFrame merge1. Then I do the same for corpus3 and corpus4.

Below, I will drop all words for when frequency of a word in both merge1 and mereg2 is less than 1. Moreover, I will delete all duplicate words within both DataFrames, and finally, I will reset the index for both DataFrames.

In [49]:
#drop all Words for when the value is less that zero
merge1 = merge1[merge1 > 1].dropna()
merge2 = merge2[merge2 > 1].dropna()

#delete all duplicate words
merge1 = merge1.drop_duplicates(subset=None, keep='first', inplace=False)
merge2 = merge2.drop_duplicates(subset=None, keep='first', inplace=False)

#reset index
merge1 = merge1.reset_index(drop=True)
merge2 = merge2.reset_index(drop=True)

Finally, we are going to perform a final merge of merge1 and merge2 on the column name "Words" to create a final DataFrame of tokenised words. Then, I will make a new DataFrame called twitter_tokens which will reveal the frequency of words that appeared in all of the tweets collected by TAGS.

In [50]:
#join merge1 and merge2
final_merge = pd.merge(merge1, merge2, on='Words', how='outer')
final_merge.head()
final_merge = final_merge.fillna(value=0)
In [51]:
final_merge['TotalFreq'] = final_merge['TotalFreq_x'] + final_merge['TotalFreq_y']
#final_merge
In [52]:
twitter_tokens = final_merge[['Words','TotalFreq']]
twitter_tokens = twitter_tokens.sort_values('TotalFreq', ascending=False)
twitter_tokens = twitter_tokens.reset_index(drop=True)

twitter_tokens.count()
Out[52]:
Words        1479
TotalFreq    1479
dtype: int64
In [53]:
twitter_tokens.head(20)
Out[53]:
Words TotalFreq
0 lumiereldn 10,724
1 rt 6,251
2 london 3,140
3 light 2,555
4 tonight 2,043
5 artichoketrust 1,802
6 see 1,785
7 visitlondon 1,589
8 lumierelondon 1,483
9 abbey 1,479
10 festival 1,344
11 amp 1,342
12 lumiere 1,324
13 evening 1,303
14 installations 1,234
15 night 1,214
16 sunday 1,107
17 30 1,099
18 installation 1,095
19 visit 1,000

If we look at the top 20 words that appeared in the 10,709 tweets, we see that lumiereldn appeared 10,724 times - this is not surprising at all given that the TAGS data was based onthe hashtag #LumiereLDN. What's more interesting is that "artichoketrust" appeared 1,802 times and "abbey" appeared 1,479 times.

Answering the question

From this analysis alone, one could conclude that the installation at Westminster Abbey (based on the fact that the word "abbey" appeared 1,479 times) was the most popular installation at Lumiere London 2018. In order to confirm this finding, we should look deeper into the data.

Visualise the words

Another way to get a better understanding of which installations were most popular is to use the cliche but classic wordcloud. Wordclouds are a very simple, visual representation of words that appear in any corpus. The library seaborn will be used to create a wordcloud.

Unfortunatley, wordcloud does not take a Pandas Dataframe or Numpy array, so we have to join the text in twitter_tokens to create one big string and then give it to worldcloud. Also, because most of the top 20 words above do not offer any insight into which installation was most popular, some of them will be removed before giving a big string to wordcloud.

In [54]:
word_cloud = ' '.join(twitter_tokens['Words'][0:])
In [55]:
word_cloud = word_cloud.replace('rt', '')
word_cloud = word_cloud.replace('lumiereldn', '')
word_cloud = word_cloud.replace('lumierelondon', '')
word_cloud = word_cloud.replace('lumiere', '')
word_cloud = word_cloud.replace('london', '')
word_cloud = word_cloud.replace('light', '')
word_cloud = word_cloud.replace('tonight', '')
word_cloud = word_cloud.replace('evening', '')
word_cloud = word_cloud.replace('festival', '')
word_cloud = word_cloud.replace('installation', '')
word_cloud = word_cloud.replace('see', '')
word_cloud = word_cloud.replace('visit', '')
In [56]:
import seaborn as sns
from wordcloud import WordCloud, STOPWORDS

wordcloud = WordCloud(stopwords=STOPWORDS, background_color='white',width=2400,height=2000).generate(word_cloud)
plt.figure(figsize=(12,15))
plt.imshow(wordcloud)
plt.axis('off')
plt.show()

Although I can see the words "mayfair", "southbank" and "carnaby", which give some insight into the most popular areas, on the whole, I would conclude that the wordcloud is a bit messy and not helpful at all for answering which installation was most popular.

b. Keyword Analysis using IBM Watson, word2vec and t-SNE

In the Text analysis section above (part a), I turned all of the text from the 10,709 tweets into a large corpus. I then pre-processed that corpus by removing web-links, stop words and punctuation, and then broke the corpus into four part before tokenising the corpus. Finally, I joined all of the tokens together to create a final bag of tokens.

After tokenising, I performed some simple text analysis and discovered that the most popular installation was most likely Westminster Abbey based on the frequency the word "abbey" appeared within the bag of tokens. I then wanted to visualise the text using a WordCloud to see if this offered insight, but the WordCloud was messy and still contained irrelevant words.

In this section, I will undertake keyword analysis on the corpuses using a more powerful machine learning tool, IBM Watson. The benefit of doing this type of analysis alongside the text analysis is because Watson applies very powerful premade machine learning models to text to help us gather deeper insight.

Once I have received a long list of keywords from Watson, I will then use Word2Vec, a machine lerning model developed by Mikolov et al which is used for learning vector representations of words, called "word embeddings", to vectorise the keywords. Finally, I will visualise the word vectors with t-SNE, a machine learning algorithm for visualization. t-SNE is pretty useful when it comes to visualizing similarity between objects.

My hope is that by discovering and visualising the connections and similarity between words from the Twitter text using t-SNE, I will be able to find which installations or areas were most popular during Lumiere London 2018 (based only off Twitter data).

Watson Cloud Installation

First we need to install Watson Developer Cloud using pip. You can either install Watson Cloud on your machine using:

pip install watson-developer-cloud

Or, you can install inside this notebook by runing the line below.

In [57]:
# Install Watson Cloud Library pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install --upgrade watson-developer-cloud
Requirement already up-to-date: watson-developer-cloud in /Users/kumarv/anaconda3/lib/python3.6/site-packages (1.3.2)
Requirement not upgraded as not directly required: requests<3.0,>=2.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (2.18.4)
Requirement not upgraded as not directly required: python-dateutil>=2.5.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (2.7.2)
Requirement not upgraded as not directly required: autobahn>=0.10.9 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (18.4.1)
Requirement not upgraded as not directly required: service-identity>=17.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (17.0.0)
Requirement not upgraded as not directly required: pyOpenSSL>=16.2.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (17.5.0)
Requirement not upgraded as not directly required: Twisted>=13.2.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from watson-developer-cloud) (17.9.0)
Requirement not upgraded as not directly required: chardet<3.1.0,>=3.0.2 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0,>=2.0->watson-developer-cloud) (3.0.4)
Requirement not upgraded as not directly required: idna<2.7,>=2.5 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0,>=2.0->watson-developer-cloud) (2.6)
Requirement not upgraded as not directly required: urllib3<1.23,>=1.21.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0,>=2.0->watson-developer-cloud) (1.22)
Requirement not upgraded as not directly required: certifi>=2017.4.17 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0,>=2.0->watson-developer-cloud) (2018.4.16)
Requirement not upgraded as not directly required: six>=1.5 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from python-dateutil>=2.5.3->watson-developer-cloud) (1.11.0)
Requirement not upgraded as not directly required: txaio>=2.10.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from autobahn>=0.10.9->watson-developer-cloud) (2.10.0)
Requirement not upgraded as not directly required: pyasn1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from service-identity>=17.0.0->watson-developer-cloud) (0.4.2)
Requirement not upgraded as not directly required: pyasn1-modules in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from service-identity>=17.0.0->watson-developer-cloud) (0.2.1)
Requirement not upgraded as not directly required: attrs in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from service-identity>=17.0.0->watson-developer-cloud) (17.4.0)
Requirement not upgraded as not directly required: cryptography>=2.1.4 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from pyOpenSSL>=16.2.0->watson-developer-cloud) (2.2.2)
Requirement not upgraded as not directly required: Automat>=0.3.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from Twisted>=13.2.0->watson-developer-cloud) (0.6.0)
Requirement not upgraded as not directly required: hyperlink>=17.1.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from Twisted>=13.2.0->watson-developer-cloud) (18.0.0)
Requirement not upgraded as not directly required: incremental>=16.10.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from Twisted>=13.2.0->watson-developer-cloud) (17.5.0)
Requirement not upgraded as not directly required: constantly>=15.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from Twisted>=13.2.0->watson-developer-cloud) (15.1.0)
Requirement not upgraded as not directly required: zope.interface>=4.0.2 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from Twisted>=13.2.0->watson-developer-cloud) (4.4.3)
Requirement not upgraded as not directly required: asn1crypto>=0.21.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from cryptography>=2.1.4->pyOpenSSL>=16.2.0->watson-developer-cloud) (0.24.0)
Requirement not upgraded as not directly required: cffi>=1.7; platform_python_implementation != "PyPy" in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from cryptography>=2.1.4->pyOpenSSL>=16.2.0->watson-developer-cloud) (1.11.5)
Requirement not upgraded as not directly required: setuptools in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from zope.interface>=4.0.2->Twisted>=13.2.0->watson-developer-cloud) (39.0.1)
Requirement not upgraded as not directly required: pycparser in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from cffi>=1.7; platform_python_implementation != "PyPy"->cryptography>=2.1.4->pyOpenSSL>=16.2.0->watson-developer-cloud) (2.18)
google-cloud 0.32.0 has requirement google-api-core<0.2.0dev,>=0.1.2, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud 0.32.0 has requirement google-cloud-vision<0.30dev,>=0.29.0, but you'll have google-cloud-vision 0.31.0 which is incompatible.
google-cloud-trace 0.17.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-speech 0.30.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-spanner 0.29.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-pubsub 0.30.1 has requirement google-api-core[grpc]<0.2.0dev,>=0.1.3, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-logging 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-firestore 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-error-reporting 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-dns 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-datastore 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigtable 0.28.1 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigquery 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.

Watson's Cloud documentation explains that you need to import the following libraries in order to activate the Natural Language Detection functionality and undertake keyword analysis. Moreover, having set up a project on my Watson Cloud account, I was given a unique username authentication and password. I have entered this informations below to activate an API call.

In [58]:
import json
import requests
from pandas.io.json import json_normalize

from watson_developer_cloud import NaturalLanguageUnderstandingV1
from watson_developer_cloud.natural_language_understanding_v1 \
import Features, KeywordsOptions
In [59]:
natural_language_understanding = NaturalLanguageUnderstandingV1(
  username='c59dccd1-1bbd-4ead-8621-05e1fea28e0b',
  password='6penWmnFq4Io',
  version='2018-03-16')

Generating keywords from the corpuses

The Twiter corpuses made previously are simply just a huge mash of text into a string format and don't offer much insight unless rigorous text processing is undertaken. Text wranggling using Pandas or NLTK can only go so far; a more powerful tool is needed to gather unique insight from a corpus of text.

Enter IBM Watson's Natural Language Understanding

This tool allows us to very easily apply custom annotation models developed by IBM Watson Knowledge Studio to identify industry/domain specific entities and relations in unstructured text. Watson allows us to analyze text to extract meta-data from content, in this case keywords, using natural language understanding.

I know from previosuly that, burried within the Twitter corpus, the words "rt" (for Retweet) and "lumiereldn" (for the hashtag #LumeireLDN) appear very frequently. So, to get meaninful keywords from the twitter text using Watson, I am going to remove those words from each of the corpuses.

Keywords from Corpus 1

In [60]:
sentence_tokenized1 = sentence_tokenized1.replace('rt', '')
sentence_tokenized1 = sentence_tokenized1.replace('lumiereldn', '')

The call function and code bellow gets keywords from a corpus of text using Watson's Natural Language Understanding. This particular call takes two parameters - text and features - full list can be found here. The first parameter is the corpus, which is given the name text. To start with, I will make the text equal to sentence_tokenized1. Then, the second parameter is keywords. We want sentiment and emotion to be true and I have put a limit of 500 because I want as many keywords from the text as possible.

In [61]:
response1 = natural_language_understanding.analyze(
  text=sentence_tokenized1,
  features=Features(
    keywords=KeywordsOptions(
      sentiment=True,
      emotion=True,
      limit=500)))

#print(json.dumps(response1, indent=2))

Watson will give us back a response in JSON format, so the below code normalises the JSON return and converts it into a Pandas DataFrame. As you will see, Watson give us back a relevance score, a sentimemt label and sentiment score, most importantly, a string of keywords within the column text.

In [62]:
nlp1_test = json_normalize(response1['keywords'])
In [63]:
nlp1_test
Out[63]:
relevance sentiment.label sentiment.score text
0 1 neutral 0 london lumiere light
1 1 neutral 0 london lumierelondon lumiere
2 1 neutral 0 london lumiere festival
3 1 neutral 0 london lumiere aichoketrust
4 1 neutral 0 londonisopen aichoketrust visitlondon
5 1 neutral 0 aichoketrust visitlondon timeoutlondon
6 1 neutral 0 lumiere london light
7 1 neutral 0 london lumiere visitlondon
8 1 neutral 0 installation londonisopen aichoketrust
9 1 neutral 0 london londonisopen lumiere
10 1 neutral 0 visitlondon timeoutlondon mayoroflondon
11 1 neutral 0 lumiere light festival
12 1 neutral 0 lumiere london oxford
13 1 neutral 0 timeoutlondon mayoroflondon nikonownermag
14 1 neutral 0 london lumierelondon london
15 1 neutral 0 london trafalgarsquare lumiere
16 1 neutral 0 kingscrossn1c london lumiere
17 1 neutral 0 lumiere london lighting
18 1 neutral 0 london visitlondon aichoketrust
19 1 neutral 0 london visitlondon visitlondon
20 1 neutral 0 aichoketrust wrap thank
21 1 neutral 0 charity big ideas
22 1 neutral 0 lumiere london metroldn
23 1 neutral 0 lumiere london uk
24 1 neutral 0 fox amp badger
25 1 neutral 0 amp badger stars
26 1 neutral 0 pa lumiere festival
27 1 neutral 0 visitlondon lumierelondon london
28 1 neutral 0 london light festival
29 1 neutral 0 favourite lumiere installations
30 1 neutral 0 luminous lumiere aichoketrust
31 1 neutral 0 lumiere lumierelondon latergram
32 1 neutral 0 ibisocial lumierelondon lumiere
33 1 neutral 0 festival london lumierelondon
34 1 neutral 0 lumiere lumierelondon nohernlyexpo
35 1 neutral 0 badgerust fox amp
36 1 neutral 0 lumiere festival wavelength
37 1 neutral 0 lumiere lighting festival
38 1 neutral 0 visitlondon visitlondon lumierelondon
39 1 neutral 0 lumiere festival mvpicsss
40 1 neutral 0 weekend event visitlondon
41 1 neutral 0 lumiere festival postcardslond1
42 1 neutral 0 london westend amp
43 1 neutral 0 fantastic installation lumiere
44 1 neutral 0 bank installation lumiere
45 1 neutral 0 marquee lumiere installations
46 1 neutral 0 installation london lumierelondon
47 1 neutral 0 installation lumiere wave
48 1 neutral 0 aichoketrust london lighta
49 1 neutral 0 aichoketrust visitlondon night
50 1 neutral 0 londonisopen lumiere justin_venn
51 1 neutral 0 lumiere catch weekend
52 1 neutral 0 festival light aichoketrust
53 1 neutral 0 lumierelondon london kingscrossn1c
54 1 neutral 0 canonukandie visitlondon aichoketrust
55 1 neutral 0 fantastic london amp
56 1 neutral 0 london visitlondon spoonsontrays
57 1 neutral 0 mayfair london estate
58 1 neutral 0 lumierelondonfestival london visitlondon
59 1 neutral 0 londonisopen lumiere binita_dave
60 1 neutral 0 incredible lumierelondon london
61 1 neutral 0 london visitlondon zebraprodunique
62 1 neutral 0 bridge london shine
63 1 neutral 0 westend amp aichoketrust
64 1 neutral 0 londonisopen lumiere crowe_photo
65 1 neutral 0 victoriabid aichoketrust lumierelondon
66 1 neutral 0 vickywinkball aichoketrust visitlondon
67 1 neutral 0 dazzling work
68 1 neutral 0 amp aichoketrust biggsytravels
69 1 neutral 0 london lit weekend
70 1 neutral 0 central london amp
71 1 neutral 0 london lumierelondon rain
72 1 neutral 0 london united kingdom
73 1 neutral 0 lumiere plan visit
74 1 neutral 0 visitlondon aichoketrust southbanklondon
75 1 neutral 0 incredible weekend event
76 1 neutral 0 weekend london town
77 1 neutral 0 london lumierelondon mariontravers
78 1 neutral 0 flamingos london lumierelondon
79 1 neutral 0 weekend london shame
80 1 neutral 0 installations light festival
81 1 neutral 0 md totastemaker lumiere
82 1 neutral 0 pa westminster city
83 1 neutral 0 thingstodo london weekend
84 1 neutral 0 witchcraft visitlondon visitlondon
85 1 neutral 0 london westminster abbey
86 1 neutral 0 london weekend gt
87 1 neutral 0 cirquebijou amp aichoketrust
88 1 neutral 0 london photography night
89 1 neutral 0 westminster city hall
90 1 neutral 0 aichoketrust olympusuk visitlondon
91 1 neutral 0 lumiere kingscross
92 1 neutral 0 visitlondon loveuk aichoketrust
93 1 neutral 0 central london night
94 1 neutral 0 installation london festivaloflights
95 1 neutral 0 amp witchcraft visitlondon
96 1 neutral 0 sexual abuse amp
97 1 neutral 0 lumierelondon visitlondon biuk
98 1 neutral 0 broadway team pa
99 1 neutral 0 london granary square
100 1 neutral 0 lumiere leicestersquare
101 1 neutral 0 westminsterabbey london westminster
102 1 neutral 0 london night citylights
103 1 neutral 0 aichoketrust visitlondon action
104 1 neutral 0 city hall projection
105 1 neutral 0 light sexual abuse
106 1 neutral 0 installation light spirit
107 1 neutral 0 london ldn repoer
108 1 neutral 0 amp sexual violence
109 1 neutral 0 spectacular light displays
110 1 neutral 0 favourite installation
111 1 neutral 0 square light festival
112 1 neutral 0 electricpedals victoriabid aichoketrust
113 1 neutral 0 bebawi lumiere
114 1 neutral 0 visitlondon gorgeous photos
115 1 neutral 0 london lumierefestival lights
116 1 neutral 0 lumierelondon success aichoketrust
117 1 neutral 0 lumiere eventprofs
118 1 neutral 0 amp light trafalgarsquare
119 1 neutral 0 installation trafalgarsquare london
120 1 neutral 0 london lit tinyplanet
121 1 neutral 0 lumierelondon aichoketrust legacy
122 1 neutral 0 lumierelondon visitlondon tflbusales
123 1 neutral 0 london free event
124 1 neutral 0 lights westend aichoketrust
125 1 neutral 0 westminsterabbey light festival
126 1 neutral 0 london leicester square
127 1 neutral 0 lumierelondon visitlondon wave
128 1 neutral 0 sunday mayoroflondon aichoketrust
129 1 neutral 0 london patrice warrener
130 1 neutral 0 small charity
131 1 neutral 0 croydon weekend aichoketrust
132 1 neutral 0 visitlondon inspiring case
133 1 neutral 0 largest light festival
134 1 neutral 0 westminsterabbey london londonlife
135 1 neutral 0 light spirit evening
136 1 neutral 0 winter light festival
137 1 neutral 0 stunning light installations
138 1 neutral 0 warrener dazzling installation
139 1 neutral 0 festival light kings
140 1 neutral 0 mayoroflondon nikonownermag aichoketrust
141 1 neutral 0 london united lightfestival
142 1 neutral 0 londonist london ldn
143 1 neutral 0 selection permanent works
144 1 neutral 0 bbclondonnews festival light
145 1 neutral 0 london wave veigo
146 1 neutral 0 london quick time
147 1 neutral 0 central london shitshow
148 1 neutral 0 london great wildlife
149 1 neutral 0 london ldn londoneye
150 1 neutral 0 box london londonlife
151 1 neutral 0 light festival thelondoneye
152 1 neutral 0 london besties ilyasayub_photo
153 1 neutral 0 london eye travel
154 1 neutral 0 streets london carnabylondon
155 1 neutral 0 amp impactful festival
156 1 neutral 0 london borough redbridge
157 1 neutral 0 central london preview
158 1 neutral 0 london trafalgarsquare trafalgar
159 1 neutral 0 winkball vickywinkball aichoketrust
160 1 neutral 0 london streets buildings
161 1 neutral 0 nikonownermag mayoroflondon aichoketrust
162 1 neutral 0 festival light exitmagazine
163 1 neutral 0 installation aichoketrust piece
164 1 neutral 0 visitlondon sweet dreams
165 1 neutral 0 aichoketrust guardianwitness timeoutlondon
166 1 neutral 0 light festival dot
167 1 neutral 0 london davekirwinphotography canon
168 1 neutral 0 justin_venn lumierelondon2018 lumierelondon
169 1 neutral 0 weekend festival lights
170 1 neutral 0 qpark_uk light festival
171 1 neutral 0 event visitlondon ilyasayub_photo
172 1 neutral 0 london west end
173 1 neutral 0 stmaininthefields london trafalgarsquare
174 1 neutral 0 work icon_retail team
175 1 neutral 0 place london
176 1 neutral 0 weekend light displays
177 1 neutral 0 oxo london nightlights
178 1 neutral 0 stunning light display
179 1 neutral 0 granary square aichoketrust
180 1 neutral 0 wonderland aichoketrust mayoroflondon
181 1 neutral 0 visitlondon westminster abbey
182 1 neutral 0 love video electricpedals
183 1 neutral 0 sunday aichoketrust thelondoneye
184 1 neutral 0 awesome light installations
185 1 neutral 0 london right hurry
186 1 neutral 0 light display king
187 1 neutral 0 london thisislondon toplondonphoto
188 1 neutral 0 great evening aichoketrust
189 1 neutral 0 london iconic streets
190 1 neutral 0 marshalljulius london leicester
191 1 neutral 0 eyelovelondon visitlondon timeoutlondon
192 1 neutral 0 london sight props
193 1 neutral 0 great night amp
194 1 neutral 0 london outdoor performance
195 1 neutral 0 fascinating light installations
196 1 neutral 0 invent london child
197 1 neutral 0 fantastic display visitlondon
198 1 neutral 0 london chinatown flamingo
199 1 neutral 0 icon_retail team nkirkwoodlondon
200 1 neutral 0 sadiqkhan mayoroflondon aichoketrust
201 1 neutral 0 aichoketrust incredible oppounity
202 1 neutral 0 visitlondon thegl0betrotter westminster
203 1 neutral 0 lovely london walkers
204 1 neutral 0 sunday aichoketrust ukinargentina
205 1 neutral 0 london ibipeople
206 1 neutral 0 amp mayoroflondon justin_venn
207 1 neutral 0 lighting millennium bridge
208 1 neutral 0 great pa festival
209 1 neutral 0 visitlondon amazing work
210 1 neutral 0 sunday aichoketrust toevho
211 1 neutral 0 team nkirkwoodlondon celebration
212 1 neutral 0 lumierelondon grosvenor_gbi thecrownestate
213 1 neutral 0 lightfestival aichoketrust wrap
214 1 neutral 0 visitlondon impressive work
215 1 neutral 0 thelondoneye lovelondon visitlondon
216 1 neutral 0 loveldnlovecul aichoketrust justin_venn
217 1 neutral 0 neon sculpture aichoketrust
218 1 neutral 0 thank letting broadway
219 1 neutral 0 absolutely stunning light
220 1 neutral 0 visitlondon eveningstandard mayoroflondon
221 1 neutral 0 victoriabid ricohthetauk aichoketrust
222 1 neutral 0 sadiqkhan spectacular installations
223 1 neutral 0 photos light spirit
224 1 neutral 0 light spirit patrice
225 1 neutral 0 festival repoing winkball
226 1 neutral 0 colouryourcity aichoketrust wrap
227 1 neutral 0 light granarysquare kingscrossn1c
228 1 neutral 0 aichoketrust southbanklondon jakubkrupa
229 1 neutral 0 cross barbararich_law lumierelondon
230 1 neutral 0 aichoketrust outdone electricpedals
231 1 neutral 0 lumiere_london festival photos
232 1 neutral 0 magic dazzling lights
233 1 neutral 0 sculpture aichoketrust wrap
234 1 neutral 0 event visitlondon lm_westminster
235 1 neutral 0 timeoutlondon londonist standardnews
236 1 neutral 0 light installation trees
237 1 neutral 0 darraghdoyle love aichoketrust
238 1 neutral 0 sadiqkhan lovelondon visitlondon
239 1 neutral 0 processions2018 aichoketrust wrap
240 1 neutral 0 kingscrossn1c beauty_blah visitlondon
241 1 neutral 0 amp lambethacademy students
242 1 neutral 0 king cross
243 1 neutral 0 opening night lumierelondon
244 1 neutral 0 exhibition light sound
245 1 neutral 0 regentstreetw1 aichoketrust wrap
246 1 neutral 0 timeoutlondon visitlondon
247 1 neutral 0 amazing aichoketrust legacy
248 1 neutral 0 aichoketrust timeouta londongramer
249 1 neutral 0 magical aichoketrust wrap

Keywords from Corpus 2, 3 and 4

I will apply Watson's NLP code above for corpus 2, 3 and 4. WARNING: this take about 2-3 minutes to run.

In [64]:
#corpus2
sentence_tokenized2 = sentence_tokenized2.replace('rt', '')
sentence_tokenized2 = sentence_tokenized2.replace('lumiereldn', '')

response2 = natural_language_understanding.analyze(
  text=sentence_tokenized2,
  features=Features(
    keywords=KeywordsOptions(
      sentiment=True,
      emotion=True,
      limit=500)))

#print(json.dumps(response2, indent=2))

nlp2_test = json_normalize(response2['keywords'])
In [65]:
#nlp2_test
In [66]:
#corpus3
sentence_tokenized3 = sentence_tokenized3.replace('rt', '')
sentence_tokenized3 = sentence_tokenized3.replace('lumiereldn', '')

response3 = natural_language_understanding.analyze(
  text=sentence_tokenized3,
  features=Features(
    keywords=KeywordsOptions(
      sentiment=True,
      emotion=True,
      limit=500)))

#print(json.dumps(response3, indent=2))

nlp3_test = json_normalize(response3['keywords'])
In [67]:
#nlp3_test
In [68]:
#corpus4
sentence_tokenized4 = sentence_tokenized4.replace('rt', '')
sentence_tokenized4 = sentence_tokenized4.replace('lumiereldn', '')

response4 = natural_language_understanding.analyze(
  text=sentence_tokenized4,
  features=Features(
    keywords=KeywordsOptions(
      sentiment=True,
      emotion=True,
      limit=500)))

#print(json.dumps(response4, indent=2))

nlp4_test = json_normalize(response4['keywords'])
In [69]:
#nlp4_test

Merge keyword sentences together

As you can see above, Watson will have given us back a range of keywords for corpuses 1, 2, 3, 4 which reside in their respective DataFrames. In this section, I am going to merge those keyword Dataframes together to create one large DataFrame called nlp_keyword_merge.

In [70]:
nlp_keyword_merge1 = pd.merge(nlp1_test, nlp2_test, on='text', how='outer')
nlp_keyword_merge2 = pd.merge(nlp3_test, nlp4_test, on='text', how='outer')
In [71]:
nlp_keyword_merge = pd.merge(nlp_keyword_merge1, nlp_keyword_merge2, on='text', how='outer')
In [72]:
nlp_keyword_merge['text'].shape
Out[72]:
(743,)
In [73]:
#nlp_sentence_merge.text.nunique()

Using word2vec and t-SNE for visualization

I now have a merged DataFrame with all the keywords from corpus 1, 2, 3, 4 - in total there are 743 rows of keywords. In this section, I am going to use word2vec to transform those keywords into vectors aka. word embeddings. Word2vec is a particularly computationally-efficient predictive model for learning word embeddings from raw text. Vector space models (VSMs) represent (embed) words in a continuous vector space where semantically similar words are mapped to nearby points ('are embedded nearby each other'). More about the imporance of word-embeddings and word2vec can be found on the TensorFlow website. Once I have word embeddings of the keyword corpus, I will then visualise the findings using t-SNE.

First, we are going to install the gensim library which contains the word2vec algorithm. We will then use a function to build a corpus of those keywords, then we will feed the corpus to a word2vec model to train it to see whihc words are most closely related to the word "lumiere", lastly we wil visualise the findings using t-SNE.

Steps

  1. Clean the data
  2. Build a corpus
  3. Train a Word2Vec Model
  4. Visualize t-SNE representations of the most common words

Credit: the code was inspired by Jeff Delaney's Kaggle notebook.

In [74]:
# Install Gensim Library pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install --upgrade gensim
Requirement already up-to-date: gensim in /Users/kumarv/anaconda3/lib/python3.6/site-packages (3.4.0)
Requirement not upgraded as not directly required: six>=1.5.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from gensim) (1.11.0)
Requirement not upgraded as not directly required: scipy>=0.18.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from gensim) (0.19.1)
Requirement not upgraded as not directly required: smart-open>=1.2.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from gensim) (1.5.7)
Requirement not upgraded as not directly required: numpy>=1.11.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from gensim) (1.13.3)
Requirement not upgraded as not directly required: boto>=2.32 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from smart-open>=1.2.1->gensim) (2.48.0)
Requirement not upgraded as not directly required: bz2file in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from smart-open>=1.2.1->gensim) (0.98)
Requirement not upgraded as not directly required: requests in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from smart-open>=1.2.1->gensim) (2.18.4)
Requirement not upgraded as not directly required: boto3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from smart-open>=1.2.1->gensim) (1.7.6)
Requirement not upgraded as not directly required: chardet<3.1.0,>=3.0.2 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests->smart-open>=1.2.1->gensim) (3.0.4)
Requirement not upgraded as not directly required: idna<2.7,>=2.5 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests->smart-open>=1.2.1->gensim) (2.6)
Requirement not upgraded as not directly required: urllib3<1.23,>=1.21.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests->smart-open>=1.2.1->gensim) (1.22)
Requirement not upgraded as not directly required: certifi>=2017.4.17 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests->smart-open>=1.2.1->gensim) (2018.4.16)
Requirement not upgraded as not directly required: botocore<1.11.0,>=1.10.6 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from boto3->smart-open>=1.2.1->gensim) (1.10.6)
Requirement not upgraded as not directly required: s3transfer<0.2.0,>=0.1.10 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from boto3->smart-open>=1.2.1->gensim) (0.1.13)
Requirement not upgraded as not directly required: jmespath<1.0.0,>=0.7.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from boto3->smart-open>=1.2.1->gensim) (0.9.3)
Requirement not upgraded as not directly required: python-dateutil<3.0.0,>=2.1; python_version >= "2.7" in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from botocore<1.11.0,>=1.10.6->boto3->smart-open>=1.2.1->gensim) (2.7.2)
Requirement not upgraded as not directly required: docutils>=0.10 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from botocore<1.11.0,>=1.10.6->boto3->smart-open>=1.2.1->gensim) (0.14)
google-cloud 0.32.0 has requirement google-api-core<0.2.0dev,>=0.1.2, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud 0.32.0 has requirement google-cloud-vision<0.30dev,>=0.29.0, but you'll have google-cloud-vision 0.31.0 which is incompatible.
google-cloud-trace 0.17.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-speech 0.30.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-spanner 0.29.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-pubsub 0.30.1 has requirement google-api-core[grpc]<0.2.0dev,>=0.1.3, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-logging 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-firestore 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-error-reporting 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-dns 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-datastore 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigtable 0.28.1 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigquery 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.

Function to build a corpus of keywords generated from IBM Watson

In [75]:
import re
import nltk

# Input data files are available in the "../input/" directory.
# For example, running this (by clicking run or pressing Shift+Enter) will list the files in the input directory

from subprocess import check_output

def build_corpus(nlp_keyword_merge):
    corpusS = []
    
    for col in ['text']:
         for sentence in nlp_keyword_merge[col].iteritems():
            word_list = sentence[1].split(" ")
            corpusS.append(word_list)
     
    return corpusS

corpusS = build_corpus(nlp_keyword_merge)        
corpusS[0:5]
Out[75]:
[['london', 'lumiere', 'light'],
 ['london', 'lumierelondon', 'lumiere'],
 ['london', 'lumiere', 'festival'],
 ['london', 'lumiere', 'aichoketrust'],
 ['londonisopen', 'aichoketrust', 'visitlondon']]

Train the word2vec model with corpusS

The model parameters I have used below to train the model are size, window, min_count and workers. A full list of accepted parameters can be found here. I need to be careful when choosing these parameters because small changes in these can have drastically different results and there is a danger of over fitting.

The parameter size referes to the dimensionality of the vector, generally, the size should be much smaller than the vocabularly size, therefore, a dimensionality size of 200 is suitable.

The parameter window reffers to the maximum distance between the current and predicted word within a sentence - 20 seems suitable and is the number Jeff Delaney used is his analysis.

The parameter min_count ignores all words with total frequency lower than this. I am going to use a number of 7, which means that I am only interested in words that appeared more than 10 times within the corpusS.

Finally, the parameter workers use these many worker threads to train the model -- Jeff used 4 workers, I am going to use 20.

I want to train the model to see words are closest to the word "lumiere" so I will feed this into the model.

In [76]:
from gensim.models import word2vec

model = word2vec.Word2Vec(corpusS, size=200, window=20, min_count=10, workers=20)
model.wv['lumiere']
Out[76]:
array([ -2.39101192e-03,  -9.03681386e-04,   6.42599305e-04,
        -1.06052170e-03,  -1.41709275e-03,  -5.59848617e-04,
        -6.07679540e-04,  -2.09526415e-03,  -9.05013731e-05,
         1.10316114e-03,   4.12764872e-04,  -2.47886265e-03,
        -7.87636731e-04,  -1.40156900e-03,   1.58797437e-03,
        -7.57661328e-05,  -4.11138812e-04,  -9.79931909e-04,
         1.43207540e-03,  -1.18508225e-03,   1.21135067e-03,
         1.64133462e-03,   1.01582252e-03,  -2.10097665e-03,
        -6.71685615e-04,   1.06139632e-03,   9.80676734e-04,
        -2.00730865e-03,  -2.37523904e-03,  -1.79138687e-03,
         1.91705476e-03,  -1.08277076e-03,   1.09509623e-03,
         8.47513089e-04,   1.82531905e-04,   2.72133329e-04,
        -1.13463891e-03,   1.84427132e-03,   1.20916928e-03,
         2.08632695e-03,   1.53348519e-04,  -1.04816351e-03,
         1.63164060e-03,  -7.33560824e-04,  -1.81604628e-05,
         4.62102907e-04,   2.19155522e-03,   6.90235465e-04,
         1.93727191e-03,  -2.15387391e-03,   1.76958786e-03,
        -1.80419549e-04,   1.81687810e-03,  -1.69653585e-03,
         1.90823956e-03,  -5.09526308e-06,  -1.08085910e-03,
         1.13069976e-03,  -2.43402901e-03,  -2.10149586e-03,
        -5.41968679e-04,   4.56183421e-04,  -2.23586941e-03,
        -2.37340620e-03,   1.39991182e-03,   2.01770430e-03,
        -7.31989974e-04,  -1.25030417e-03,  -9.23836022e-04,
        -1.23427634e-03,   1.99657702e-03,  -1.23991107e-03,
        -2.16269307e-03,  -1.87813409e-03,  -7.65789824e-04,
        -2.23633950e-03,  -1.38113601e-03,  -1.28767118e-04,
         1.59577397e-03,  -1.53061573e-03,  -2.41916440e-03,
        -4.04669874e-04,   2.40741763e-03,  -3.56337987e-04,
        -2.34293961e-03,   9.18541191e-05,   3.33385906e-05,
        -2.06025812e-04,   1.40156655e-03,   2.00622855e-03,
         8.45195376e-04,   2.09808978e-03,  -1.63736404e-03,
         1.47960859e-03,  -1.28478650e-03,  -5.95950056e-04,
         6.86436426e-04,   9.57008277e-04,   1.25111546e-03,
        -1.54665369e-03,  -1.58398307e-03,   1.95508052e-04,
        -1.05357787e-03,   1.86946057e-03,  -1.32654724e-03,
        -5.47950563e-04,  -1.34329730e-05,   1.51403376e-03,
         1.54723995e-03,  -2.46187299e-03,  -1.69916125e-03,
         2.55966885e-03,   4.81178402e-04,   1.22534682e-03,
         1.74338592e-03,   9.58872843e-04,  -2.34055473e-03,
        -1.21794152e-03,   1.06308272e-03,  -1.63915812e-03,
         3.49495058e-05,   1.10104645e-03,  -9.64410603e-04,
         1.92583038e-03,  -2.24133930e-03,   2.55609863e-03,
         2.05781963e-03,   2.42820987e-03,   2.12027389e-03,
        -1.22433063e-03,  -5.48159063e-04,  -2.10605003e-03,
        -2.44600279e-03,   8.56083469e-04,  -1.71270256e-03,
        -2.59181205e-03,   1.54605450e-03,  -4.95071057e-04,
        -1.31110637e-03,   1.58991362e-03,  -1.50347210e-03,
        -4.41726355e-04,   2.31182086e-03,  -2.97941471e-04,
        -5.97203034e-04,   7.20296346e-04,   1.51123467e-03,
         2.19636931e-04,  -1.42412947e-03,   3.97853146e-04,
        -1.59482658e-03,  -3.66452769e-05,   1.24324474e-03,
         2.04736926e-03,   2.01222580e-03,  -1.65390212e-03,
        -2.02343124e-03,   1.88614521e-03,  -1.45574752e-03,
         1.31198892e-03,   2.42080097e-03,  -2.18180078e-03,
        -1.21168094e-03,  -5.26866235e-04,  -2.45724805e-03,
        -1.22333760e-03,   4.25503415e-04,  -2.46578711e-03,
         6.51066541e-04,  -8.34284467e-04,   1.70836376e-03,
        -6.53017269e-05,  -3.35684483e-04,   1.77049194e-03,
         1.15829380e-03,  -9.37384611e-04,  -9.62394231e-04,
        -4.86564677e-04,   9.34696640e-04,   1.57097948e-03,
        -7.53806205e-04,   5.05648961e-04,  -1.20345247e-03,
         4.43988800e-04,  -1.94053049e-03,   7.62190204e-04,
        -2.18626251e-03,  -2.34417524e-03,  -2.34836363e-03,
        -7.22343917e-04,   1.27666397e-03,   5.68587740e-04,
         2.57622160e-04,  -1.51150656e-04,   1.75767066e-03,
         1.33135426e-03,  -1.25212991e-03,  -1.53371191e-03,
        -2.38476205e-03,   1.03559648e-03], dtype=float32)

t-SNE visualisation

I now have a vectorised representation of corpusS in relation to the word "lumiere" having used word2vec and the parameters above. I now want to visualise these findings to see which words in the corpus are closely linked to the word "lumiere".

Jeff (and also the Tensorflow documentations) explains that a t-SNE is great way to visualise these vectorised reprentations. From the scikit-learn library, I have imported TSNE. Here is a definition from the official documentation: "t-SNE converts similarities between data points to joint probabilities and tries to minimize the Kullback-Leibler divergence between the joint probabilities of the low-dimensional embedding and the high-dimensional data."

Below, I use Jeff's function to create a t-SNE plot using the word vectors in model.wv. I will use the same parameters as Jeff for the t-SNE : perplexity, n_components, n_iter, random_state and learning_rate.

perplexity - The perplexity is related to the number of nearest neighbors that is used in other manifold learning algorithms.

n_components - Dimension of the embedded space.

n_iter- Maximum number of iterations for the optimization. Should be at least 250.

random_state - is the seed used by the random number generator

learning_rate - the learning rate for t-SNE is usually in the range [10.0, 1000.0], default 200.

This article, "How to use t-SNE effectively", is helpful to show how different parameters for the same dataset can have astonishingly different results.

In [77]:
from sklearn.manifold import TSNE
import matplotlib.pyplot as plt
%matplotlib inline

def tsne_plot(model):
    "Creates and TSNE model and plots it"
    labels = []
    tokens = []

    for word in model.wv.vocab:
        tokens.append(model[word])
        labels.append(word)
    
    tsne_model = TSNE(perplexity=40, n_components=2, init='pca', n_iter=4000, random_state=23, learning_rate=200)
    new_values = tsne_model.fit_transform(tokens)

    x = []
    y = []
    for value in new_values:
        x.append(value[0])
        y.append(value[1])
        
    plt.figure(figsize=(12, 12)) 
    
    for i in range(len(x)):
        plt.scatter(x[i],y[i])
        plt.annotate(labels[i],
                     xy=(x[i], y[i]),
                     xytext=(5, 2),
                     textcoords='offset points',
                     ha='right',
                     va='bottom')
    plt.show()
In [78]:
tsne_plot(model)

#model
/Users/kumarv/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:11: DeprecationWarning:

Call to deprecated `__getitem__` (Method will be removed in 4.0.0, use self.wv.__getitem__() instead).

In [79]:
model.wv.most_similar('lumiere')
Out[79]:
[('london', 0.2242778092622757),
 ('installation', 0.10402175039052963),
 ('kingscrossn1c', 0.08628516644239426),
 ('bloomberg', 0.05716073140501976),
 ('visitlondon', 0.04939372092485428),
 ('londonisopen', 0.04566557705402374),
 ('light', 0.03934125974774361),
 ('', 0.036723315715789795),
 ('trafalgar', 0.03362195938825607),
 ('wabbey', 0.027715012431144714)]

Conclusion

Having used IBM Watson to go thorugh the entire twitter text and generate keywords, then to vectorise those keywords, finally, visualising those vectors, I can conclude that the installations or areas most closely related to the word "lumiere" are "westminster" and "kingscrossn1c". Additionally, looking at the t-SNE plot above, I can also see the words "kingscross", "wabbey" and "trafalgar" appear in the visualisation. The t-SNE visualistion was much more insightful than the WordCloud used in part a of this section.

Lastly, in this section I will move away from the Twitter data and work with the Flickr URL data compiled using the Flickr API. My aim is to find out which installation and area was most popular during Lumiere London 2018. Having already used Natural Language Processing to try and answer this question, this section will look towards using image recognition, specficially Google's Cloud Vision API. The reason I have used Google's Vision API rather than Watson's vision offerings, is becuase Googe's Vision API offers a more enriching output, also, I wanted to try both methods.

Flickr Data and API

In [80]:
flickr_urls.head(10)
Out[80]:
Rank FlickrURLs
0 1 https://farm1.staticflickr.com/864/26456445337_9d7bbd990f.jpg
1 2 https://farm1.staticflickr.com/806/41112347391_4ce8c26be5.jpg
2 3 https://farm1.staticflickr.com/800/39303645560_1c95dece06.jpg
3 4 https://farm1.staticflickr.com/865/40217700035_1f4ff25156.jpg
4 5 https://farm1.staticflickr.com/806/39303643590_ca4fbe67e1.jpg
5 6 https://farm1.staticflickr.com/785/40217696775_476ae43cdc.jpg
6 7 https://farm1.staticflickr.com/807/39289306120_6cc6b7f703.jpg
7 8 https://farm1.staticflickr.com/881/41004659152_59c3f4b552.jpg
8 9 https://farm1.staticflickr.com/799/40366979114_d276843982.jpg
9 10 https://farm1.staticflickr.com/794/40182616095_85408ac5df.jpg

Google Vision API

This is a good definition of the Cloud API from Sara Robinson Medium article:

"The Cloud Vision API gives you contextual data on your images by leveraging Google’s vast network of machine learning expertise with a single API request. It uses a pre-trained model trained on a large dataset of images, similar to the models used to power Google Photos."

Installing the Vision API

First we need to install Google's Vison API using pip. You can either install the Vison API on your machine using:

pip install google-cloud-vision

Or, you can install inside this notebook by runing the line below.

In [81]:
# Install Google Cloud Vision API pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install --upgrade google-cloud-vision
Requirement already up-to-date: google-cloud-vision in /Users/kumarv/anaconda3/lib/python3.6/site-packages (0.31.0)
Requirement not upgraded as not directly required: google-api-core[grpc]<2.0.0dev,>=0.1.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-cloud-vision) (1.1.0)
Requirement not upgraded as not directly required: enum34 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-cloud-vision) (1.1.6)
Requirement not upgraded as not directly required: googleapis-common-protos<2.0dev,>=1.5.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (1.5.3)
Requirement not upgraded as not directly required: protobuf>=3.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (3.5.2.post1)
Requirement not upgraded as not directly required: pytz in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (2018.4)
Requirement not upgraded as not directly required: setuptools>=34.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (39.0.1)
Requirement not upgraded as not directly required: google-auth<2.0.0dev,>=0.4.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (1.4.1)
Requirement not upgraded as not directly required: requests<3.0.0dev,>=2.18.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (2.18.4)
Requirement not upgraded as not directly required: six>=1.10.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (1.11.0)
Requirement not upgraded as not directly required: grpcio>=1.8.2; extra == "grpc" in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (1.11.0)
Requirement not upgraded as not directly required: rsa>=3.1.4 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (3.4.2)
Requirement not upgraded as not directly required: cachetools>=2.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (2.0.1)
Requirement not upgraded as not directly required: pyasn1-modules>=0.2.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (0.2.1)
Requirement not upgraded as not directly required: chardet<3.1.0,>=3.0.2 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (3.0.4)
Requirement not upgraded as not directly required: idna<2.7,>=2.5 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (2.6)
Requirement not upgraded as not directly required: urllib3<1.23,>=1.21.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (1.22)
Requirement not upgraded as not directly required: certifi>=2017.4.17 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (2018.4.16)
Requirement not upgraded as not directly required: pyasn1>=0.1.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from rsa>=3.1.4->google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.0->google-cloud-vision) (0.4.2)
google-cloud 0.32.0 has requirement google-api-core<0.2.0dev,>=0.1.2, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud 0.32.0 has requirement google-cloud-vision<0.30dev,>=0.29.0, but you'll have google-cloud-vision 0.31.0 which is incompatible.
google-cloud-trace 0.17.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-speech 0.30.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-spanner 0.29.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-pubsub 0.30.1 has requirement google-api-core[grpc]<0.2.0dev,>=0.1.3, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-logging 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-firestore 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-error-reporting 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-dns 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-datastore 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigtable 0.28.1 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigquery 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
In [82]:
#THIS WORKS USING GOOGLE'S DOCUMENTATION
#IT NEEDA A CLIENT

import io
import os

# Imports the Google Cloud client library
from google.cloud import vision
from google.cloud.vision import types

Using a Client

In order to use Google's Cloud Vision API you need to create a client using the credentials from an pre-registered application. Whilst it is possible to use an API key and a HTTPS request, Google recommends that you download the application credentials as a JSON file and then read the JSON to create a client. Using the below code, I will read the Google Cloud API key JSON file from the authentication folder within this coursework folder.

In [83]:
os.environ["GOOGLE_APPLICATION_CREDENTIALS"]= "authentication/gcloudapikey.json"

Method 1: Label annotations

The Vision API has many useful detection method; Label annotations being one of them. Label Detection detects broad sets of categories and annotations within an image.

Using the send request Python-code below, which was taken from the Vision APIs very helpful documentation, I will recieve a list of labels which decribe an image using a URL ("https://farm1.staticflickr.com/807/39289306120_6cc6b7f703.jpg") in the Flikr URL datarelated to the search teram "Lumiere London" in Flickr.

This is what the image looks like, taken from the URL ("https://farm1.staticflickr.com/807/39289306120_6cc6b7f703.jpg")

In [84]:
IMAGE_URL = 'https://farm1.staticflickr.com/807/39289306120_6cc6b7f703.jpg'

annot_client = vision.ImageAnnotatorClient()

request_image = {
    'source': {
        'image_uri': IMAGE_URL
    }
}

label_detection_feature = {
    'type': vision.enums.Feature.Type.LABEL_DETECTION, 
    'max_results': 100
}

request_features = [label_detection_feature]

response = annot_client.annotate_image({
    'image': request_image, 
    'features': request_features
})

labels = response.label_annotations

print('Label Count: {0}'.format(len(response.label_annotations))) # Result is 18
Label Count: 27
In [85]:
print('Labels:')
for label in labels:
    print(label.description)
Labels:
tree
landmark
woody plant
purple
night
city
light
structure
plant
architecture
lighting
tourist attraction
christmas lights
festival
winter
metropolis
sky
downtown
evening
christmas decoration
branch
fête
christmas tree
christmas
decor
world
event

Conclusion

We can see that the Label Detector from Google's Vision API give us back a maximum of 18 labels for the image which decribe the image. However, it doesn't tell me anything about the location of the image. There is another method we can use to try an get more information about this image.

In [86]:
#print(labels)

Method 2: Web Entities and Page detection

The Web Entities and Page detection fuctionality allows us to receive a set of labels, entities, web link and geograph results that related to an image. I will also use this on the same image to see if it offers any further insight about the image so that I can try and answer my question.

In [87]:
from google.cloud import vision

IMAGE_URL = 'https://farm1.staticflickr.com/807/39289306120_6cc6b7f703.jpg'

web_client = vision.ImageAnnotatorClient()

web_detection_params = vision.types.WebDetectionParams(
        include_geo_results=True)

image_context = vision.types.ImageContext(
        web_detection_params=web_detection_params)

web_response = web_client.web_detection(image={
    'source': {
        'image_uri': IMAGE_URL
    }
}, image_context=image_context)   

web_labels = web_response.web_detection

for entity in web_response.web_detection.web_entities:
    print('\n\tScore      : {}'.format(entity.score))
    print(u'\tDescription: {}'.format(entity.description))

#print('Label Count: {0}'.format(len(web_response.web_detection))) # Result is 5

#print('Labels:')
#for label in labels:
    #print(label.description)
	Score      : 0.677178144454956
	Description: Tree

	Score      : 0.5509880781173706
	Description: Christmas lights

	Score      : 0.5504844784736633
	Description: Christmas decoration

	Score      : 0.5317011475563049
	Description: Woody plant

	Score      : 0.5144410729408264
	Description: Christmas tree

	Score      : 0.5059213638305664
	Description: Light

	Score      : 0.5007972121238708
	Description: Christmas

	Score      : 0.4872283637523651
	Description: Lighting

	Score      : 0.44136857986450195
	Description: Plant

	Score      : 0.3498055934906006
	Description: Night
In [88]:
print(web_labels)
web_entities {
  entity_id: "/m/07j7r"
  score: 0.677178144454956
  description: "Tree"
}
web_entities {
  entity_id: "/m/03cg49"
  score: 0.5509880781173706
  description: "Christmas lights"
}
web_entities {
  entity_id: "/m/05fc9mj"
  score: 0.5504844784736633
  description: "Christmas decoration"
}
web_entities {
  entity_id: "/m/02hnx9"
  score: 0.5317011475563049
  description: "Woody plant"
}
web_entities {
  entity_id: "/m/025nd"
  score: 0.5144410729408264
  description: "Christmas tree"
}
web_entities {
  entity_id: "/m/04k84"
  score: 0.5059213638305664
  description: "Light"
}
web_entities {
  entity_id: "/m/01vq3"
  score: 0.5007972121238708
  description: "Christmas"
}
web_entities {
  entity_id: "/m/019sc6"
  score: 0.4872283637523651
  description: "Lighting"
}
web_entities {
  entity_id: "/m/05s2s"
  score: 0.44136857986450195
  description: "Plant"
}
web_entities {
  entity_id: "/m/01d74z"
  score: 0.3498055934906006
  description: "Night"
}
visually_similar_images {
  url: "http://idahobotanicalgarden.org/wp-content/uploads/2014/05/Aglow-14_JaxPax-2016-650x416.jpg"
}
visually_similar_images {
  url: "http://theperfectlight.com/wp-content/uploads/2015/12/Multi-Colored-Christmas-Lighting-Dallas.jpg"
}
visually_similar_images {
  url: "http://www.disneytouristblog.com/wp-content/uploads/2015/05/mermaid-unit-paint-the-night-disneyland-diamond.jpg"
}
visually_similar_images {
  url: "http://chanelbagg.com/media/light-up-winter-garden-166-best-christmas-canada-images-on-pinterest-of-light-up-winter-garden.jpg"
}
visually_similar_images {
  url: "https://i2.wp.com/do512family.com/wp-content/uploads/2017/11/111717-Mozarts-027.jpg?fit=1440%2C960"
}
visually_similar_images {
  url: "https://lookaside.fbsbx.com/lookaside/crawler/media/?media_id=1796109570463210"
}
visually_similar_images {
  url: "https://i.gse.io/gse_media/117/9/1509131911-LA-Zoo-Lights-tickets-1.jpg?h=520&p=1&q=60&w=920&c=1"
}
visually_similar_images {
  url: "http://katiecharlotteblogs.co.uk/wordpress/wp-content/uploads/2016/12/spectacle-of-light-4.jpg"
}
visually_similar_images {
  url: "http://static.asiawebdirect.com/m/phuket/portals/phuket-com/homepage/nightlife/top10-phuket-nightlife/pagePropertiesImage/phuket-best-nightlife.jpg.jpg"
}
visually_similar_images {
  url: "http://casestudies.uli.org/wp-content/uploads/sites/98/2016/06/panodramatic.jpg"
}
best_guess_labels {
  label: "landmark"
}

Conclusion

We can see that the Web Entities and Page detection has given us back some labels and URL which relate to the image.

Evaluation

Unfortunately, this is the end of the image recognition analysis; I ran out of time.

I did not have the time to figure out how to feed entire Flickr URL list to the Vision API. As you can see above, I managed to make the API work but I only gave it one URL from the Flickr data. This means that I am unable to answer my question in Step 1 by using this method, image recognition.

I still believe that if I am able to figure out how to feed the entire URL list to the Vision API, then I will be able to recieve a list of labels, web links, and annotations that will be helpful to understand which installation was most popular at Lumiere London 2018. Before publishing this notebook to the web, I hope to feed the entire Flickr URL list and complete this analysis.

Evaluation of Methods

Before concluding my coursework, in this section I am going to provide an evaluation of the data, tools and methods I have chosen. It is helpful to do this because I recognise that there are a number of different ways to answer the question "which Lumiere London 2018 installation was most popular". By acknowledging the present methods used and the potential to use other methods, I hope to build upon this analysis in the future.

The Data

The present analysis only really uses Twitter data to answer the question; I ran out of time to fully utlise the Flickr data. In the future, I could use other data such as TFL data, mobile phone data, and the geographic location of the Twitter data to create a more enriched understanding of which Lumiere London 2018 installation was most popular.

The Methods

The present analysis used Text analysis, Natural Language Processing, and attemped to use Image Recognition to answer "which Lumiere London 2018 installation was most popular"?

For the text analysis and NLP section, I could have created a corpus of text for each day rather than by the first, second and third 3,000 words within the larger corpus. That way, I could have had a detail analysis as to which installtion was more popular on each day, rather than for the whole festival.

For the NLP section, I could have analysed the average sentiment across each tweet, this way I could be more ambitious with overall question. For instance, I could have also tried to answer, "what did people feel and this about the festival?" based on some sort of sentiment score.

What could I have done that I did not do or did not have the time to do?

The Image recognition analysis was not fruitful because did not know how to pass multiple URLs to the Vision API-- before I publish this notebook onto the web, I will try to figure out how to do this. If I can pass all of the Flickr URLs to the Vision API, I hope to discover which installation appeared the most based on Flickr image data related to the search term "Lumiere London".

Conclusion

In conclusion, I can conclude that the most popular Lumiere London 2018 installation and area based on the present data, present methods and present analysis is Patrice Warrener's installation, The Light of the Spirit, at Westminster Abbey, in Westminster London. I arrived to this conclusion having collected Twitter data using TAGS and then performing extensive text analysis and natural language processing on the twitter text.

The results from the text analysis revealed that the word "abbey" (related to Westminster Abbey) appeared 1,479 times throughout the corpus of the whole twitter text. The results from the keyword analysis using natural language processing revealed that the word "westminster" was one of the most closely related to the word "lumiere" within the entire corpus of the whole twitter text.

Unfortunately, I did not get the opportunity this time round to analyse the Flickr to justify and support my conclusion; as mentioned previously, I hope to analyse the Flickr data using Google's Cloud Vision API in the future before publishing this research onto the internet.

Appendix: Extensions of the Analysis

In this section, I have code which I did not have time to exectue effectively to undertake meaningful analysis, nonetheless, I have included them in the appendix for future research and analysis as I believe they would be helpful to futher contextualise and answer the question "which installation and area was most popular at Lumiere London 2018."

1. Google Maps API to get the long and lat of the installations

I could use the Google Maps API to create long, lat coordinates each installation based on the street names of the installations (taken from the installation_data.csv and provided by the official Lumiere London programme).

In [89]:
import requests
In [90]:
installation_data.head()
Out[90]:
Number CodeNumber Location InstallationName Artist StreetName freq
0 1 KX1 king's cross ifo (identified flying object) jacques rival battle bridge place london 11
1 2 KX2 king's cross dot philippe morvan universal music four pancras square london 11
2 3 KX3 king's cross upperground maya mouawad and cyril laurier king’s cross tunnel london 11
3 4 KX4 king's cross lampounette tilt king’s boulevard london 11
4 5 KX5 king's cross waterlicht​ daan​ ​roosegaarde​ granary square london 11
In [91]:
def street_names(installation_data):
    
    streetnames = []
    
    #for col in ['StreetName']:
    for sentence in installation_data["StreetName"].iteritems():
            word_list = sentence[1].strip(u'\u200b')
            streetnames.append(word_list)
     
    return streetnames

streetnames = street_names(installation_data)        
streetnames[0:]
Out[91]:
['battle bridge place london',
 'universal music four pancras square london',
 'king’s cross tunnel london',
 'king’s boulevard london',
 'granary square london',
 'bagley walk london',
 'coal drops yard london',
 'gas holder no 8 kings cross london',
 'lewis cubitt park london',
 'west handyside canopy london',
 'universal building vitrines goods way london',
 'whitfield gardens london',
 'store\u200b \u200bstreet\u200b \u200bcrescent london',
 'imagination building store street london',
 'fitzroy place london',
 'south molton street mayfair london',
 'weighhouse street london',
 'brown hart gardens london',
 'brown hart gardens (upper level) london',
 'grosvenor square\u200b \u200bmayfair london',
 'mount street the connaught hotel london',
 'mount street gardens london',
 'south\u200b \u200baudley\u200b \u200bstreet\u200b \u200bmayfair london',
 'berkeley square london',
 'st james’s square london',
 'st james’s market london',
 'st\u200b \u200bjames’s\u200b \u200bmarket\u200b \u200bst james’s london',
 'st james’s church jermyn street london',
 'st james’s churchyard church place london',
 'st james’s church piccadilly london',
 'royal\u200b \u200bacademy\u200b \u200bof\u200b \u200barts\u200b \u200bpiccadilly london',
 'hotel\u200b \u200bcafe \u200broyal regent\u200b \u200bstreet london',
 'regent street london',
 'broadwick street london',
 'ganton street london',
 'oxford circus london',
 'earlham street seven dials london',
 'chinatown\u200b \u200blondon london',
 'leicester\u200b \u200bsquare\u200b \u200bgardens london',
 'st martin-in-the-fields london',
 'trafalgar square london',
 'westminster cathedral piazza london',
 'westminster city hall wilcox place london',
 'westminster abbey london',
 'leake street waterloo station london',
 'london eye london',
 'rambert upper ground london',
 'bargehouse oxo tower wharf london',
 'bernie spain gardens upper ground london',
 'mondrian hotel london',
 'riverside walkway london',
 'the\u200b \u200bnational\u200b \u200btheatre london',
 'hayward gallery southbank centre london',
 'upper level beside the royal festival hall london']
In [92]:
# first, choose the end point
endpoint_maps = 'https://maps.googleapis.com/maps/api/geocode/json?'
# simple parameter passing in this case
params = {
    'address': 'Oxford Street London'}
# and the authentication code
auth = ('user', 'AIzaSyC1qqQ19GaRpXa6gLFT_tMxQjLppzIDS2E')
In [93]:
m = requests.get(endpoint_maps, auth=auth, params=params)
In [94]:
m.status_code

m.json()
Out[94]:
{'error_message': 'You have exceeded your daily request quota for this API. We recommend registering for a key at the Google Developers Console: https://console.developers.google.com/apis/credentials?project=_',
 'results': [],
 'status': 'OVER_QUERY_LIMIT'}
In [95]:
import requests
from pandas.io.json import json_normalize

map_test = json_normalize(m.json()['results'])
In [96]:
map_test
Out[96]:
In [97]:
#geog = pd.DataFrame[twitter['GeogCoordinates']]
#geog

2. Google Cloud NLP Library

The Google Cloud NLP facility was another option I considered and could consider in the future for analysis. I was finding it difficult to convert the JSON data recieved into a Pandas DataFrame. It offers a broad variety of output from entities, syntax, sentiment, and classification

In [98]:
# Install Google Cloud NLP Library pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install --upgrade google-cloud-language
Requirement already up-to-date: google-cloud-language in /Users/kumarv/anaconda3/lib/python3.6/site-packages (1.0.1)
Requirement not upgraded as not directly required: google-api-core[grpc]<2.0.0dev,>=0.1.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-cloud-language) (1.1.0)
Requirement not upgraded as not directly required: google-auth<2.0.0dev,>=0.4.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (1.4.1)
Requirement not upgraded as not directly required: protobuf>=3.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (3.5.2.post1)
Requirement not upgraded as not directly required: setuptools>=34.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (39.0.1)
Requirement not upgraded as not directly required: six>=1.10.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (1.11.0)
Requirement not upgraded as not directly required: pytz in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (2018.4)
Requirement not upgraded as not directly required: requests<3.0.0dev,>=2.18.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (2.18.4)
Requirement not upgraded as not directly required: googleapis-common-protos<2.0dev,>=1.5.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (1.5.3)
Requirement not upgraded as not directly required: grpcio>=1.8.2; extra == "grpc" in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (1.11.0)
Requirement not upgraded as not directly required: cachetools>=2.0.0 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (2.0.1)
Requirement not upgraded as not directly required: rsa>=3.1.4 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (3.4.2)
Requirement not upgraded as not directly required: pyasn1-modules>=0.2.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (0.2.1)
Requirement not upgraded as not directly required: chardet<3.1.0,>=3.0.2 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (3.0.4)
Requirement not upgraded as not directly required: idna<2.7,>=2.5 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (2.6)
Requirement not upgraded as not directly required: urllib3<1.23,>=1.21.1 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (1.22)
Requirement not upgraded as not directly required: certifi>=2017.4.17 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from requests<3.0.0dev,>=2.18.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (2018.4.16)
Requirement not upgraded as not directly required: pyasn1>=0.1.3 in /Users/kumarv/anaconda3/lib/python3.6/site-packages (from rsa>=3.1.4->google-auth<2.0.0dev,>=0.4.0->google-api-core[grpc]<2.0.0dev,>=0.1.1->google-cloud-language) (0.4.2)
google-cloud 0.32.0 has requirement google-api-core<0.2.0dev,>=0.1.2, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud 0.32.0 has requirement google-cloud-vision<0.30dev,>=0.29.0, but you'll have google-cloud-vision 0.31.0 which is incompatible.
google-cloud-trace 0.17.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-speech 0.30.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-spanner 0.29.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-pubsub 0.30.1 has requirement google-api-core[grpc]<0.2.0dev,>=0.1.3, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-logging 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-firestore 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-error-reporting 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-dns 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-datastore 1.4.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigtable 0.28.1 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
google-cloud-bigquery 0.28.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.1.0 which is incompatible.
In [99]:
#THIS WORKS USING GOOGLE'S DOCUMENTATION
import json
import os
import argparse

# Imports the Google Cloud client library
from google.cloud import language
from google.cloud.language import enums
from google.cloud.language import types
In [100]:
os.environ["GOOGLE_APPLICATION_CREDENTIALS"]= "authentication/gcloudapikey.json"

Entities Analysis - Google

In [101]:
language_client = language.LanguageServiceClient()

# The text to analyze
text = sentence_tokenized1
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

entities = language_client.analyze_entities(document).entities

# entity types from enums.Entity.Type
entity_type = ('UNKNOWN', 'PERSON', 'LOCATION', 'ORGANIZATION',
                   'EVENT', 'WORK_OF_ART', 'CONSUMER_GOOD', 'OTHER')

for entity in entities:
        print('=' * 20)
        print(u'{:<16}: {}'.format('name', entity.name))
        print(u'{:<16}: {}'.format('type', entity_type[entity.type]))
        print(u'{:<16}: {}'.format('metadata', entity.metadata))
        print(u'{:<16}: {}'.format('salience', entity.salience))
        print(u'{:<16}: {}'.format('wikipedia_url',
              entity.metadata.get('wikipedia_url', '-')))

#print(entities)
====================
name            : project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x110b3aa80>
salience        : 0.3702075183391571
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229876c0>
salience        : 0.37012481689453125
wikipedia_url   : -
====================
name            : awork entre les rangs _kanva behindthescenes grosvenor_gbi mayfair london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229870d0>
salience        : 0.024993306025862694
wikipedia_url   : https://en.wikipedia.org/wiki/London
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967210>
salience        : 0.009003369137644768
wikipedia_url   : -
====================
name            : leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967990>
salience        : 0.007908349856734276
wikipedia_url   : https://en.wikipedia.org/wiki/Leicester_Square
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a30>
salience        : 0.0022680754773318768
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a80>
salience        : 0.0018272475572302938
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ad0>
salience        : 0.0017155271489173174
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967cb0>
salience        : 0.0015754628693684936
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d50>
salience        : 0.001548128784634173
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967da0>
salience        : 0.001483282190747559
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e40>
salience        : 0.0014494014903903008
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e90>
salience        : 0.00141461833845824
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ee0>
salience        : 0.0013763554161414504
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f80>
salience        : 0.0013611754402518272
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29080>
salience        : 0.0011756190797314048
wikipedia_url   : -
====================
name            : bridge london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29170>
salience        : 0.0011265557259321213
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29210>
salience        : 0.0010874784784391522
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e292b0>
salience        : 0.0010838861344382167
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29300>
salience        : 0.0010816248832270503
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e293a0>
salience        : 0.0010199201060459018
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29440>
salience        : 0.0009826116729527712
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29490>
salience        : 0.0009651865693740547
wikipedia_url   : -
====================
name            : beasts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29530>
salience        : 0.0009520838502794504
wikipedia_url   : -
====================
name            : aichoketrust mayoroflondon visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29580>
salience        : 0.0009227250120602548
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29620>
salience        : 0.00087244767928496
wikipedia_url   : -
====================
name            : telephone box library
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29670>
salience        : 0.0008327019168063998
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29710>
salience        : 0.000814691768027842
wikipedia_url   : -
====================
name            : professionalphotographer london lumierelondon lumiere westminsterabbey westminster
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e297b0>
salience        : 0.0007875790470279753
wikipedia_url   : https://en.wikipedia.org/wiki/City_of_Westminster
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29850>
salience        : 0.0007807473302818835
wikipedia_url   : -
====================
name            : lightinstallation awork london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e298f0>
salience        : 0.0007585528073832393
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29940>
salience        : 0.0007452575373463333
wikipedia_url   : -
====================
name            : lumiere installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29990>
salience        : 0.0006768921157345176
wikipedia_url   : -
====================
name            : instagram
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29a30>
salience        : 0.000675997871439904
wikipedia_url   : https://en.wikipedia.org/wiki/Instagram
====================
name            : entrance leakestreet
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29ad0>
salience        : 0.0006751035689376295
wikipedia_url   : -
====================
name            : lamps office
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29b70>
salience        : 0.0006670279544778168
wikipedia_url   : -
====================
name            : visitor experiences
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29bc0>
salience        : 0.0006649464485235512
wikipedia_url   : -
====================
name            : wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29c10>
salience        : 0.0006254544132389128
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29d00>
salience        : 0.0005908877355977893
wikipedia_url   : -
====================
name            : oxford
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29df0>
salience        : 0.0005731345154345036
wikipedia_url   : -
====================
name            : trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29e90>
salience        : 0.0005729453987441957
wikipedia_url   : https://en.wikipedia.org/wiki/Trafalgar_Square
====================
name            : front
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29ee0>
salience        : 0.0005305141094140708
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4030>
salience        : 0.0005229630623944104
wikipedia_url   : -
====================
name            : city hall projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4080>
salience        : 0.0005012310575693846
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4170>
salience        : 0.0004955618642270565
wikipedia_url   : -
====================
name            : spire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc41c0>
salience        : 0.000494323787279427
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4260>
salience        : 0.0004884327645413578
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4350>
salience        : 0.00048713726573623717
wikipedia_url   : -
====================
name            : waterlicht daan roosegaarde love md lumierelondon totastemaker kingscross lumiere simon_burgess lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc43f0>
salience        : 0.00048496946692466736
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4490>
salience        : 0.0004742695309687406
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4580>
salience        : 0.000467038742499426
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4620>
salience        : 0.00045367778511717916
wikipedia_url   : -
====================
name            : selection favourite installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4670>
salience        : 0.0004506278783082962
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4710>
salience        : 0.00042768538696691394
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc47b0>
salience        : 0.00042374173062853515
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4850>
salience        : 0.00042374173062853515
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc48f0>
salience        : 0.0004158902447670698
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4990>
salience        : 0.0004134414193686098
wikipedia_url   : -
====================
name            : visit exhibitions
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4a30>
salience        : 0.0004109161382075399
wikipedia_url   : -
====================
name            : king cross granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4ad0>
salience        : 0.0004030588024761528
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4bc0>
salience        : 0.00038827621028758585
wikipedia_url   : -
====================
name            : abuse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4c10>
salience        : 0.0003877361596096307
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4cb0>
salience        : 0.00038148576277308166
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4da0>
salience        : 0.00037768681067973375
wikipedia_url   : -
====================
name            : violence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4e40>
salience        : 0.00037728543975390494
wikipedia_url   : -
====================
name            : students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4f30>
salience        : 0.00036642790655605495
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd030>
salience        : 0.00036230075056664646
wikipedia_url   : -
====================
name            : chinatown london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd0d0>
salience        : 0.0003551542467903346
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd1c0>
salience        : 0.00035366317024454474
wikipedia_url   : -
====================
name            : winter light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd210>
salience        : 0.00035132377524860203
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd2b0>
salience        : 0.00034972213325090706
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd350>
salience        : 0.0003456326376181096
wikipedia_url   : -
====================
name            : decorations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd3f0>
salience        : 0.0003317332302685827
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd490>
salience        : 0.00032299087615683675
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd530>
salience        : 0.0003225700929760933
wikipedia_url   : -
====================
name            : biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd580>
salience        : 0.00031899905297905207
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd620>
salience        : 0.00031559151830151677
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd6c0>
salience        : 0.0003148938121739775
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd710>
salience        : 0.0003148034738842398
wikipedia_url   : -
====================
name            : kingscross woh
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd760>
salience        : 0.0003145617665722966
wikipedia_url   : -
====================
name            : ilovephotography photoatn
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd800>
salience        : 0.0003126648662146181
wikipedia_url   : -
====================
name            : display visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd8a0>
salience        : 0.0003081517934333533
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd940>
salience        : 0.0003080577589571476
wikipedia_url   : -
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd990>
salience        : 0.0002996555995196104
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddda80>
salience        : 0.0002928028698079288
wikipedia_url   : -
====================
name            : westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddb20>
salience        : 0.0002900139079429209
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddbc0>
salience        : 0.0002890642499551177
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddc60>
salience        : 0.0002862843975890428
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddd00>
salience        : 0.0002822526730597019
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddddf0>
salience        : 0.00027992416289635
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddee0>
salience        : 0.000277019920758903
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70030>
salience        : 0.00027491713990457356
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70080>
salience        : 0.000270027230726555
wikipedia_url   : -
====================
name            : southbank amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70170>
salience        : 0.00026939023518934846
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70210>
salience        : 0.00026774880825541914
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70300>
salience        : 0.0002674050338100642
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a703a0>
salience        : 0.0002668855304364115
wikipedia_url   : -
====================
name            : visitlondon london lumierelondon londonblogger wintersinlondon nightfestival thegl0betrotter patrice warrener
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70440>
salience        : 0.000263947993516922
wikipedia_url   : -
====================
name            : producer director cameraman promo coaching music video london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a704e0>
salience        : 0.0002630717644933611
wikipedia_url   : -
====================
name            : installation london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70530>
salience        : 0.0002630717644933611
wikipedia_url   : -
====================
name            : bridge london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70620>
salience        : 0.00026083673583343625
wikipedia_url   : -
====================
name            : leicestersquare london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70670>
salience        : 0.0002595381229184568
wikipedia_url   : -
====================
name            : bridge london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70760>
salience        : 0.0002590461226645857
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70800>
salience        : 0.00025824597105383873
wikipedia_url   : -
====================
name            : red telephone box london londonlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a708a0>
salience        : 0.00025760885910131037
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70940>
salience        : 0.0002573331003077328
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70a30>
salience        : 0.0002568979689385742
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70b20>
salience        : 0.00025684526190161705
wikipedia_url   : -
====================
name            : hit londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70c10>
salience        : 0.0002566272160038352
wikipedia_url   : -
====================
name            : hit londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70d00>
salience        : 0.0002566272160038352
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70df0>
salience        : 0.0002556164690759033
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70e90>
salience        : 0.00025097717298194766
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70f30>
salience        : 0.0002447072183713317
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84030>
salience        : 0.00024178823514375836
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84080>
salience        : 0.00023335780133493245
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84170>
salience        : 0.00023222460004035383
wikipedia_url   : -
====================
name            : survivors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84260>
salience        : 0.00023013795726001263
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84300>
salience        : 0.00022831327805761248
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a843a0>
salience        : 0.0002279058244312182
wikipedia_url   : -
====================
name            : neon lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84440>
salience        : 0.00022768074995838106
wikipedia_url   : -
====================
name            : archdeaconluke lumierefestival
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a844e0>
salience        : 0.00022768074995838106
wikipedia_url   : -
====================
name            : archdeaconluke lumierefestival
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84580>
salience        : 0.00022768074995838106
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a845d0>
salience        : 0.00022751485812477767
wikipedia_url   : -
====================
name            : checking lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84620>
salience        : 0.00022685642761643976
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84670>
salience        : 0.00022685642761643976
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84710>
salience        : 0.0002267899108119309
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84800>
salience        : 0.0002265471121063456
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a848f0>
salience        : 0.00022611761232838035
wikipedia_url   : -
====================
name            : thank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84940>
salience        : 0.00022584639373235404
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84990>
salience        : 0.00022572690795641392
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a849e0>
salience        : 0.00022572690795641392
wikipedia_url   : -
====================
name            : photography night light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84a30>
salience        : 0.00022492889547720551
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84a80>
salience        : 0.00022492889547720551
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84ad0>
salience        : 0.00022403139155358076
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84b20>
salience        : 0.00022380895097739995
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84b70>
salience        : 0.00022380895097739995
wikipedia_url   : -
====================
name            : city bbclondonnews festival light
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84c10>
salience        : 0.000223384631681256
wikipedia_url   : -
====================
name            : amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84cb0>
salience        : 0.00022301771969068795
wikipedia_url   : -
====================
name            : uv lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84d50>
salience        : 0.00022301771969068795
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84df0>
salience        : 0.00022269457986112684
wikipedia_url   : -
====================
name            : lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84e90>
salience        : 0.00022240592807065696
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84ee0>
salience        : 0.00022240592807065696
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84f30>
salience        : 0.00022214511409401894
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84f80>
salience        : 0.00022214511409401894
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73080>
salience        : 0.0002216887369286269
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e730d0>
salience        : 0.0002216887369286269
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73120>
salience        : 0.0002216887369286269
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73170>
salience        : 0.00022148658172227442
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73210>
salience        : 0.00022148658172227442
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73260>
salience        : 0.00022148658172227442
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73300>
salience        : 0.00022129854187369347
wikipedia_url   : -
====================
name            : streets london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73350>
salience        : 0.00022124176030047238
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e733f0>
salience        : 0.0002173562825191766
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73440>
salience        : 0.00021703900711145252
wikipedia_url   : -
====================
name            : mrbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73490>
salience        : 0.0002167623897548765
wikipedia_url   : -
====================
name            : levanterman lumierelondon aichoketrust southbanklondon postcardslond1 lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73530>
salience        : 0.00021624098008032888
wikipedia_url   : -
====================
name            : lighting installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73580>
salience        : 0.00020324552315287292
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73620>
salience        : 0.00020324552315287292
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e736c0>
salience        : 0.00020324552315287292
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73760>
salience        : 0.00020324552315287292
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73800>
salience        : 0.00020324552315287292
wikipedia_url   : -
====================
name            : pubs
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e738a0>
salience        : 0.0002028441522270441
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e738f0>
salience        : 0.0002022334811044857
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73990>
salience        : 0.0002022334811044857
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73a30>
salience        : 0.0002022334811044857
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73ad0>
salience        : 0.000200965630938299
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73b70>
salience        : 0.000200965630938299
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73bc0>
salience        : 0.000200965630938299
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73c60>
salience        : 0.00020051504543516785
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73d00>
salience        : 0.00020013486209791154
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73da0>
salience        : 0.0001998061197809875
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73e40>
salience        : 0.00019951659487560391
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73ee0>
salience        : 0.00019925796368625015
wikipedia_url   : -
====================
name            : waterlicht installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73f30>
salience        : 0.00019925796368625015
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92030>
salience        : 0.00019925796368625015
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e920d0>
salience        : 0.00019925796368625015
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92170>
salience        : 0.00019902428903151304
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92210>
salience        : 0.00019902428903151304
wikipedia_url   : -
====================
name            : name installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92260>
salience        : 0.00019902428903151304
wikipedia_url   : -
====================
name            : programme installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92300>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e923a0>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92440>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e924e0>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92580>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92620>
salience        : 0.00019881120533682406
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e926c0>
salience        : 0.00019861538021359593
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92760>
salience        : 0.00019861538021359593
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92800>
salience        : 0.00019861538021359593
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92850>
salience        : 0.00019861538021359593
wikipedia_url   : -
====================
name            : marquee lumiere installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e928a0>
salience        : 0.00019861538021359593
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92940>
salience        : 0.00019843425252474844
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92990>
salience        : 0.00019843425252474844
wikipedia_url   : -
====================
name            : duration dot installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e929e0>
salience        : 0.00019843425252474844
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92a80>
salience        : 0.0001982657704502344
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92b20>
salience        : 0.0001982657704502344
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92bc0>
salience        : 0.0001982657704502344
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92c60>
salience        : 0.00019810830417554826
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92d00>
salience        : 0.00019810830417554826
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92da0>
salience        : 0.00019810830417554826
wikipedia_url   : -
====================
name            : thelightermankx
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92df0>
salience        : 0.00019542562949936837
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92e90>
salience        : 0.0001944424002431333
wikipedia_url   : -
====================
name            : mayoroflondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92f30>
salience        : 0.0001944424002431333
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68030>
salience        : 0.00019417773000895977
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a680d0>
salience        : 0.00019417773000895977
wikipedia_url   : -
====================
name            : oxo london nightlights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68170>
salience        : 0.00019305736350361258
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22975620>
salience        : 0.00019279013213235885
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967850>
salience        : 0.00019105877436231822
wikipedia_url   : -
====================
name            : london town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967170>
salience        : 0.00018933467799797654
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967940>
salience        : 0.00018888841441366822
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229679e0>
salience        : 0.00018841959536075592
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967df0>
salience        : 0.00018664106028154492
wikipedia_url   : -
====================
name            : festival sho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29030>
salience        : 0.0001865727244876325
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e291c0>
salience        : 0.00018644612282514572
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e293f0>
salience        : 0.0001863344805315137
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e295d0>
salience        : 0.00018522398022469133
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e296c0>
salience        : 0.000183016003575176
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29800>
salience        : 0.00018296677444595844
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e299e0>
salience        : 0.00018235575407743454
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29b20>
salience        : 0.00018205566448159516
wikipedia_url   : -
====================
name            : projector screen pa lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29c60>
salience        : 0.00018205566448159516
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29d50>
salience        : 0.00018205566448159516
wikipedia_url   : -
====================
name            : mickfusion highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29da0>
salience        : 0.0001819532917579636
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29f30>
salience        : 0.00018091425590682775
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc40d0>
salience        : 0.0001805086067179218
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4210>
salience        : 0.00018016633111983538
wikipedia_url   : -
====================
name            : night train home sinoradiouk festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc42b0>
salience        : 0.00017987037426792085
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc43a0>
salience        : 0.00017937688971869648
wikipedia_url   : -
====================
name            : westminsterabbey light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4440>
salience        : 0.00017937688971869648
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4530>
salience        : 0.00017937688971869648
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4760>
salience        : 0.0001792624098015949
wikipedia_url   : -
====================
name            : lumière festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4800>
salience        : 0.00017916651268023998
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4940>
salience        : 0.00017897467478178442
wikipedia_url   : -
====================
name            : ospiti luminosi londra lumierelondon lumierelondon2018 leicestersquare
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4a80>
salience        : 0.00017880489758681506
wikipedia_url   : -
====================
name            : london lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4b20>
salience        : 0.00017879839288070798
wikipedia_url   : -
====================
name            : chrisplant one
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4c60>
salience        : 0.00017851816664915532
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4d50>
salience        : 0.00017848364950623363
wikipedia_url   : -
====================
name            : mayoroflondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4df0>
salience        : 0.00017848364950623363
wikipedia_url   : -
====================
name            : mayoroflondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4e90>
salience        : 0.00017848364950623363
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4f80>
salience        : 0.00017848364950623363
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd120>
salience        : 0.00017848364950623363
wikipedia_url   : -
====================
name            : london lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd170>
salience        : 0.00017834187019616365
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd300>
salience        : 0.00017731101252138615
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd440>
salience        : 0.00017429023864679039
wikipedia_url   : -
====================
name            : kingscross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd5d0>
salience        : 0.00017213402315974236
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd850>
salience        : 0.00017211036174558103
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddda30>
salience        : 0.00017205784388352185
wikipedia_url   : -
====================
name            : visitlondon mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddad0>
salience        : 0.00017196143744513392
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddb70>
salience        : 0.00017090750043280423
wikipedia_url   : -
====================
name            : park kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddd50>
salience        : 0.0001704973547020927
wikipedia_url   : -
====================
name            : floodlights king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddde40>
salience        : 0.00016964830865617841
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddde90>
salience        : 0.00016960981884039938
wikipedia_url   : -
====================
name            : regent
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a700d0>
salience        : 0.00016927396063692868
wikipedia_url   : -
====================
name            : festival light kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70120>
salience        : 0.0001690484641585499
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a702b0>
salience        : 0.00016858465096447617
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70490>
salience        : 0.00016858465096447617
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a706c0>
salience        : 0.00016858465096447617
wikipedia_url   : -
====================
name            : illumaphonium grosvenorsquare newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68210>
salience        : 0.0001678833068581298
wikipedia_url   : -
====================
name            : nofilter kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68260>
salience        : 0.0001676118845352903
wikipedia_url   : -
====================
name            : granary square kings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a682b0>
salience        : 0.0001676118845352903
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68350>
salience        : 0.00016715200035832822
wikipedia_url   : -
====================
name            : redevelopment kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a683a0>
salience        : 0.00016715200035832822
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68490>
salience        : 0.00016715200035832822
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68530>
salience        : 0.00016715200035832822
wikipedia_url   : -
====================
name            : installations kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68580>
salience        : 0.0001667772012297064
wikipedia_url   : -
====================
name            : aurora borealis kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68620>
salience        : 0.0001667772012297064
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a686c0>
salience        : 0.00016646095900796354
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68760>
salience        : 0.00016646095900796354
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a687b0>
salience        : 0.00016298206173814833
wikipedia_url   : -
====================
name            : night road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68800>
salience        : 0.00016281017451547086
wikipedia_url   : -
====================
name            : guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a688a0>
salience        : 0.00016276440874207765
wikipedia_url   : -
====================
name            : westminster fitzrovia mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a688f0>
salience        : 0.0001619339018361643
wikipedia_url   : https://en.wikipedia.org/wiki/Mayfair
====================
name            : electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68990>
salience        : 0.0001612865162314847
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a689e0>
salience        : 0.00015814551443327218
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68a80>
salience        : 0.00015708708087913692
wikipedia_url   : -
====================
name            : nofilters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68b70>
salience        : 0.00015509076183661819
wikipedia_url   : -
====================
name            : carnaby street joinin247 london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68c10>
salience        : 0.00015369955508504063
wikipedia_url   : -
====================
name            : marshalljulius london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68cb0>
salience        : 0.00015289821021724492
wikipedia_url   : -
====================
name            : oxotowerwharf london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68d50>
salience        : 0.00015281264495570213
wikipedia_url   : -
====================
name            : leicestersquare london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68df0>
salience        : 0.0001523933606222272
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68ee0>
salience        : 0.00015210975834634155
wikipedia_url   : -
====================
name            : lumiere lumierelondon kingscross london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68f80>
salience        : 0.00015205162344500422
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba080>
salience        : 0.00015162646013777703
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba120>
salience        : 0.00015121042088139802
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba1c0>
salience        : 0.00015058525605127215
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba260>
salience        : 0.0001499253703514114
wikipedia_url   : -
====================
name            : biuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba300>
salience        : 0.00014949135947972536
wikipedia_url   : -
====================
name            : andy popcornmedia_uk lumiere lumierelondon lumiere2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba3a0>
salience        : 0.0001473164593335241
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba440>
salience        : 0.0001473126030759886
wikipedia_url   : -
====================
name            : light installations amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba4e0>
salience        : 0.00014659097359981388
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba530>
salience        : 0.00014617929991800338
wikipedia_url   : -
====================
name            : church abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba620>
salience        : 0.0001461276551708579
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba6c0>
salience        : 0.0001460060739191249
wikipedia_url   : -
====================
name            : dot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba710>
salience        : 0.00014574425586033612
wikipedia_url   : -
====================
name            : king cross granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba7b0>
salience        : 0.00014572215150110424
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba800>
salience        : 0.00014560652198269963
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba8a0>
salience        : 0.0001440872874809429
wikipedia_url   : -
====================
name            : king cross granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba940>
salience        : 0.00014325580559670925
wikipedia_url   : -
====================
name            : granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba9e0>
salience        : 0.0001426951785106212
wikipedia_url   : -
====================
name            : davekirwinphotography canon photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaa80>
salience        : 0.00014254597772378474
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaad0>
salience        : 0.00014115516387391835
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbabc0>
salience        : 0.0001404155045747757
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbac10>
salience        : 0.0001386212679790333
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbac60>
salience        : 0.00013813108671456575
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbacb0>
salience        : 0.00013711237988900393
wikipedia_url   : -
====================
name            : piccadilly lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbad00>
salience        : 0.00013616099022328854
wikipedia_url   : -
====================
name            : capital city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbadf0>
salience        : 0.00013598677469417453
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaee0>
salience        : 0.00013521530490834266
wikipedia_url   : -
====================
name            : canon photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80030>
salience        : 0.00013484428927768022
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80120>
salience        : 0.00013484428927768022
wikipedia_url   : -
====================
name            : installation dslrphotography city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a801c0>
salience        : 0.0001348310470348224
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a802b0>
salience        : 0.00013454190047923476
wikipedia_url   : -
====================
name            : visitlondon visitlondon lumierelondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80350>
salience        : 0.00013422162737697363
wikipedia_url   : -
====================
name            : weekend photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a803f0>
salience        : 0.00013406614016275853
wikipedia_url   : -
====================
name            : kingscross london
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80490>
salience        : 0.00013396443682722747
wikipedia_url   : -
====================
name            : festival photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80530>
salience        : 0.00013387184299062937
wikipedia_url   : -
====================
name            : festival photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a805d0>
salience        : 0.00013387184299062937
wikipedia_url   : -
====================
name            : child hood collectif coin photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80670>
salience        : 0.00013369826774578542
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80760>
salience        : 0.00013369826774578542
wikipedia_url   : -
====================
name            : citylights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80800>
salience        : 0.00013368514191824943
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a808f0>
salience        : 0.0001329267252003774
wikipedia_url   : -
====================
name            : electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80940>
salience        : 0.00013292551739141345
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80a30>
salience        : 0.00013207287702243775
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80b20>
salience        : 0.00013200059765949845
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80b70>
salience        : 0.000131775057525374
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80bc0>
salience        : 0.000131775057525374
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80c60>
salience        : 0.0001316205016337335
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80d00>
salience        : 0.0001316205016337335
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80d50>
salience        : 0.00013147955178283155
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80da0>
salience        : 0.0001312302192673087
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80df0>
salience        : 0.0001312302192673087
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80e40>
salience        : 0.00013111878070048988
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80ee0>
salience        : 0.00013021299673710018
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80f80>
salience        : 0.00013013843272347003
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76080>
salience        : 0.00012999906903132796
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76120>
salience        : 0.00012999906903132796
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e761c0>
salience        : 0.00012999906903132796
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76260>
salience        : 0.0001299337309319526
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76300>
salience        : 0.0001299337309319526
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e763a0>
salience        : 0.0001298709976254031
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76440>
salience        : 0.0001298709976254031
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e764e0>
salience        : 0.0001298709976254031
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76580>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76620>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e766c0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76760>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76800>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e768a0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76940>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e769e0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76ad0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76b70>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76c10>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76cb0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76d50>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76df0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76e90>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76f30>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63030>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a630d0>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63170>
salience        : 0.00012981065083295107
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63260>
salience        : 0.00012979617167729884
wikipedia_url   : -
====================
name            : england
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63350>
salience        : 0.0001297385897487402
wikipedia_url   : https://en.wikipedia.org/wiki/England
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a633a0>
salience        : 0.00012922374298796058
wikipedia_url   : -
====================
name            : times
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a633f0>
salience        : 0.00012914551189169288
wikipedia_url   : -
====================
name            : times
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63440>
salience        : 0.00012856203829869628
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a634e0>
salience        : 0.00012734536721836776
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63580>
salience        : 0.00012659763160627335
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a635d0>
salience        : 0.00012655816681217402
wikipedia_url   : -
====================
name            : bye bye case
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63670>
salience        : 0.0001265198807232082
wikipedia_url   : -
====================
name            : red telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63710>
salience        : 0.00012632709695026278
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63800>
salience        : 0.0001262984296772629
wikipedia_url   : -
====================
name            : penny photo stream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63850>
salience        : 0.00012615928426384926
wikipedia_url   : -
====================
name            : streetlight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a638f0>
salience        : 0.00012615928426384926
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a639e0>
salience        : 0.0001258130942005664
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63ad0>
salience        : 0.00012490575318224728
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63b70>
salience        : 0.0001248967892024666
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63c10>
salience        : 0.00012445512402337044
wikipedia_url   : -
====================
name            : fitzrovia pas camden
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63c60>
salience        : 0.00012426680768840015
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63d00>
salience        : 0.00012419087579473853
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63da0>
salience        : 0.00012419087579473853
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63e40>
salience        : 0.00012341213005129248
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63ee0>
salience        : 0.00012326736759860069
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63f30>
salience        : 0.00012316019274294376
wikipedia_url   : -
====================
name            : london ibipeople ibisocial lumierelondon lumiere lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f030>
salience        : 0.000123133126180619
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f0d0>
salience        : 0.00012309540761634707
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f170>
salience        : 0.0001230140624102205
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f210>
salience        : 0.00012290185259189457
wikipedia_url   : -
====================
name            : electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018 electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f260>
salience        : 0.0001227466855198145
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f350>
salience        : 0.00012235487520229071
wikipedia_url   : -
====================
name            : video electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f3a0>
salience        : 0.00012183767830720171
wikipedia_url   : -
====================
name            : iamgabrielluna yosoycordova lumierelondon lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f440>
salience        : 0.00012147855159128085
wikipedia_url   : -
====================
name            : lumiere lumiere neon drolpets london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f4e0>
salience        : 0.00012145943765062839
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f580>
salience        : 0.00012087353388778865
wikipedia_url   : -
====================
name            : visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f620>
salience        : 0.00012071680976077914
wikipedia_url   : -
====================
name            : gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust justin_venn lumierelondon2018 lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f6c0>
salience        : 0.00012071680976077914
wikipedia_url   : -
====================
name            : londonisopen lumiere justin_venn lumierelondon2018 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f760>
salience        : 0.00012057521234964952
wikipedia_url   : -
====================
name            : youtube
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f800>
salience        : 0.0001204180225613527
wikipedia_url   : https://en.wikipedia.org/wiki/YouTube
====================
name            : electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f8a0>
salience        : 0.00012002015864709392
wikipedia_url   : -
====================
name            : aichoketrust lumieredub
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f940>
salience        : 0.00012000233255093917
wikipedia_url   : -
====================
name            : atnight streetsoflondon southbank instagood
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f9e0>
salience        : 0.00011906483996426687
wikipedia_url   : -
====================
name            : brightnights gt lumierelondon igerslondon londonpop thisislondon london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fa80>
salience        : 0.00011904460552614182
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fb20>
salience        : 0.00011861154052894562
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fb70>
salience        : 0.00011861154052894562
wikipedia_url   : -
====================
name            : insight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fc10>
salience        : 0.00011762086796807125
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fcb0>
salience        : 0.00011740725312847644
wikipedia_url   : -
====================
name            : wildlife theme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fd00>
salience        : 0.0001167385998996906
wikipedia_url   : -
====================
name            : lumierelondon king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fd50>
salience        : 0.00011525394074851647
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fda0>
salience        : 0.00011525394074851647
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fdf0>
salience        : 0.00011525394074851647
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fee0>
salience        : 0.0001152013210230507
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9ff30>
salience        : 0.00011383001401554793
wikipedia_url   : -
====================
name            : wabbey lumierelondon2018 visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad030>
salience        : 0.0001136906721512787
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad080>
salience        : 0.00011351764987921342
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad120>
salience        : 0.00011326307139825076
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad170>
salience        : 0.00011304827057756484
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad210>
salience        : 0.00011299129255348817
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad2b0>
salience        : 0.00011286253720754758
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad300>
salience        : 0.00011255282879574224
wikipedia_url   : -
====================
name            : battle bridge place granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad350>
salience        : 0.00011253052070969716
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad3a0>
salience        : 0.00011231218377361074
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad440>
salience        : 0.00011219953739782795
wikipedia_url   : -
====================
name            : pity uk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad4e0>
salience        : 0.00011219841690035537
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad530>
salience        : 0.00011214940604986623
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad580>
salience        : 0.00011200398876098916
wikipedia_url   : -
====================
name            : flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad620>
salience        : 0.00011156982509419322
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad6c0>
salience        : 0.00011111687490483746
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad760>
salience        : 0.00011111687490483746
wikipedia_url   : -
====================
name            : context
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad800>
salience        : 0.00011111687490483746
wikipedia_url   : -
====================
name            : cosmoscope
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad8f0>
salience        : 0.00011111687490483746
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad990>
salience        : 0.00011111687490483746
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dada30>
salience        : 0.00011032220936613157
wikipedia_url   : -
====================
name            : cultureisgreat wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadad0>
salience        : 0.00011026330321328714
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadbc0>
salience        : 0.00011006573913618922
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a840d0>
salience        : 0.00010986604320351034
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a841c0>
salience        : 0.00010986604320351034
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a842b0>
salience        : 0.00010986604320351034
wikipedia_url   : -
====================
name            : raina newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium marshalljulius london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a843f0>
salience        : 0.00010957974882330745
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84530>
salience        : 0.00010944672976620495
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a847b0>
salience        : 0.00010938174091279507
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a848a0>
salience        : 0.00010937388287857175
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84d00>
salience        : 0.00010917005420196801
wikipedia_url   : -
====================
name            : lumierelondon rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84da0>
salience        : 0.00010903408110607415
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e731c0>
salience        : 0.00010881791240535676
wikipedia_url   : -
====================
name            : festival wavelength pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e732b0>
salience        : 0.00010770784865599126
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e733a0>
salience        : 0.00010736948752310127
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e734e0>
salience        : 0.00010625926370266825
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73670>
salience        : 0.0001058284324244596
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e737b0>
salience        : 0.00010536580521147698
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e739e0>
salience        : 0.00010521744115976617
wikipedia_url   : -
====================
name            : city hall projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73a80>
salience        : 0.00010518263297853991
wikipedia_url   : -
====================
name            : pa noordinarypark miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73b20>
salience        : 0.00010518263297853991
wikipedia_url   : -
====================
name            : lumierelondon theladytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73c10>
salience        : 0.00010512447624932975
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73d50>
salience        : 0.00010504102829145268
wikipedia_url   : -
====================
name            : wave
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73df0>
salience        : 0.00010502947407076135
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73f80>
salience        : 0.00010488300904398784
wikipedia_url   : -
====================
name            : lighting wearewaterloouk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92080>
salience        : 0.00010481610661372542
wikipedia_url   : -
====================
name            : fish phone booth
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92120>
salience        : 0.00010481610661372542
wikipedia_url   : -
====================
name            : city hall projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e921c0>
salience        : 0.0001042886360664852
wikipedia_url   : -
====================
name            : city hall projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e922b0>
salience        : 0.0001042886360664852
wikipedia_url   : -
====================
name            : mayoroflondon noordinarypark miss
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e923f0>
salience        : 0.00010391982505097985
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e925d0>
salience        : 0.00010329868382541463
wikipedia_url   : -
====================
name            : aiseverywhere aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92670>
salience        : 0.00010312162339687347
wikipedia_url   : -
====================
name            : repoer presenter freelancer miss
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e927b0>
salience        : 0.00010311848018318415
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e928f0>
salience        : 0.00010303899762220681
wikipedia_url   : -
====================
name            : style
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92a30>
salience        : 0.00010268105688737705
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92b70>
salience        : 0.00010255382949253544
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92cb0>
salience        : 0.00010238532559014857
wikipedia_url   : -
====================
name            : ldn_culture loveldnlovecul aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92e40>
salience        : 0.00010173587361350656
wikipedia_url   : -
====================
name            : projector
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92f80>
salience        : 0.00010073200974147767
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967440>
salience        : 0.00010070811549667269
wikipedia_url   : -
====================
name            : rain exitmagazine maxcoopermax visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d00>
salience        : 0.00010048043623100966
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e290d0>
salience        : 0.00010004187060985714
wikipedia_url   : -
====================
name            : computingdawn colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29120>
salience        : 9.989864338422194e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29350>
salience        : 9.957629663404077e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29760>
salience        : 9.903519094223157e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29a80>
salience        : 9.897547715809196e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29cb0>
salience        : 9.858036355581135e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29f80>
salience        : 9.758859960129485e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc44e0>
salience        : 9.753330232342705e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc46c0>
salience        : 9.722371032694355e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc49e0>
salience        : 9.704164403956383e-05
wikipedia_url   : -
====================
name            : installation london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4b70>
salience        : 9.68033418757841e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4ee0>
salience        : 9.673890599515289e-05
wikipedia_url   : -
====================
name            : installation london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd260>
salience        : 9.673890599515289e-05
wikipedia_url   : -
====================
name            : work sroosegaarde lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd4e0>
salience        : 9.66778170550242e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd8f0>
salience        : 9.661974763730541e-05
wikipedia_url   : -
====================
name            : colouryourcity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd9e0>
salience        : 9.652641892898828e-05
wikipedia_url   : -
====================
name            : aichoketrust team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddcb0>
salience        : 9.65252474998124e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddf80>
salience        : 9.65252474998124e-05
wikipedia_url   : -
====================
name            : zoomburst promise
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70710>
salience        : 9.6124094852712e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a708f0>
salience        : 9.588234388502315e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 lumierelondon southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a709e0>
salience        : 9.586702799424529e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70b70>
salience        : 9.570481051923707e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70cb0>
salience        : 9.570481051923707e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70da0>
salience        : 9.557012526784092e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70ee0>
salience        : 9.536634752294049e-05
wikipedia_url   : -
====================
name            : wavelength pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70f80>
salience        : 9.522812615614384e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70260>
salience        : 9.510464587947354e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70580>
salience        : 9.499308362137526e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68080>
salience        : 9.491186210652813e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68300>
salience        : 9.489134390605614e-05
wikipedia_url   : -
====================
name            : cube pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a683f0>
salience        : 9.489134390605614e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a685d0>
salience        : 9.479785512667149e-05
wikipedia_url   : -
====================
name            : broadway team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68850>
salience        : 9.455576218897477e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68a30>
salience        : 9.455576218897477e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68b20>
salience        : 9.45532665355131e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68c60>
salience        : 9.417688852408901e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68da0>
salience        : 9.410514030605555e-05
wikipedia_url   : -
====================
name            : postcardslond1 piccadillycircus
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68e40>
salience        : 9.402634896105155e-05
wikipedia_url   : -
====================
name            : simon corder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba030>
salience        : 9.338735981145874e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba170>
salience        : 9.322896221419796e-05
wikipedia_url   : -
====================
name            : placemaking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba2b0>
salience        : 9.237666381523013e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba350>
salience        : 9.204996604239568e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba490>
salience        : 9.197612234856933e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba5d0>
salience        : 9.194786980515346e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba670>
salience        : 9.179735934594646e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba760>
salience        : 9.179735934594646e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba990>
salience        : 9.165084338746965e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbab20>
salience        : 9.147702076006681e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbab70>
salience        : 9.141777263721451e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbada0>
salience        : 9.1326714027673e-05
wikipedia_url   : -
====================
name            : pa neon sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbae40>
salience        : 9.125473297899589e-05
wikipedia_url   : -
====================
name            : installations aether dot waterlicht mystery entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbae90>
salience        : 9.101710020331666e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaf30>
salience        : 9.101710020331666e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80080>
salience        : 9.092408436117694e-05
wikipedia_url   : -
====================
name            : amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80170>
salience        : 9.061695891432464e-05
wikipedia_url   : -
====================
name            : placemaking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80260>
salience        : 9.056375711224973e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a803a0>
salience        : 9.01512466953136e-05
wikipedia_url   : -
====================
name            : visitor experiences
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80440>
salience        : 8.970221097115427e-05
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80620>
salience        : 8.926735608838499e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadcb0>
salience        : 8.92330936039798e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadda0>
salience        : 8.91419404069893e-05
wikipedia_url   : -
====================
name            : chance see
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dade40>
salience        : 8.902968693291768e-05
wikipedia_url   : -
====================
name            : visitlondon deeeeelicious meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dade90>
salience        : 8.900102693587542e-05
wikipedia_url   : -
====================
name            : album
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadf30>
salience        : 8.900102693587542e-05
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9030>
salience        : 8.897939551388845e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de90d0>
salience        : 8.87477581272833e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9170>
salience        : 8.865968266036361e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9260>
salience        : 8.85505141923204e-05
wikipedia_url   : -
====================
name            : adventuresofjellie jellie lumiere granarysquare kingscross london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9300>
salience        : 8.850181620800868e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de93a0>
salience        : 8.842048555379733e-05
wikipedia_url   : -
====================
name            : videography musicvideo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9440>
salience        : 8.822906238492578e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9530>
salience        : 8.820310176815838e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9620>
salience        : 8.761647040955722e-05
wikipedia_url   : -
====================
name            : mickfusion highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9670>
salience        : 8.724327199161053e-05
wikipedia_url   : -
====================
name            : mickfusion highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de96c0>
salience        : 8.724327199161053e-05
wikipedia_url   : -
====================
name            : mickfusion highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9710>
salience        : 8.724327199161053e-05
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9800>
salience        : 8.720729238120839e-05
wikipedia_url   : -
====================
name            : light transformations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9850>
salience        : 8.693692507222295e-05
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de98f0>
salience        : 8.666590292705223e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9990>
salience        : 8.639606676297262e-05
wikipedia_url   : -
====================
name            : daan roosegaarde granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9a30>
salience        : 8.609291398897767e-05
wikipedia_url   : -
====================
name            : closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9ad0>
salience        : 8.580370922572911e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9b20>
salience        : 8.564213203499094e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9b70>
salience        : 8.550025813747197e-05
wikipedia_url   : -
====================
name            : westminsterabbey london westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9c10>
salience        : 8.547463221475482e-05
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9cb0>
salience        : 8.547463221475482e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9da0>
salience        : 8.526562305632979e-05
wikipedia_url   : -
====================
name            : think
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9e40>
salience        : 8.52551675052382e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9f30>
salience        : 8.521787822246552e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d080>
salience        : 8.500753756379709e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d170>
salience        : 8.4961015090812e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d210>
salience        : 8.474406058667228e-05
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d300>
salience        : 8.471582259517163e-05
wikipedia_url   : -
====================
name            : handful installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d350>
salience        : 8.442311809631065e-05
wikipedia_url   : -
====================
name            : shopping guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d3f0>
salience        : 8.424143743468449e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d4e0>
salience        : 8.41912769828923e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d580>
salience        : 8.40275315567851e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d670>
salience        : 8.386150875594467e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d710>
salience        : 8.353068551514298e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d760>
salience        : 8.353068551514298e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d7b0>
salience        : 8.34719103295356e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d850>
salience        : 8.340177737409249e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d8f0>
salience        : 8.336367318406701e-05
wikipedia_url   : -
====================
name            : check lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d990>
salience        : 8.336367318406701e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d9e0>
salience        : 8.331359276780859e-05
wikipedia_url   : -
====================
name            : aichoketrust legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9da30>
salience        : 8.328088733833283e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9da80>
salience        : 8.326587703777477e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9db20>
salience        : 8.322030771523714e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9db70>
salience        : 8.322030771523714e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dbc0>
salience        : 8.322030771523714e-05
wikipedia_url   : -
====================
name            : night lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dc60>
salience        : 8.313489524880424e-05
wikipedia_url   : -
====================
name            : residents
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dd50>
salience        : 8.309887925861403e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dda0>
salience        : 8.309474651468918e-05
wikipedia_url   : -
====================
name            : victoriabid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9de90>
salience        : 8.304161747219041e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9df30>
salience        : 8.301894558826461e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9df80>
salience        : 8.301894558826461e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d080>
salience        : 8.301894558826461e-05
wikipedia_url   : -
====================
name            : check lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d120>
salience        : 8.298307511722669e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d170>
salience        : 8.298307511722669e-05
wikipedia_url   : -
====================
name            : amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d210>
salience        : 8.294843428302556e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d2b0>
salience        : 8.294843428302556e-05
wikipedia_url   : -
====================
name            : amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d350>
salience        : 8.294843428302556e-05
wikipedia_url   : -
====================
name            : amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d3f0>
salience        : 8.294843428302556e-05
wikipedia_url   : -
====================
name            : sound amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d440>
salience        : 8.294843428302556e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d490>
salience        : 8.291495032608509e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d4e0>
salience        : 8.291495032608509e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d580>
salience        : 8.28825359349139e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d5d0>
salience        : 8.28825359349139e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d670>
salience        : 8.276679000118747e-05
wikipedia_url   : -
====================
name            : regent street check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d6c0>
salience        : 8.248549420386553e-05
wikipedia_url   : -
====================
name            : world
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d710>
salience        : 8.221692405641079e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d800>
salience        : 8.214192348532379e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d8a0>
salience        : 8.172392699634656e-05
wikipedia_url   : -
====================
name            : spell stpancrasint planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d8f0>
salience        : 8.122133294818923e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d940>
salience        : 8.090637857094407e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d990>
salience        : 8.081676787696779e-05
wikipedia_url   : -
====================
name            : stewards
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1da80>
salience        : 8.019858069019392e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1db20>
salience        : 8.012982289073989e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dbc0>
salience        : 7.956555782584473e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dc10>
salience        : 7.952713349368423e-05
wikipedia_url   : -
====================
name            : check promenade south park
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dcb0>
salience        : 7.916954200481996e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dd50>
salience        : 7.908207044238225e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ddf0>
salience        : 7.908207044238225e-05
wikipedia_url   : -
====================
name            : instillations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1de90>
salience        : 7.896927854744717e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1df30>
salience        : 7.894131704233587e-05
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8030>
salience        : 7.893941074144095e-05
wikipedia_url   : -
====================
name            : pa neon sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8080>
salience        : 7.878057658672333e-05
wikipedia_url   : -
====================
name            : pa neon sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db80d0>
salience        : 7.871798152336851e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8170>
salience        : 7.867304520914331e-05
wikipedia_url   : -
====================
name            : tuesdaythoughts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db81c0>
salience        : 7.846068911021575e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si è conclusa ed è stata semplicemente meravigliosa ecco alcune foto di leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8260>
salience        : 7.821863982826471e-05
wikipedia_url   : -
====================
name            : human biology
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8300>
salience        : 7.816474681021646e-05
wikipedia_url   : -
====================
name            : frogs amp toad
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8350>
salience        : 7.816474681021646e-05
wikipedia_url   : -
====================
name            : freedom panorama
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83a0>
salience        : 7.816474681021646e-05
wikipedia_url   : -
====================
name            : shitshow
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8440>
salience        : 7.816474681021646e-05
wikipedia_url   : -
====================
name            : aist daan roosegaarde
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db84e0>
salience        : 7.803994958521798e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8530>
salience        : 7.796330464771017e-05
wikipedia_url   : -
====================
name            : check promenade south park
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db85d0>
salience        : 7.76157685322687e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8620>
salience        : 7.742268644506112e-05
wikipedia_url   : -
====================
name            : park
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db86c0>
salience        : 7.724334136582911e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8710>
salience        : 7.714016828685999e-05
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8760>
salience        : 7.705643656663597e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8800>
salience        : 7.704009476583451e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88a0>
salience        : 7.697518594795838e-05
wikipedia_url   : -
====================
name            : redbridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8990>
salience        : 7.672298670513555e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Redbridge
====================
name            : londongramer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a80>
salience        : 7.654989167349413e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b20>
salience        : 7.619177631568164e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b70>
salience        : 7.594149064971134e-05
wikipedia_url   : -
====================
name            : violets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c10>
salience        : 7.593997725052759e-05
wikipedia_url   : -
====================
name            : windows
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8cb0>
salience        : 7.5752024713438e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d50>
salience        : 7.561121310573071e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8da0>
salience        : 7.554829790024087e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e90>
salience        : 7.537469355156645e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f30>
salience        : 7.483390800189227e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86030>
salience        : 7.473146979464218e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e860d0>
salience        : 7.459666085196659e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86120>
salience        : 7.451677083736286e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e861c0>
salience        : 7.444334914907813e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86210>
salience        : 7.437543536070734e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86260>
salience        : 7.437543536070734e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86300>
salience        : 7.43432974559255e-05
wikipedia_url   : -
====================
name            : light show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e863f0>
salience        : 7.433823338942602e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86440>
salience        : 7.433588325511664e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e864e0>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86530>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e865d0>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86620>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e866c0>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86710>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e867b0>
salience        : 7.4312265496701e-05
wikipedia_url   : -
====================
name            : south bank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86800>
salience        : 7.428225944750011e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86850>
salience        : 7.42592237656936e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e868f0>
salience        : 7.42532211006619e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86990>
salience        : 7.42532211006619e-05
wikipedia_url   : -
====================
name            : gin cocktails
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86a80>
salience        : 7.372828986262903e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86b20>
salience        : 7.362983888015151e-05
wikipedia_url   : -
====================
name            : wabbey lumierelondon2018 visitlondon jakubkrupa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86b70>
salience        : 7.344094046857208e-05
wikipedia_url   : -
====================
name            : visitlondon visitgreatbritain travelgram brandgreatbritain thelondonguidee
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86c10>
salience        : 7.341568561969325e-05
wikipedia_url   : -
====================
name            : shots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86c60>
salience        : 7.336104317801073e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86d00>
salience        : 7.319268479477614e-05
wikipedia_url   : -
====================
name            : catch shots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86da0>
salience        : 7.310158252948895e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86e40>
salience        : 7.310158252948895e-05
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86e90>
salience        : 7.303149322979152e-05
wikipedia_url   : -
====================
name            : lumierelondon fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86ee0>
salience        : 7.290096255019307e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40030>
salience        : 7.281544094439596e-05
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40080>
salience        : 7.259949779836461e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a400d0>
salience        : 7.259949779836461e-05
wikipedia_url   : -
====================
name            : veigo visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40170>
salience        : 7.242170249810442e-05
wikipedia_url   : -
====================
name            : lumiere visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40210>
salience        : 7.225926674436778e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40300>
salience        : 7.212221680674702e-05
wikipedia_url   : -
====================
name            : amp community
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403f0>
salience        : 7.211240153992549e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63080>
salience        : 7.195065700216219e-05
wikipedia_url   : -
====================
name            : jopocock nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63120>
salience        : 7.186246511992067e-05
wikipedia_url   : -
====================
name            : look
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a631c0>
salience        : 7.177283259807155e-05
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a632b0>
salience        : 7.143907714635134e-05
wikipedia_url   : -
====================
name            : canon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63490>
salience        : 7.143907714635134e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63620>
salience        : 7.141689275158569e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a636c0>
salience        : 7.11017637513578e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a637b0>
salience        : 7.108723366400227e-05
wikipedia_url   : -
====================
name            : worry head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63940>
salience        : 7.083182572387159e-05
wikipedia_url   : -
====================
name            : canon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63a30>
salience        : 7.083182572387159e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63b20>
salience        : 7.036744500510395e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63cb0>
salience        : 7.027843093965203e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63df0>
salience        : 7.018729957053438e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63f80>
salience        : 7.014513539616019e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f120>
salience        : 7.010495755821466e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f2b0>
salience        : 7.006659143371508e-05
wikipedia_url   : -
====================
name            : areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f3f0>
salience        : 7.003699283814058e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f530>
salience        : 6.999467586865649e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f670>
salience        : 6.999467586865649e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f7b0>
salience        : 6.996087176958099e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f8f0>
salience        : 6.992836279096082e-05
wikipedia_url   : -
====================
name            : fitzrovia area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fa30>
salience        : 6.987990491325036e-05
wikipedia_url   : -
====================
name            : circus visit website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fad0>
salience        : 6.987813685555011e-05
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fc60>
salience        : 6.987813685555011e-05
wikipedia_url   : -
====================
name            : weekend festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fe40>
salience        : 6.985137588344514e-05
wikipedia_url   : -
====================
name            : aichoketrust amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9ff80>
salience        : 6.964720523683354e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76030>
salience        : 6.964720523683354e-05
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76210>
salience        : 6.956550350878388e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e762b0>
salience        : 6.952742842258886e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76350>
salience        : 6.952742842258886e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76490>
salience        : 6.952742842258886e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76530>
salience        : 6.942252366570756e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76670>
salience        : 6.939236482139677e-05
wikipedia_url   : -
====================
name            : amp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e767b0>
salience        : 6.93591937306337e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76850>
salience        : 6.932922406122088e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76a30>
salience        : 6.930133531568572e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76b20>
salience        : 6.927230424480513e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76bc0>
salience        : 6.927230424480513e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76c60>
salience        : 6.927230424480513e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76d00>
salience        : 6.927230424480513e-05
wikipedia_url   : -
====================
name            : purple rain amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76da0>
salience        : 6.924522313056514e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76ee0>
salience        : 6.918319559190422e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76a80>
salience        : 6.880988803459331e-05
wikipedia_url   : -
====================
name            : evening lots
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84350>
salience        : 6.8633773480542e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84490>
salience        : 6.8633773480542e-05
wikipedia_url   : -
====================
name            : video website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84760>
salience        : 6.850668432889506e-05
wikipedia_url   : -
====================
name            : instagram sneequaye london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84bc0>
salience        : 6.833217048551887e-05
wikipedia_url   : -
====================
name            : lightinstallation landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84c60>
salience        : 6.82394384057261e-05
wikipedia_url   : -
====================
name            : visitlondon dot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84e40>
salience        : 6.811127968830988e-05
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e735d0>
salience        : 6.80423472658731e-05
wikipedia_url   : -
====================
name            : flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73850>
salience        : 6.789952021790668e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73cb0>
salience        : 6.772725464543328e-05
wikipedia_url   : -
====================
name            : photos festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73e90>
salience        : 6.73176473355852e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92490>
salience        : 6.727283471263945e-05
wikipedia_url   : -
====================
name            : qpark_uk light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92530>
salience        : 6.718996883137152e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92710>
salience        : 6.718996883137152e-05
wikipedia_url   : -
====================
name            : chinese lantern festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92ad0>
salience        : 6.718996883137152e-05
wikipedia_url   : -
====================
name            : lighting festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92c10>
salience        : 6.718996883137152e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92ee0>
salience        : 6.718996883137152e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967bc0>
salience        : 6.715147901559249e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29260>
salience        : 6.707955617457628e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e298a0>
salience        : 6.707955617457628e-05
wikipedia_url   : -
====================
name            : blog post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4300>
salience        : 6.698700599372387e-05
wikipedia_url   : -
====================
name            : blog post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4d00>
salience        : 6.698700599372387e-05
wikipedia_url   : -
====================
name            : henley festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd080>
salience        : 6.695232877973467e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd670>
salience        : 6.695232877973467e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddc10>
salience        : 6.695232877973467e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddf30>
salience        : 6.692339957226068e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70850>
salience        : 6.692339957226068e-05
wikipedia_url   : -
====================
name            : la la land
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70ad0>
salience        : 6.690013833576813e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70c60>
salience        : 6.689545989502221e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70e40>
salience        : 6.689545989502221e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70350>
salience        : 6.686845154035836e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a705d0>
salience        : 6.686845154035836e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68120>
salience        : 6.662348459940404e-05
wikipedia_url   : -
====================
name            : sounds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68440>
salience        : 6.651264266110957e-05
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68670>
salience        : 6.651264266110957e-05
wikipedia_url   : -
====================
name            : order prints
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68940>
salience        : 6.651264266110957e-05
wikipedia_url   : -
====================
name            : cou use
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68bc0>
salience        : 6.618133193114772e-05
wikipedia_url   : -
====================
name            : centre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68e90>
salience        : 6.617612234549597e-05
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba850>
salience        : 6.594725709874183e-05
wikipedia_url   : -
====================
name            : amp space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba210>
salience        : 6.561876216437668e-05
wikipedia_url   : -
====================
name            : flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba580>
salience        : 6.543657946167514e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbad50>
salience        : 6.538668094435707e-05
wikipedia_url   : -
====================
name            : check promenade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaf80>
salience        : 6.538668094435707e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80850>
salience        : 6.538668094435707e-05
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a808a0>
salience        : 6.538668094435707e-05
wikipedia_url   : -
====================
name            : ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a809e0>
salience        : 6.538668094435707e-05
wikipedia_url   : -
====================
name            : kids
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80ad0>
salience        : 6.535153806908056e-05
wikipedia_url   : -
====================
name            : justice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80cb0>
salience        : 6.52918970445171e-05
wikipedia_url   : -
====================
name            : love london lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80f30>
salience        : 6.520939496112987e-05
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80300>
salience        : 6.517965084640309e-05
wikipedia_url   : -
====================
name            : producer director cameraman promo coaching music video london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80580>
salience        : 6.517965084640309e-05
wikipedia_url   : -
====================
name            : lumierelondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad1c0>
salience        : 6.51651862426661e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad490>
salience        : 6.515098357340321e-05
wikipedia_url   : -
====================
name            : doorways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad670>
salience        : 6.514555570902303e-05
wikipedia_url   : -
====================
name            : subject methinks london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad7b0>
salience        : 6.512332038255408e-05
wikipedia_url   : -
====================
name            : evening london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad8a0>
salience        : 6.5109838033095e-05
wikipedia_url   : -
====================
name            : candy floss candyfloss london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad9e0>
salience        : 6.5109838033095e-05
wikipedia_url   : -
====================
name            : work light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadb20>
salience        : 6.507118814624846e-05
wikipedia_url   : -
====================
name            : streets london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadc10>
salience        : 6.507072976091877e-05
wikipedia_url   : -
====================
name            : success aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadc60>
salience        : 6.49449648335576e-05
wikipedia_url   : -
====================
name            : montage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadd50>
salience        : 6.49375724606216e-05
wikipedia_url   : -
====================
name            : london lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadee0>
salience        : 6.48986897431314e-05
wikipedia_url   : -
====================
name            : mickfusion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9080>
salience        : 6.488242070190609e-05
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40530>
salience        : 6.48127097520046e-05
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a405d0>
salience        : 6.467567436629906e-05
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40670>
salience        : 6.467567436629906e-05
wikipedia_url   : -
====================
name            : producer director cameraman promo coaching music video london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40710>
salience        : 6.463483441621065e-05
wikipedia_url   : -
====================
name            : video lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40760>
salience        : 6.459600263042375e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40850>
salience        : 6.456461414927617e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a408f0>
salience        : 6.452778325183317e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40990>
salience        : 6.446891347877681e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a30>
salience        : 6.441415462177247e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ad0>
salience        : 6.414420204237103e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b20>
salience        : 6.390213093254715e-05
wikipedia_url   : -
====================
name            : parking event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40bc0>
salience        : 6.373604264808819e-05
wikipedia_url   : -
====================
name            : performance event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c10>
salience        : 6.373604264808819e-05
wikipedia_url   : -
====================
name            : rates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c60>
salience        : 6.368164758896455e-05
wikipedia_url   : -
====================
name            : lighting london londonisopen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d00>
salience        : 6.36377080809325e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40df0>
salience        : 6.359000690281391e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e90>
salience        : 6.359000690281391e-05
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f80>
salience        : 6.341548578348011e-05
wikipedia_url   : -
====================
name            : waterloo
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b0d0>
salience        : 6.323990965029225e-05
wikipedia_url   : https://fr.wikipedia.org/wiki/Waterloo_Place
====================
name            : video amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b1c0>
salience        : 6.303568807197735e-05
wikipedia_url   : -
====================
name            : bottom
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b260>
salience        : 6.300731911323965e-05
wikipedia_url   : -
====================
name            : mickfusion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b300>
salience        : 6.254037725739181e-05
wikipedia_url   : -
====================
name            : colours rainbow amp
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b3a0>
salience        : 6.246467091841623e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b440>
salience        : 6.236114859348163e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b4e0>
salience        : 6.234047032194212e-05
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b5d0>
salience        : 6.21449071331881e-05
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b6c0>
salience        : 6.16729084867984e-05
wikipedia_url   : -
====================
name            : saints
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b7b0>
salience        : 6.162616773508489e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b8a0>
salience        : 6.145546649349853e-05
wikipedia_url   : -
====================
name            : extravaganza magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b8f0>
salience        : 6.143713108031079e-05
wikipedia_url   : -
====================
name            : mvpicsss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b9e0>
salience        : 6.142771599115804e-05
wikipedia_url   : -
====================
name            : valeria_amodeo biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9ba30>
salience        : 6.142351048765704e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9ba80>
salience        : 6.137132731964812e-05
wikipedia_url   : -
====================
name            : extravaganza magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bad0>
salience        : 6.131085683591664e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bb70>
salience        : 6.12549192737788e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bc60>
salience        : 6.115426367614418e-05
wikipedia_url   : -
====================
name            : story
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bcb0>
salience        : 6.113982817623764e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bd50>
salience        : 6.110576941864565e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bdf0>
salience        : 6.088106965762563e-05
wikipedia_url   : -
====================
name            : prank calls lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9be40>
salience        : 6.041204687790014e-05
wikipedia_url   : -
====================
name            : festival public
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bee0>
salience        : 5.997853440931067e-05
wikipedia_url   : -
====================
name            : violence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bf80>
salience        : 5.9730497014243156e-05
wikipedia_url   : -
====================
name            : londonwhispers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e080>
salience        : 5.968428376945667e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e170>
salience        : 5.967288961983286e-05
wikipedia_url   : -
====================
name            : camillachild london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e210>
salience        : 5.963973671896383e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e260>
salience        : 5.962901559541933e-05
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e350>
salience        : 5.9608035371638834e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e440>
salience        : 5.959776899544522e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e530>
salience        : 5.959776899544522e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e580>
salience        : 5.956781023996882e-05
wikipedia_url   : -
====================
name            : installation light spirit london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e5d0>
salience        : 5.956781023996882e-05
wikipedia_url   : -
====================
name            : lighting london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e620>
salience        : 5.954850712441839e-05
wikipedia_url   : -
====================
name            : installation light spirit london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e6c0>
salience        : 5.954850712441839e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e760>
salience        : 5.953904474154115e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e800>
salience        : 5.953904474154115e-05
wikipedia_url   : -
====================
name            : installation light spirit london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e850>
salience        : 5.9529702411964536e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e940>
salience        : 5.952048013568856e-05
wikipedia_url   : -
====================
name            : installation light spirit london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e990>
salience        : 5.952048013568856e-05
wikipedia_url   : -
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e9e0>
salience        : 5.9468682593433186e-05
wikipedia_url   : -
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ea30>
salience        : 5.9468682593433186e-05
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3eb20>
salience        : 5.939891707384959e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3eb70>
salience        : 5.9276833781041205e-05
wikipedia_url   : -
====================
name            : piccadilly circus
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ec10>
salience        : 5.9190584579482675e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly_Circus
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ec60>
salience        : 5.917245289310813e-05
wikipedia_url   : -
====================
name            : human interaction
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ecb0>
salience        : 5.9125435655005276e-05
wikipedia_url   : -
====================
name            : human interaction
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ed00>
salience        : 5.9125435655005276e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ed50>
salience        : 5.9095742471981794e-05
wikipedia_url   : -
====================
name            : video electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3eda0>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : video electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3edf0>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : front
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ee40>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : front
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ee90>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : video electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3eee0>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : video electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ef30>
salience        : 5.841399251949042e-05
wikipedia_url   : -
====================
name            : director
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98080>
salience        : 5.838119614054449e-05
wikipedia_url   : -
====================
name            : thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98170>
salience        : 5.8123016060562804e-05
wikipedia_url   : -
====================
name            : dismantling thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98210>
salience        : 5.8123016060562804e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98300>
salience        : 5.8123016060562804e-05
wikipedia_url   : -
====================
name            : priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a983a0>
salience        : 5.7964549341704696e-05
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98440>
salience        : 5.795671313535422e-05
wikipedia_url   : -
====================
name            : wildlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a984e0>
salience        : 5.7628934882814065e-05
wikipedia_url   : -
====================
name            : conditions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98580>
salience        : 5.7467255828669295e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98620>
salience        : 5.744572990806773e-05
wikipedia_url   : -
====================
name            : field lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a986c0>
salience        : 5.7404518884141e-05
wikipedia_url   : -
====================
name            : nursecommunity lumiere lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98760>
salience        : 5.739130574511364e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98850>
salience        : 5.7365607062820345e-05
wikipedia_url   : -
====================
name            : neon lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a988f0>
salience        : 5.735310332966037e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98990>
salience        : 5.734081787522882e-05
wikipedia_url   : -
====================
name            : london lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98a30>
salience        : 5.731687997467816e-05
wikipedia_url   : -
====================
name            : lights darkness visitlondon london london lumiere
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98ad0>
salience        : 5.729373879148625e-05
wikipedia_url   : -
====================
name            : londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98b70>
salience        : 5.7228771765949205e-05
wikipedia_url   : -
====================
name            : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature westminsterabbey london londonlife lovelondon londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98c10>
salience        : 5.7228771765949205e-05
wikipedia_url   : -
====================
name            : lumierelondon londontheinside
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98c60>
salience        : 5.7150427892338485e-05
wikipedia_url   : -
====================
name            : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98d00>
salience        : 5.7080025726463646e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98da0>
salience        : 5.7030676543945447e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98e90>
salience        : 5.699236862710677e-05
wikipedia_url   : -
====================
name            : presenter freelancer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98ee0>
salience        : 5.698223685612902e-05
wikipedia_url   : -
====================
name            : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98f80>
salience        : 5.695758591173217e-05
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist london ldn londoneye
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51080>
salience        : 5.695758591173217e-05
wikipedia_url   : -
====================
name            : thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51170>
salience        : 5.6936962209874764e-05
wikipedia_url   : -
====================
name            : electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a511c0>
salience        : 5.6936962209874764e-05
wikipedia_url   : -
====================
name            : lumierelondon londonlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51210>
salience        : 5.6930079153971747e-05
wikipedia_url   : -
====================
name            : installation lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51260>
salience        : 5.688141391146928e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51350>
salience        : 5.686453732778318e-05
wikipedia_url   : -
====================
name            : adventuresofjellie jellie lumiere granarysquare kingscross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a513f0>
salience        : 5.682983100996353e-05
wikipedia_url   : -
====================
name            : lumiere adventuresofjellie jellie lumiere granarysquare kingscross london lumiere adventuresofjellie jellie lumiere granarysquare kingscross london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51490>
salience        : 5.680688263964839e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51530>
salience        : 5.6784676417009905e-05
wikipedia_url   : -
====================
name            : photograph fish phone box badger lumierelondon
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a515d0>
salience        : 5.6771092204144225e-05
wikipedia_url   : -
====================
name            : expectations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51670>
salience        : 5.657404472003691e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a516c0>
salience        : 5.621536911348812e-05
wikipedia_url   : -
====================
name            : southbank lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51710>
salience        : 5.621536911348812e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a517b0>
salience        : 5.620266529149376e-05
wikipedia_url   : -
====================
name            : selfie hatmanoflondon wave pa lighting
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51850>
salience        : 5.620266529149376e-05
wikipedia_url   : -
====================
name            : southbank lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a518a0>
salience        : 5.620266529149376e-05
wikipedia_url   : -
====================
name            : image lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51940>
salience        : 5.619019430014305e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51990>
salience        : 5.619019430014305e-05
wikipedia_url   : -
====================
name            : estates
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51a80>
salience        : 5.6185348512372e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51b20>
salience        : 5.6165918067563325e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51b70>
salience        : 5.6165918067563325e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51c10>
salience        : 5.615409099846147e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51cb0>
salience        : 5.615409099846147e-05
wikipedia_url   : -
====================
name            : spirit festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51d00>
salience        : 5.615409099846147e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51da0>
salience        : 5.614247129415162e-05
wikipedia_url   : -
====================
name            : lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51e40>
salience        : 5.613104076473974e-05
wikipedia_url   : -
====================
name            : neon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51ee0>
salience        : 5.611980304820463e-05
wikipedia_url   : -
====================
name            : nohern lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51f80>
salience        : 5.611980304820463e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae080>
salience        : 5.611980304820463e-05
wikipedia_url   : -
====================
name            : mattcooperphoto letsyogalondon regram southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae120>
salience        : 5.6070952268783e-05
wikipedia_url   : -
====================
name            : night aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae1c0>
salience        : 5.599356154561974e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae2b0>
salience        : 5.596888513537124e-05
wikipedia_url   : -
====================
name            : aichoketrust timeouta londongramer timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae350>
salience        : 5.587263876805082e-05
wikipedia_url   : -
====================
name            : blue light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae3f0>
salience        : 5.5865075410110876e-05
wikipedia_url   : -
====================
name            : blue light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae490>
salience        : 5.5865075410110876e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae530>
salience        : 5.582460653386079e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae580>
salience        : 5.582460653386079e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae670>
salience        : 5.581652658293024e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae760>
salience        : 5.581652658293024e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae7b0>
salience        : 5.580524157267064e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae800>
salience        : 5.575025352300145e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae850>
salience        : 5.573287126026116e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae8a0>
salience        : 5.573287126026116e-05
wikipedia_url   : -
====================
name            : neon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae940>
salience        : 5.571592555497773e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae990>
salience        : 5.571592555497773e-05
wikipedia_url   : -
====================
name            : lightning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daea30>
salience        : 5.571592555497773e-05
wikipedia_url   : -
====================
name            : eye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daea80>
salience        : 5.569008499151096e-05
wikipedia_url   : -
====================
name            : southbank lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daead0>
salience        : 5.568325286731124e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d030>
salience        : 5.568325286731124e-05
wikipedia_url   : -
====================
name            : lightbulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d120>
salience        : 5.568325286731124e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d260>
salience        : 5.568325286731124e-05
wikipedia_url   : -
====================
name            : heaven light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d3a0>
salience        : 5.568325286731124e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d440>
salience        : 5.5667485867161304e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d490>
salience        : 5.562228398048319e-05
wikipedia_url   : -
====================
name            : poion lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d530>
salience        : 5.562228398048319e-05
wikipedia_url   : -
====================
name            : timeoutlondon gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d5d0>
salience        : 5.549311390495859e-05
wikipedia_url   : -
====================
name            : festival engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d6c0>
salience        : 5.5420354328816757e-05
wikipedia_url   : -
====================
name            : amp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d8a0>
salience        : 5.5291351600317284e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dad0>
salience        : 5.5291351600317284e-05
wikipedia_url   : -
====================
name            : barkingsideac
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dcb0>
salience        : 5.494162905961275e-05
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dd00>
salience        : 5.494162905961275e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9ddf0>
salience        : 5.484756184159778e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dee0>
salience        : 5.4830470617162064e-05
wikipedia_url   : -
====================
name            : polychrome
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d0d0>
salience        : 5.480600884766318e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d300>
salience        : 5.474730642163195e-05
wikipedia_url   : -
====================
name            : barkingsideac
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d530>
salience        : 5.474730642163195e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d7b0>
salience        : 5.474730642163195e-05
wikipedia_url   : -
====================
name            : fill light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d9e0>
salience        : 5.4702039051335305e-05
wikipedia_url   : -
====================
name            : round
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1da30>
salience        : 5.469336247188039e-05
wikipedia_url   : -
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dad0>
salience        : 5.464346395456232e-05
wikipedia_url   : -
====================
name            : river quality
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dc60>
salience        : 5.462670742417686e-05
wikipedia_url   : -
====================
name            : repoer presenter freelancer repo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dd00>
salience        : 5.4597050620941445e-05
wikipedia_url   : -
====================
name            : repo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dda0>
salience        : 5.4597050620941445e-05
wikipedia_url   : -
====================
name            : buses cars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1dee0>
salience        : 5.4553671361645684e-05
wikipedia_url   : -
====================
name            : gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1df80>
salience        : 5.4553671361645684e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8210>
salience        : 5.414953193394467e-05
wikipedia_url   : -
====================
name            : lumierelondon launches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db82b0>
salience        : 5.3751293307868764e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83f0>
salience        : 5.367443009163253e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8490>
salience        : 5.3552448662230745e-05
wikipedia_url   : -
====================
name            : bloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db87b0>
salience        : 5.345035970094614e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Bloomberg_L.P.
====================
name            : chill zone
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88f0>
salience        : 5.306795355863869e-05
wikipedia_url   : -
====================
name            : case study events management
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8940>
salience        : 5.300782140693627e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db89e0>
salience        : 5.28336749994196e-05
wikipedia_url   : -
====================
name            : solidarity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ad0>
salience        : 5.28203381691128e-05
wikipedia_url   : -
====================
name            : pancras ipa thebetjemanarms suzystories
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c60>
salience        : 5.28203381691128e-05
wikipedia_url   : -
====================
name            : flickr
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8df0>
salience        : 5.277778109302744e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Flickr
====================
name            : facebook page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ee0>
salience        : 5.272555790725164e-05
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86170>
salience        : 5.2697094361064956e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e862b0>
salience        : 5.268604218144901e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e863a0>
salience        : 5.267537198960781e-05
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86490>
salience        : 5.267537198960781e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86670>
salience        : 5.267537198960781e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86940>
salience        : 5.2557217713911086e-05
wikipedia_url   : -
====================
name            : applause lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86a30>
salience        : 5.251097900327295e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86cb0>
salience        : 5.251097900327295e-05
wikipedia_url   : -
====================
name            : bum lumierefestival
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86df0>
salience        : 5.251097900327295e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86f80>
salience        : 5.250139656709507e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63300>
salience        : 5.2491959650069475e-05
wikipedia_url   : -
====================
name            : aichoketrust lumieredub
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63760>
salience        : 5.246444925433025e-05
wikipedia_url   : -
====================
name            : solidarity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63990>
salience        : 5.245752981863916e-05
wikipedia_url   : -
====================
name            : solidarity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63bc0>
salience        : 5.245752981863916e-05
wikipedia_url   : -
====================
name            : survivors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f080>
salience        : 5.245752981863916e-05
wikipedia_url   : -
====================
name            : survivors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f490>
salience        : 5.245752981863916e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f850>
salience        : 5.2446750487433746e-05
wikipedia_url   : -
====================
name            : london lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fbc0>
salience        : 5.2446750487433746e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76170>
salience        : 5.242952465778217e-05
wikipedia_url   : -
====================
name            : julian crowe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76710>
salience        : 5.2202587539795786e-05
wikipedia_url   : -
====================
name            : solidarity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76990>
salience        : 5.2059098379686475e-05
wikipedia_url   : -
====================
name            : engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84120>
salience        : 5.2059098379686475e-05
wikipedia_url   : -
====================
name            : solidarity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a846c0>
salience        : 5.2059098379686475e-05
wikipedia_url   : -
====================
name            : cocktail privacy cub room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73030>
salience        : 5.201160456635989e-05
wikipedia_url   : -
====================
name            : case study events management
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73710>
salience        : 5.196742495172657e-05
wikipedia_url   : -
====================
name            : poland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92d50>
salience        : 5.189178773434833e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Poland_Street
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987120>
salience        : 5.183439498068765e-05
wikipedia_url   : -
====================
name            : rambedance couauldgall davidward aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e294e0>
salience        : 5.1774142775684595e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e29e40>
salience        : 5.17492153448984e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc45d0>
salience        : 5.157283158041537e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc48a0>
salience        : 5.146405237610452e-05
wikipedia_url   : -
====================
name            : blue light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd7b0>
salience        : 5.1454226195346564e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dddda0>
salience        : 5.1454226195346564e-05
wikipedia_url   : -
====================
name            : sound amp light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a707b0>
salience        : 5.144455280969851e-05
wikipedia_url   : -
====================
name            : lights darkness light light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70990>
salience        : 5.144455280969851e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70bc0>
salience        : 5.144455280969851e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a701c0>
salience        : 5.144455280969851e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a703f0>
salience        : 5.144455280969851e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a681c0>
salience        : 5.1435024943202734e-05
wikipedia_url   : -
====================
name            : festival lights lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a684e0>
salience        : 5.1425642595859244e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68710>
salience        : 5.141639485373162e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68ad0>
salience        : 5.141639485373162e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68d00>
salience        : 5.141639485373162e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a68f30>
salience        : 5.1407580031082034e-05
wikipedia_url   : -
====================
name            : lighta gavriiluxwarm light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba0d0>
salience        : 5.140728535479866e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba8f0>
salience        : 5.139830318512395e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbaa30>
salience        : 5.139830318512395e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80710>
salience        : 5.139830318512395e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a807b0>
salience        : 5.1389451982686296e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80990>
salience        : 5.1389451982686296e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80c10>
salience        : 5.1389451982686296e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80e90>
salience        : 5.1380720833549276e-05
wikipedia_url   : -
====================
name            : venture question lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a800d0>
salience        : 5.13721133756917e-05
wikipedia_url   : -
====================
name            : venture question lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80210>
salience        : 5.13721133756917e-05
wikipedia_url   : -
====================
name            : miss lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad0d0>
salience        : 5.13721133756917e-05
wikipedia_url   : -
====================
name            : mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon thedroidlife ray catcher
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad3f0>
salience        : 5.1359158533159643e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad5d0>
salience        : 5.134697494213469e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad710>
salience        : 5.1330760470591486e-05
wikipedia_url   : -
====================
name            : lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad940>
salience        : 5.1330760470591486e-05
wikipedia_url   : -
====================
name            : lumierelondon lighting lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dada80>
salience        : 5.132280784891918e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadb70>
salience        : 5.132280784891918e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daddf0>
salience        : 5.124398376210593e-05
wikipedia_url   : -
====================
name            : names
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadf80>
salience        : 5.0683695008046925e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9210>
salience        : 5.063130083726719e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de92b0>
salience        : 5.039759707869962e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de93f0>
salience        : 5.039759707869962e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de94e0>
salience        : 5.039759707869962e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de95d0>
salience        : 5.038554809289053e-05
wikipedia_url   : -
====================
name            : amp installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de97b0>
salience        : 5.038554809289053e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9940>
salience        : 5.037372829974629e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9a80>
salience        : 5.037372829974629e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9bc0>
salience        : 5.037372829974629e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9d00>
salience        : 5.036213042330928e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9df0>
salience        : 5.036213042330928e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9ee0>
salience        : 5.036213042330928e-05
wikipedia_url   : -
====================
name            : kingscross installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9f80>
salience        : 5.036213042330928e-05
wikipedia_url   : -
====================
name            : jokes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9120>
salience        : 5.036127186031081e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a401c0>
salience        : 5.03507508256007e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a402b0>
salience        : 5.03507508256007e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403a0>
salience        : 5.03507508256007e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40490>
salience        : 5.034780042478815e-05
wikipedia_url   : -
====================
name            : sound installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a404e0>
salience        : 5.032860644860193e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daeb20>
salience        : 5.032860644860193e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daebc0>
salience        : 5.032860644860193e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daec60>
salience        : 5.032860644860193e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daed00>
salience        : 5.031782711739652e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daeda0>
salience        : 5.031782711739652e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daedf0>
salience        : 5.030723332311027e-05
wikipedia_url   : -
====================
name            : amp installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daee90>
salience        : 5.030723332311027e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daeee0>
salience        : 5.030723332311027e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daef80>
salience        : 5.029682142776437e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf080>
salience        : 5.029682142776437e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf120>
salience        : 5.0286584155401215e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf1c0>
salience        : 5.0276514230063185e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf260>
salience        : 5.025685823056847e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf2b0>
salience        : 5.025685823056847e-05
wikipedia_url   : -
====================
name            : londonlife sessions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf300>
salience        : 5.0251946959178895e-05
wikipedia_url   : -
====================
name            : selection photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf3a0>
salience        : 5.013783083995804e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf490>
salience        : 5.0106165872421116e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf4e0>
salience        : 5.004830745747313e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf530>
salience        : 5.004830745747313e-05
wikipedia_url   : -
====================
name            : umbrellas photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf5d0>
salience        : 5.004737977287732e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf670>
salience        : 5.002990656066686e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf710>
salience        : 5.002861507819034e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf800>
salience        : 5.001998943043873e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf8a0>
salience        : 5.0012047722702846e-05
wikipedia_url   : -
====================
name            : spirit chapter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf8f0>
salience        : 5.000162127544172e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf990>
salience        : 4.9994698201771826e-05
wikipedia_url   : -
====================
name            : print map list installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfa30>
salience        : 4.9945436330745e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfad0>
salience        : 4.993372203898616e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfb70>
salience        : 4.9929865781450644e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfc10>
salience        : 4.9929865781450644e-05
wikipedia_url   : -
====================
name            : lumierelondon city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfcb0>
salience        : 4.9905120249604806e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfd50>
salience        : 4.989987064618617e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfdf0>
salience        : 4.9885409680427983e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfe90>
salience        : 4.9885409680427983e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbff30>
salience        : 4.987128704669885e-05
wikipedia_url   : -
====================
name            : photograph
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29080>
salience        : 4.985656414646655e-05
wikipedia_url   : -
====================
name            : photograph
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29170>
salience        : 4.985656414646655e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29210>
salience        : 4.9843991291709244e-05
wikipedia_url   : -
====================
name            : sroosegaarde installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29260>
salience        : 4.9830792704597116e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29350>
salience        : 4.981695019523613e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a293f0>
salience        : 4.973560862708837e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29490>
salience        : 4.973560862708837e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29530>
salience        : 4.9714846682036296e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a295d0>
salience        : 4.9714846682036296e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29670>
salience        : 4.9694772314978763e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29710>
salience        : 4.9675345508148894e-05
wikipedia_url   : -
====================
name            : meetup
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a297b0>
salience        : 4.957657074555755e-05
wikipedia_url   : -
====================
name            : get
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29800>
salience        : 4.948253263137303e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29850>
salience        : 4.941645238432102e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a298f0>
salience        : 4.938524216413498e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29940>
salience        : 4.9355574446963146e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29990>
salience        : 4.932730371365324e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a299e0>
salience        : 4.9274469347437844e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29a30>
salience        : 4.9274469347437844e-05
wikipedia_url   : -
====================
name            : thesavoylondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29ad0>
salience        : 4.9265636334894225e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29b70>
salience        : 4.924970198771916e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29bc0>
salience        : 4.924970198771916e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29c10>
salience        : 4.92259168822784e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29cb0>
salience        : 4.92259168822784e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29d00>
salience        : 4.92259168822784e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29d50>
salience        : 4.916833495371975e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29df0>
salience        : 4.915975659969263e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29e40>
salience        : 4.915975659969263e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29e90>
salience        : 4.915975659969263e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29f30>
salience        : 4.915975659969263e-05
wikipedia_url   : -
====================
name            : simonmanleyfco que haya luz segunda edición del festival de
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24030>
salience        : 4.9139496695715934e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a240d0>
salience        : 4.910401185043156e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24170>
salience        : 4.897992039332166e-05
wikipedia_url   : -
====================
name            : roosegaarde kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a241c0>
salience        : 4.889012416242622e-05
wikipedia_url   : -
====================
name            : x ray vision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24260>
salience        : 4.8772970330901444e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24300>
salience        : 4.8761772632133216e-05
wikipedia_url   : -
====================
name            : rain visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a243a0>
salience        : 4.8743673687567934e-05
wikipedia_url   : -
====================
name            : nightlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24440>
salience        : 4.8628015065332875e-05
wikipedia_url   : -
====================
name            : eluminate2018
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a244e0>
salience        : 4.853441350860521e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24580>
salience        : 4.839895336772315e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24670>
salience        : 4.837402593693696e-05
wikipedia_url   : -
====================
name            : doorstep nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24710>
salience        : 4.833941056858748e-05
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24800>
salience        : 4.833385901292786e-05
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a248a0>
salience        : 4.8322155635105446e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24940>
salience        : 4.8310710553778335e-05
wikipedia_url   : -
====================
name            : visitlondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24990>
salience        : 4.821503534913063e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a249e0>
salience        : 4.8122939915629104e-05
wikipedia_url   : -
====================
name            : searcystpancras
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24a30>
salience        : 4.812183033209294e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24a80>
salience        : 4.8048372264020145e-05
wikipedia_url   : -
====================
name            : therose pedalpower petalpower lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24ad0>
salience        : 4.787401121575385e-05
wikipedia_url   : -
====================
name            : installation trafalgarsquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24b20>
salience        : 4.747545244754292e-05
wikipedia_url   : -
====================
name            : photograph fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24b70>
salience        : 4.7379089664900675e-05
wikipedia_url   : -
====================
name            : installation trafalgarsquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24bc0>
salience        : 4.736056871479377e-05
wikipedia_url   : -
====================
name            : installation trafalgarsquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24c10>
salience        : 4.734010508400388e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24c60>
salience        : 4.699833152699284e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24d00>
salience        : 4.699292912846431e-05
wikipedia_url   : -
====================
name            : weekend lumierelondon photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24da0>
salience        : 4.6961602492956445e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24df0>
salience        : 4.694422386819497e-05
wikipedia_url   : -
====================
name            : mischiefmovienight amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24e90>
salience        : 4.690435162046924e-05
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24f30>
salience        : 4.686708052759059e-05
wikipedia_url   : -
====================
name            : edgillwhl lumierelondon leicestersquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24f80>
salience        : 4.6848719648551196e-05
wikipedia_url   : -
====================
name            : lighting inspiration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81030>
salience        : 4.67863937956281e-05
wikipedia_url   : -
====================
name            : blue sky
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a810d0>
salience        : 4.67863937956281e-05
wikipedia_url   : -
====================
name            : balloons amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81170>
salience        : 4.667259781854227e-05
wikipedia_url   : -
====================
name            : cirquebijou streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81210>
salience        : 4.666918539442122e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81300>
salience        : 4.666918539442122e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a813a0>
salience        : 4.665543747250922e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a813f0>
salience        : 4.665543747250922e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81490>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81530>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a815d0>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81670>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81710>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a817b0>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81850>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : city mayorofldn amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a818f0>
salience        : 4.662260471377522e-05
wikipedia_url   : -
====================
name            : carnaby
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81990>
salience        : 4.662236460717395e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Carnaby_Street
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81a80>
salience        : 4.6621280489489436e-05
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81b70>
salience        : 4.660687409341335e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81c60>
salience        : 4.6598765038652346e-05
wikipedia_url   : -
====================
name            : amp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81d00>
salience        : 4.659156911657192e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81d50>
salience        : 4.659156911657192e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81df0>
salience        : 4.6536133595509455e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81e40>
salience        : 4.650751725421287e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81e90>
salience        : 4.650751725421287e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81ee0>
salience        : 4.6496053982991725e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81f30>
salience        : 4.649464608519338e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81f80>
salience        : 4.649464608519338e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc030>
salience        : 4.649464608519338e-05
wikipedia_url   : -
====================
name            : btpvolunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc120>
salience        : 4.638866812456399e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc1c0>
salience        : 4.6376106183743104e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc260>
salience        : 4.631448973668739e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc300>
salience        : 4.62504212919157e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc3a0>
salience        : 4.62504212919157e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dba3f0>
salience        : 4.62504212919157e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a406c0>
salience        : 4.622263440978713e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40800>
salience        : 4.622263440978713e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40940>
salience        : 4.619615720002912e-05
wikipedia_url   : -
====================
name            : lumierelondon latergram
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a409e0>
salience        : 4.6176424802979454e-05
wikipedia_url   : -
====================
name            : wikicommons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b70>
salience        : 4.6176424802979454e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Wikimedia_Commons
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d50>
salience        : 4.6150231355568394e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e40>
salience        : 4.6146677050273865e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f30>
salience        : 4.6096665755612776e-05
wikipedia_url   : -
====================
name            : child hood collectif coin favourite installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b030>
salience        : 4.6096665755612776e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b120>
salience        : 4.608800009009428e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b210>
salience        : 4.607946175383404e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b350>
salience        : 4.607003211276606e-05
wikipedia_url   : -
====================
name            : btpvolunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b530>
salience        : 4.607003211276606e-05
wikipedia_url   : -
====================
name            : btpvolunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b670>
salience        : 4.607003211276606e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b760>
salience        : 4.606277434504591e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b850>
salience        : 4.606277434504591e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b990>
salience        : 4.606277434504591e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bbc0>
salience        : 4.605914728017524e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bd00>
salience        : 4.6054610720602795e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9be90>
salience        : 4.604656351148151e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e030>
salience        : 4.603924389812164e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e0d0>
salience        : 4.60308110632468e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e1c0>
salience        : 4.602309854817577e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e300>
salience        : 4.602309854817577e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e3f0>
salience        : 4.601549153449014e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e4e0>
salience        : 4.600144166033715e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e710>
salience        : 4.600144166033715e-05
wikipedia_url   : -
====================
name            : cain_int badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e8a0>
salience        : 4.600144166033715e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ea80>
salience        : 4.600144166033715e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ebc0>
salience        : 4.600144166033715e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98030>
salience        : 4.5993267121957615e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98120>
salience        : 4.5993267121957615e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98260>
salience        : 4.5993267121957615e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98350>
salience        : 4.5983459131093696e-05
wikipedia_url   : -
====================
name            : londonlife dslr nightmoves 2
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98490>
salience        : 4.5882148697273806e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a985d0>
salience        : 4.5831187890144065e-05
wikipedia_url   : -
====================
name            : amp witchcraft
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98670>
salience        : 4.58142785646487e-05
wikipedia_url   : -
====================
name            : spoonsontrays
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98800>
salience        : 4.58142785646487e-05
wikipedia_url   : -
====================
name            : amp witchcraft
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a988a0>
salience        : 4.5720109483227134e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a989e0>
salience        : 4.571206227410585e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98b20>
salience        : 4.571206227410585e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98cb0>
salience        : 4.571206227410585e-05
wikipedia_url   : -
====================
name            : props
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98d50>
salience        : 4.567840005620383e-05
wikipedia_url   : -
====================
name            : playlondongame
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98df0>
salience        : 4.567840005620383e-05
wikipedia_url   : -
====================
name            : addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98f30>
salience        : 4.567840005620383e-05
wikipedia_url   : -
====================
name            : bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a510d0>
salience        : 4.567840005620383e-05
wikipedia_url   : -
====================
name            : beasts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a512b0>
salience        : 4.5657827286049724e-05
wikipedia_url   : -
====================
name            : decorations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a513a0>
salience        : 4.5639601012226194e-05
wikipedia_url   : -
====================
name            : creativity amp inspiration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51440>
salience        : 4.56033340014983e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51580>
salience        : 4.5367327402345836e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51620>
salience        : 4.535647894954309e-05
wikipedia_url   : -
====================
name            : timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon zebraprodunique
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51800>
salience        : 4.5330751163419336e-05
wikipedia_url   : -
====================
name            : fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a518f0>
salience        : 4.532122693490237e-05
wikipedia_url   : -
====================
name            : 50 aists justin_venn lumierelondon2018 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51a30>
salience        : 4.529884972725995e-05
wikipedia_url   : -
====================
name            : mayfair grosvenor_ldn grosvenor_gbi justin_venn lumierelondon2018 lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51bc0>
salience        : 4.529884972725995e-05
wikipedia_url   : -
====================
name            : chinatown pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51c60>
salience        : 4.529551733867265e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51d50>
salience        : 4.529551733867265e-05
wikipedia_url   : -
====================
name            : chinatown pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51df0>
salience        : 4.529551733867265e-05
wikipedia_url   : -
====================
name            : chinatown pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51e90>
salience        : 4.5285982196219265e-05
wikipedia_url   : -
====================
name            : chinatown pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51f30>
salience        : 4.5285982196219265e-05
wikipedia_url   : -
====================
name            : fairies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae0d0>
salience        : 4.527135388343595e-05
wikipedia_url   : -
====================
name            : festivals
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae210>
salience        : 4.5258326281327754e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae300>
salience        : 4.524940959527157e-05
wikipedia_url   : -
====================
name            : visitors city bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae3a0>
salience        : 4.524940959527157e-05
wikipedia_url   : -
====================
name            : mayoroflondon justin_venn lumierelondon2018 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae4e0>
salience        : 4.524010364548303e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae6c0>
salience        : 4.5146545744501054e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae8f0>
salience        : 4.508739584707655e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae9e0>
salience        : 4.500463910517283e-05
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d1c0>
salience        : 4.500345676206052e-05
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d2b0>
salience        : 4.498982889344916e-05
wikipedia_url   : -
====================
name            : londonlumiere london leceistersquare lumiere
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d800>
salience        : 4.4978973164688796e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dc10>
salience        : 4.4946275011170655e-05
wikipedia_url   : -
====================
name            : westminsterabbey light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9de40>
salience        : 4.4946275011170655e-05
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d1c0>
salience        : 4.4938446080777794e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d260>
salience        : 4.493260712479241e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d620>
salience        : 4.491927393246442e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d850>
salience        : 4.491077925194986e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1db70>
salience        : 4.490625724429265e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8120>
salience        : 4.489354250836186e-05
wikipedia_url   : -
====================
name            : eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8670>
salience        : 4.489352068048902e-05
wikipedia_url   : -
====================
name            : saints
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8bc0>
salience        : 4.486549732973799e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d00>
salience        : 4.4667187466984615e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e40>
salience        : 4.4667187466984615e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86080>
salience        : 4.465927122510038e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86760>
salience        : 4.465147139853798e-05
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86ad0>
salience        : 4.464378071133979e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86f30>
salience        : 4.463095683604479e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63210>
salience        : 4.462133802007884e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63530>
salience        : 4.462133802007884e-05
wikipedia_url   : -
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63a80>
salience        : 4.454755980987102e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63e90>
salience        : 4.454518420970999e-05
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f300>
salience        : 4.453905421542004e-05
wikipedia_url   : -
====================
name            : bhawnasaini_yml
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f5d0>
salience        : 4.4455497118178755e-05
wikipedia_url   : https://en.wikipedia.org/wiki/YAML
====================
name            : animal nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f990>
salience        : 4.444621299626306e-05
wikipedia_url   : -
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e760d0>
salience        : 4.444621299626306e-05
wikipedia_url   : -
====================
name            : aists amp employment oppounities tourism amp fitness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e763f0>
salience        : 4.4320549932308495e-05
wikipedia_url   : -
====================
name            : selfie london visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e768f0>
salience        : 4.428498141351156e-05
wikipedia_url   : -
====================
name            : lumierefestival2018 aichoke trafalgarsquare london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76f80>
salience        : 4.423821155796759e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84850>
salience        : 4.410432302393019e-05
wikipedia_url   : -
====================
name            : iesphotos cityatnight london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e73940>
salience        : 4.41006341134198e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f30>
salience        : 4.3800911953439936e-05
wikipedia_url   : -
====================
name            : squirrel mouse aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ddd3a0>
salience        : 4.378979065222666e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a806c0>
salience        : 4.37682174379006e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a804e0>
salience        : 4.365445420262404e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad850>
salience        : 4.365445420262404e-05
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de91c0>
salience        : 4.3620369979180396e-05
wikipedia_url   : -
====================
name            : lumierelondon london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9350>
salience        : 4.350421659182757e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc440>
salience        : 4.337179780122824e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc4e0>
salience        : 4.336488927947357e-05
wikipedia_url   : -
====================
name            : 2018 trafalgarsquare kingscross carnabystreet regentstreet
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc580>
salience        : 4.335075936978683e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc620>
salience        : 4.3346786696929485e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc710>
salience        : 4.328742579673417e-05
wikipedia_url   : -
====================
name            : ilyasayub_photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc7b0>
salience        : 4.316430931794457e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Photograph
====================
name            : polychrome
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc850>
salience        : 4.315278783906251e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc8f0>
salience        : 4.3118045141454786e-05
wikipedia_url   : -
====================
name            : head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc940>
salience        : 4.307123526814394e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc990>
salience        : 4.305628317524679e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc9e0>
salience        : 4.302478191675618e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abca30>
salience        : 4.302478191675618e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abca80>
salience        : 4.301469016354531e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcb20>
salience        : 4.294027530704625e-05
wikipedia_url   : -
====================
name            : south bank amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcb70>
salience        : 4.2911760829156265e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcbc0>
salience        : 4.289785283617675e-05
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abccb0>
salience        : 4.289103526389226e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcd00>
salience        : 4.2884305003099144e-05
wikipedia_url   : -
====================
name            : croydon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcdf0>
salience        : 4.286038893042132e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Croydon
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abce90>
salience        : 4.26923215854913e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcf30>
salience        : 4.267196709406562e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93080>
salience        : 4.26704682467971e-05
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93120>
salience        : 4.26704682467971e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a931c0>
salience        : 4.2665356886573136e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93260>
salience        : 4.2665356886573136e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a932b0>
salience        : 4.261004869476892e-05
wikipedia_url   : -
====================
name            : winterlights canarywharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93350>
salience        : 4.2584175389492884e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933a0>
salience        : 4.257385808159597e-05
wikipedia_url   : -
====================
name            : arrival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93440>
salience        : 4.245622403686866e-05
wikipedia_url   : -
====================
name            : book cou
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a934e0>
salience        : 4.245622403686866e-05
wikipedia_url   : -
====================
name            : pint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93530>
salience        : 4.230605554766953e-05
wikipedia_url   : -
====================
name            : thelondoneye westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a935d0>
salience        : 4.226916280458681e-05
wikipedia_url   : -
====================
name            : light lumiere king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93620>
salience        : 4.2254388972651213e-05
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93710>
salience        : 4.224466465529986e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a937b0>
salience        : 4.223511496093124e-05
wikipedia_url   : -
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93850>
salience        : 4.223511496093124e-05
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93940>
salience        : 4.222574352752417e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a939e0>
salience        : 4.221653944114223e-05
wikipedia_url   : -
====================
name            : park kings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a80>
salience        : 4.220749906380661e-05
wikipedia_url   : -
====================
name            : park kings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b20>
salience        : 4.220749906380661e-05
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c10>
salience        : 4.219861148158088e-05
wikipedia_url   : -
====================
name            : park kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d00>
salience        : 4.219861148158088e-05
wikipedia_url   : -
====================
name            : park kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93df0>
salience        : 4.2189876694465056e-05
wikipedia_url   : -
====================
name            : park kings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e90>
salience        : 4.2189876694465056e-05
wikipedia_url   : -
====================
name            : roosegaarde kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f30>
salience        : 4.217284367769025e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7030>
salience        : 4.217284367769025e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab70d0>
salience        : 4.216453089611605e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7170>
salience        : 4.216453089611605e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7210>
salience        : 4.216453089611605e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab72b0>
salience        : 4.216453089611605e-05
wikipedia_url   : -
====================
name            : waterlicht lumiere kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7350>
salience        : 4.215635635773651e-05
wikipedia_url   : -
====================
name            : city waterlicht lumiere kings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab73f0>
salience        : 4.215635635773651e-05
wikipedia_url   : -
====================
name            : lumiere kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7490>
salience        : 4.215635635773651e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7530>
salience        : 4.215635635773651e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab75d0>
salience        : 4.209530743537471e-05
wikipedia_url   : -
====================
name            : weather cold
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7670>
salience        : 4.209530743537471e-05
wikipedia_url   : -
====================
name            : charsuibuns light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab76c0>
salience        : 4.20055293943733e-05
wikipedia_url   : -
====================
name            : london rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7760>
salience        : 4.2000778194051236e-05
wikipedia_url   : -
====================
name            : lightinstallation landscape colour longexposure canon kings
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7800>
salience        : 4.198141323286109e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab78a0>
salience        : 4.19509997300338e-05
wikipedia_url   : -
====================
name            : jakubkrupa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7940>
salience        : 4.1946415876736864e-05
wikipedia_url   : -
====================
name            : shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7a30>
salience        : 4.1946415876736864e-05
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7ad0>
salience        : 4.185690340818837e-05
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7b70>
salience        : 4.179895404377021e-05
wikipedia_url   : -
====================
name            : poraits
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7c60>
salience        : 4.178221206529997e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7cb0>
salience        : 4.177098526270129e-05
wikipedia_url   : -
====================
name            : festival walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7d50>
salience        : 4.168165833107196e-05
wikipedia_url   : -
====================
name            : rarebear
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7e40>
salience        : 4.160687603871338e-05
wikipedia_url   : -
====================
name            : ukinargentina es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7ee0>
salience        : 4.1556682845111936e-05
wikipedia_url   : -
====================
name            : citywestminster festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7f30>
salience        : 4.1480143408989534e-05
wikipedia_url   : -
====================
name            : cast commentary
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69030>
salience        : 4.147968138568103e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a690d0>
salience        : 4.147257641307078e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69170>
salience        : 4.146512219449505e-05
wikipedia_url   : -
====================
name            : youtube london light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a691c0>
salience        : 4.146512219449505e-05
wikipedia_url   : -
====================
name            : pa lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69210>
salience        : 4.145777347730473e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a692b0>
salience        : 4.1443388909101486e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69350>
salience        : 4.1443388909101486e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a693a0>
salience        : 4.142255784245208e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69440>
salience        : 4.142255784245208e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69490>
salience        : 4.140913370065391e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69530>
salience        : 4.140913370065391e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a695d0>
salience        : 4.140913370065391e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69620>
salience        : 4.139605880482122e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a696c0>
salience        : 4.139605880482122e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69760>
salience        : 4.139605880482122e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a697b0>
salience        : 4.139605880482122e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69800>
salience        : 4.138964504818432e-05
wikipedia_url   : -
====================
name            : granarysquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a698a0>
salience        : 4.1251139919040725e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69990>
salience        : 4.122991958865896e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69a30>
salience        : 4.1198287362931296e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69b20>
salience        : 4.0965147491078824e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69c10>
salience        : 4.093787356396206e-05
wikipedia_url   : -
====================
name            : kathak dance styles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69c60>
salience        : 4.0930910472525284e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69d50>
salience        : 4.0887440263759345e-05
wikipedia_url   : -
====================
name            : power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69da0>
salience        : 4.0769340557744727e-05
wikipedia_url   : -
====================
name            : snow amp rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69e40>
salience        : 4.0732451452640817e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69f30>
salience        : 4.072521551279351e-05
wikipedia_url   : -
====================
name            : westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93030>
salience        : 4.068050839123316e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e930d0>
salience        : 4.064860331709497e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93170>
salience        : 4.062797597725876e-05
wikipedia_url   : -
====================
name            : toevho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93210>
salience        : 4.0610113501315936e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e932b0>
salience        : 4.058180275023915e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93350>
salience        : 4.047832408105023e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e933f0>
salience        : 4.0436203562421724e-05
wikipedia_url   : -
====================
name            : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93490>
salience        : 4.042293949169107e-05
wikipedia_url   : -
====================
name            : westminster westminsterabby
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93530>
salience        : 4.04101301683113e-05
wikipedia_url   : -
====================
name            : landmarks streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e935d0>
salience        : 4.0093604184221476e-05
wikipedia_url   : -
====================
name            : city aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93670>
salience        : 4.001803608844057e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93710>
salience        : 3.996908344561234e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93800>
salience        : 3.9955957618076354e-05
wikipedia_url   : -
====================
name            : biuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e938a0>
salience        : 3.993042264482938e-05
wikipedia_url   : -
====================
name            : biuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93940>
salience        : 3.991035191575065e-05
wikipedia_url   : -
====================
name            : flickr biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e939e0>
salience        : 3.991035191575065e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93a80>
salience        : 3.981292320531793e-05
wikipedia_url   : -
====================
name            : kingscross raindropskeepfallingonmyhead dslr nightmoves 1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93b20>
salience        : 3.963005292462185e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93b70>
salience        : 3.9362392271868885e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93c10>
salience        : 3.935499262297526e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93c60>
salience        : 3.9319609641097486e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93cb0>
salience        : 3.930616003344767e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93d00>
salience        : 3.928034129785374e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93d50>
salience        : 3.9267935790121555e-05
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93e40>
salience        : 3.917532376362942e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93e90>
salience        : 3.913139516953379e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93f30>
salience        : 3.867402483592741e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5030>
salience        : 3.867402483592741e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac50d0>
salience        : 3.867402483592741e-05
wikipedia_url   : -
====================
name            : lampounette lumiere kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5170>
salience        : 3.8666639738949016e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5210>
salience        : 3.8666639738949016e-05
wikipedia_url   : -
====================
name            : taste rainbow king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5260>
salience        : 3.8659371057292446e-05
wikipedia_url   : -
====================
name            : passing kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5350>
salience        : 3.865221151500009e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac53f0>
salience        : 3.865221151500009e-05
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5490>
salience        : 3.8638208934571594e-05
wikipedia_url   : -
====================
name            : sliceofthecity visitlondon londonlumiere
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5530>
salience        : 3.86294414056465e-05
wikipedia_url   : -
====================
name            : delays fi king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac55d0>
salience        : 3.861796358251013e-05
wikipedia_url   : -
====================
name            : westminster london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5670>
salience        : 3.8569443859159946e-05
wikipedia_url   : -
====================
name            : piccadilly stjames jermynstreet london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5710>
salience        : 3.854065653285943e-05
wikipedia_url   : -
====================
name            : charlie lumiere lumierelondon leicestersquare london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac57b0>
salience        : 3.850482971756719e-05
wikipedia_url   : -
====================
name            : london thisislondon londonatnight londonlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5850>
salience        : 3.848789128824137e-05
wikipedia_url   : -
====================
name            : lumierelondon kingscross granarysquare visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac58f0>
salience        : 3.842756268568337e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5940>
salience        : 3.836937321466394e-05
wikipedia_url   : -
====================
name            : deputy mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5a30>
salience        : 3.836896939901635e-05
wikipedia_url   : -
====================
name            : gt mondaymotivation aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5ad0>
salience        : 3.829340130323544e-05
wikipedia_url   : -
====================
name            : flickr iesphotos cityatnight london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9760>
salience        : 3.8273530662991107e-05
wikipedia_url   : -
====================
name            : london southbank london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de99e0>
salience        : 3.824580562650226e-05
wikipedia_url   : -
====================
name            : mondaymotivation ginoclock ginuary grosvenor_gbi mayfair london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9d50>
salience        : 3.81485624529887e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf030>
salience        : 3.809525151154958e-05
wikipedia_url   : -
====================
name            : european
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf210>
salience        : 3.800869671977125e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Europe
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf350>
salience        : 3.8000973290763795e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf3f0>
salience        : 3.7960246118018404e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf580>
salience        : 3.790724076679908e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf620>
salience        : 3.7888243241468444e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf6c0>
salience        : 3.7888243241468444e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf760>
salience        : 3.785606168094091e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf7b0>
salience        : 3.785606168094091e-05
wikipedia_url   : -
====================
name            : highlight hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf850>
salience        : 3.784077489399351e-05
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf940>
salience        : 3.784077489399351e-05
wikipedia_url   : -
====================
name            : swing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf9e0>
salience        : 3.7816378608113155e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfb20>
salience        : 3.763966742553748e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfc60>
salience        : 3.763966742553748e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfda0>
salience        : 3.763966742553748e-05
wikipedia_url   : -
====================
name            : tmnikonian aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfee0>
salience        : 3.760082836379297e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29030>
salience        : 3.7588139093713835e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29120>
salience        : 3.7588139093713835e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a292b0>
salience        : 3.7564397644018754e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a293a0>
salience        : 3.7541831261478364e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a294e0>
salience        : 3.7541831261478364e-05
wikipedia_url   : -
====================
name            : foodie domesticgoddess
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29580>
salience        : 3.753186683752574e-05
wikipedia_url   : -
====================
name            : covent garden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29760>
salience        : 3.7511221307795495e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Covent_Garden
====================
name            : urbana lovemesomelights postcardslond1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29a80>
salience        : 3.7511221307795495e-05
wikipedia_url   : -
====================
name            : levanterman lumierelondon aichoketrust southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29c60>
salience        : 3.748983726836741e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29f80>
salience        : 3.7473091651918367e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24210>
salience        : 3.741580439964309e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a242b0>
salience        : 3.7340822018450126e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24490>
salience        : 3.726966679096222e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey postcardslond1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a245d0>
salience        : 3.724633279489353e-05
wikipedia_url   : -
====================
name            : momento
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a246c0>
salience        : 3.716669380082749e-05
wikipedia_url   : -
====================
name            : teacupheaven
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a247b0>
salience        : 3.715453203767538e-05
wikipedia_url   : -
====================
name            : pop dinner champagne
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24850>
salience        : 3.715453203767538e-05
wikipedia_url   : -
====================
name            : terrace
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24d50>
salience        : 3.715453203767538e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81080>
salience        : 3.7067726225359365e-05
wikipedia_url   : -
====================
name            : shadow puppets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81120>
salience        : 3.705255585373379e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a812b0>
salience        : 3.705142080434598e-05
wikipedia_url   : -
====================
name            : bloom westminstercath
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81440>
salience        : 3.692231621243991e-05
wikipedia_url   : -
====================
name            : avweekjuliet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81580>
salience        : 3.6899316910421476e-05
wikipedia_url   : -
====================
name            : marathon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a816c0>
salience        : 3.683867907966487e-05
wikipedia_url   : -
====================
name            : filipa
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a818a0>
salience        : 3.673756873467937e-05
wikipedia_url   : -
====================
name            : palette
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81a30>
salience        : 3.669446596177295e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81b20>
salience        : 3.665603435365483e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81c10>
salience        : 3.665603435365483e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81cb0>
salience        : 3.662271410576068e-05
wikipedia_url   : -
====================
name            : break london besties
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81da0>
salience        : 3.661904338514432e-05
wikipedia_url   : -
====================
name            : design innovation medal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc080>
salience        : 3.658563218777999e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc170>
salience        : 3.637122790678404e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey mvpicsss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc2b0>
salience        : 3.636296605691314e-05
wikipedia_url   : -
====================
name            : lumierelondon londonwhispers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc3f0>
salience        : 3.633977030403912e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40120>
salience        : 3.629958882811479e-05
wikipedia_url   : -
====================
name            : lumierelondon aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40260>
salience        : 3.627303158282302e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40350>
salience        : 3.612964428612031e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40440>
salience        : 3.609605846577324e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40580>
salience        : 3.6088047636440024e-05
wikipedia_url   : -
====================
name            : king cross granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a407b0>
salience        : 3.6088047636440024e-05
wikipedia_url   : -
====================
name            : dataweb granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a408a0>
salience        : 3.608018232625909e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40cb0>
salience        : 3.604860103223473e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40da0>
salience        : 3.6035733501194045e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ee0>
salience        : 3.603555160225369e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b2b0>
salience        : 3.597678369260393e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b3f0>
salience        : 3.594059307943098e-05
wikipedia_url   : -
====================
name            : bum rossbolwill aquarium telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b580>
salience        : 3.594059307943098e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b710>
salience        : 3.593022847780958e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b940>
salience        : 3.5925993870478123e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bda0>
salience        : 3.5922275856137276e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e120>
salience        : 3.586843013181351e-05
wikipedia_url   : -
====================
name            : king cross granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e3a0>
salience        : 3.582870340324007e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e7b0>
salience        : 3.582545468816534e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ead0>
salience        : 3.5805478546535596e-05
wikipedia_url   : -
====================
name            : amp pandora box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ef80>
salience        : 3.57635690306779e-05
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a982b0>
salience        : 3.5737117286771536e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98530>
salience        : 3.573680078261532e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a987b0>
salience        : 3.573680078261532e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98a80>
salience        : 3.573680078261532e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98e40>
salience        : 3.5736531572183594e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51120>
salience        : 3.5736531572183594e-05
wikipedia_url   : -
====================
name            : regent
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51760>
salience        : 3.572282730601728e-05
wikipedia_url   : -
====================
name            : pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51ad0>
salience        : 3.57115022779908e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daec10>
salience        : 3.57115022779908e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daed50>
salience        : 3.5686371120391414e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daef30>
salience        : 3.5662615118781105e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae260>
salience        : 3.5525103157851845e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae5d0>
salience        : 3.5477354686008766e-05
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae710>
salience        : 3.5477354686008766e-05
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d620>
salience        : 3.5477354686008766e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d030>
salience        : 3.533067865646444e-05
wikipedia_url   : -
====================
name            : westminsterabbey london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d3a0>
salience        : 3.524486965034157e-05
wikipedia_url   : -
====================
name            : westminsterabbey london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1de40>
salience        : 3.524486965034157e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust solomongreyband philippemorvan london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8850>
salience        : 3.5219334677094594e-05
wikipedia_url   : -
====================
name            : nightlife hatmanoflondon southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f80>
salience        : 3.51966118614655e-05
wikipedia_url   : -
====================
name            : lumiere london marshalljulius london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86580>
salience        : 3.5178014513803646e-05
wikipedia_url   : -
====================
name            : miss
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e868a0>
salience        : 3.513599585858174e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86bc0>
salience        : 3.511110116960481e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a638a0>
salience        : 3.506643042783253e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f1c0>
salience        : 3.506469147396274e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9fe90>
salience        : 3.496567296679132e-05
wikipedia_url   : -
====================
name            : visitlondon lumiere london biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e765d0>
salience        : 3.49283182004001e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a84210>
salience        : 3.489934897515923e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc4120>
salience        : 3.485562410787679e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70d50>
salience        : 3.484199623926543e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a80a80>
salience        : 3.483301043161191e-05
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dadd00>
salience        : 3.480997838778421e-05
wikipedia_url   : -
====================
name            : repoing winkball vickywinkball aichoketrust visitlondon creativeas
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5b70>
salience        : 3.474168261163868e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5bc0>
salience        : 3.47081950167194e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5c10>
salience        : 3.47081950167194e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5cb0>
salience        : 3.466368798399344e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5d50>
salience        : 3.465231930022128e-05
wikipedia_url   : -
====================
name            : chinatown
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5e40>
salience        : 3.4610020520631224e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Chinatown,_London
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5ee0>
salience        : 3.460263542365283e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5f30>
salience        : 3.457553975749761e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e030>
salience        : 3.451754673733376e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e0d0>
salience        : 3.449177893344313e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e170>
salience        : 3.44703730661422e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e210>
salience        : 3.446750633884221e-05
wikipedia_url   : -
====================
name            : westminster victoria
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e2b0>
salience        : 3.4461223549442366e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e350>
salience        : 3.438242129050195e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e3f0>
salience        : 3.438242129050195e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e490>
salience        : 3.436360202613287e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e530>
salience        : 3.436360202613287e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e5d0>
salience        : 3.43491519743111e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e670>
salience        : 3.4345590393058956e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e710>
salience        : 3.422410736675374e-05
wikipedia_url   : -
====================
name            : placemaking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e7b0>
salience        : 3.406804535188712e-05
wikipedia_url   : -
====================
name            : placemaking
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e850>
salience        : 3.406804535188712e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e940>
salience        : 3.399802153580822e-05
wikipedia_url   : -
====================
name            : placemaking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e9e0>
salience        : 3.396700049052015e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ea80>
salience        : 3.391118298168294e-05
wikipedia_url   : -
====================
name            : scene pa aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ead0>
salience        : 3.3891115890583023e-05
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1eb70>
salience        : 3.387437027413398e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ec60>
salience        : 3.386351090739481e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ed00>
salience        : 3.382533395779319e-05
wikipedia_url   : -
====================
name            : london metroldn timeoutlondon lumierelondon lightfestival visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1eda0>
salience        : 3.3799045922933146e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ee90>
salience        : 3.375071901245974e-05
wikipedia_url   : -
====================
name            : photographer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ef80>
salience        : 3.373010622453876e-05
wikipedia_url   : -
====================
name            : photographer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea50d0>
salience        : 3.373010622453876e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5170>
salience        : 3.372543505975045e-05
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5210>
salience        : 3.37234596372582e-05
wikipedia_url   : -
====================
name            : child hood collectif coin photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea52b0>
salience        : 3.37234596372582e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5350>
salience        : 3.3707168768160045e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea53f0>
salience        : 3.36764169333037e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5490>
salience        : 3.36764169333037e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5530>
salience        : 3.366907549207099e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea55d0>
salience        : 3.366578675922938e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5670>
salience        : 3.362928327987902e-05
wikipedia_url   : -
====================
name            : transform experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea56c0>
salience        : 3.361524431966245e-05
wikipedia_url   : -
====================
name            : transform experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5710>
salience        : 3.360167102073319e-05
wikipedia_url   : -
====================
name            : charellemarr
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea57b0>
salience        : 3.358853064128198e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea58a0>
salience        : 3.3576998248463497e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5990>
salience        : 3.3552671084180474e-05
wikipedia_url   : -
====================
name            : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5a30>
salience        : 3.353716601850465e-05
wikipedia_url   : -
====================
name            : wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5a80>
salience        : 3.35192889906466e-05
wikipedia_url   : -
====================
name            : wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5ad0>
salience        : 3.35192889906466e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5bc0>
salience        : 3.351870327605866e-05
wikipedia_url   : -
====================
name            : blue wave king cross photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5c60>
salience        : 3.349753387738019e-05
wikipedia_url   : -
====================
name            : intentions check installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5cb0>
salience        : 3.349133476149291e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5da0>
salience        : 3.347740857861936e-05
wikipedia_url   : -
====================
name            : aquarium fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5e40>
salience        : 3.3452259231125936e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5ee0>
salience        : 3.3363121474394575e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5f80>
salience        : 3.33497446263209e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7080>
salience        : 3.332484993734397e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7120>
salience        : 3.33090647473e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad71c0>
salience        : 3.330139588797465e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7260>
salience        : 3.3232015994144604e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht ilyasayub_photo
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7300>
salience        : 3.313600973342545e-05
wikipedia_url   : -
====================
name            : phone box favourite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7350>
salience        : 3.313479101052508e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad73f0>
salience        : 3.311713953735307e-05
wikipedia_url   : -
====================
name            : worry works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad74e0>
salience        : 3.310641841380857e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7580>
salience        : 3.30939692503307e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7620>
salience        : 3.3075015380745754e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7670>
salience        : 3.304622805444524e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad76c0>
salience        : 3.3040014386642724e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7710>
salience        : 3.302787081338465e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad77b0>
salience        : 3.301555261714384e-05
wikipedia_url   : -
====================
name            : sea granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7800>
salience        : 3.298265437479131e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad78a0>
salience        : 3.2958767405943945e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7940>
salience        : 3.2958767405943945e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad79e0>
salience        : 3.2958767405943945e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7a80>
salience        : 3.293559711892158e-05
wikipedia_url   : -
====================
name            : mattcooperphoto letsyogalondon regram theladytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7ad0>
salience        : 3.291718167020008e-05
wikipedia_url   : -
====================
name            : reflectors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7bc0>
salience        : 3.290505992481485e-05
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7c60>
salience        : 3.2838204788276926e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7d50>
salience        : 3.2815540180308744e-05
wikipedia_url   : -
====================
name            : ray catcher
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7e40>
salience        : 3.281051976955496e-05
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7f30>
salience        : 3.2807245588628575e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93030>
salience        : 3.279969314462505e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933f0>
salience        : 3.278185613453388e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93670>
salience        : 3.278185613453388e-05
wikipedia_url   : -
====================
name            : southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93170>
salience        : 3.277785799582489e-05
wikipedia_url   : -
====================
name            : pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938a0>
salience        : 3.2694464607629925e-05
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a30>
salience        : 3.267275678808801e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Ron_Haselden
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag biuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b70>
salience        : 3.261885285610333e-05
wikipedia_url   : -
====================
name            : wabbey lumierelondon2018 visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c60>
salience        : 3.256629497627728e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d50>
salience        : 3.249861765652895e-05
wikipedia_url   : -
====================
name            : chinatown amp southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e40>
salience        : 3.248919892939739e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ee0>
salience        : 3.247101267334074e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7080>
salience        : 3.2456231565447524e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7260>
salience        : 3.22914456774015e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab73a0>
salience        : 3.2280080631608143e-05
wikipedia_url   : -
====================
name            : colour timeout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7440>
salience        : 3.227668275940232e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag electricpedals
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7580>
salience        : 3.225278851459734e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7710>
salience        : 3.225266118533909e-05
wikipedia_url   : -
====================
name            : thank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab77b0>
salience        : 3.217080302420072e-05
wikipedia_url   : -
====================
name            : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab78f0>
salience        : 3.214576281607151e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7990>
salience        : 3.211614239262417e-05
wikipedia_url   : -
====================
name            : regent street traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab79e0>
salience        : 3.210709473933093e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7a80>
salience        : 3.209353963029571e-05
wikipedia_url   : -
====================
name            : regent street traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7b20>
salience        : 3.20912768074777e-05
wikipedia_url   : -
====================
name            : regent street traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7bc0>
salience        : 3.20912768074777e-05
wikipedia_url   : -
====================
name            : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7d00>
salience        : 3.2054114853963256e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7df0>
salience        : 3.202779407729395e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7f80>
salience        : 3.20271028613206e-05
wikipedia_url   : -
====================
name            : hats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69080>
salience        : 3.2010622817324474e-05
wikipedia_url   : -
====================
name            : winterlights yourcanarywharf thegl0betrotter westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69260>
salience        : 3.200943683623336e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a693f0>
salience        : 3.200165519956499e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a694e0>
salience        : 3.1996787583921105e-05
wikipedia_url   : -
====================
name            : regent street pa
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69670>
salience        : 3.1994033633964136e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69710>
salience        : 3.198002013959922e-05
wikipedia_url   : -
====================
name            : mayoroflondon staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69850>
salience        : 3.196897159796208e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a699e0>
salience        : 3.1967552786227316e-05
wikipedia_url   : -
====================
name            : highlight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69ad0>
salience        : 3.189224662492052e-05
wikipedia_url   : -
====================
name            : た電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69bc0>
salience        : 3.188601112924516e-05
wikipedia_url   : -
====================
name            : frictions regent street standing water
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69cb0>
salience        : 3.186553294654004e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69df0>
salience        : 3.173874574713409e-05
wikipedia_url   : -
====================
name            : totastemaker lumiere marshalljulius london leicester square
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69ee0>
salience        : 3.169260889990255e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93080>
salience        : 3.1661758839618415e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93260>
salience        : 3.160972482874058e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93440>
salience        : 3.154625665047206e-05
wikipedia_url   : -
====================
name            : life borrower king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e934e0>
salience        : 3.154340083710849e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e936c0>
salience        : 3.153871148242615e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93850>
salience        : 3.153131183353253e-05
wikipedia_url   : -
====================
name            : tubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e938f0>
salience        : 3.1510237022303045e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93a30>
salience        : 3.1509935070062056e-05
wikipedia_url   : -
====================
name            : roaming streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93bc0>
salience        : 3.147676034132019e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93ee0>
salience        : 3.147676034132019e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5120>
salience        : 3.131608900730498e-05
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac52b0>
salience        : 3.127097079413943e-05
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac53a0>
salience        : 3.127097079413943e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5580>
salience        : 3.121679765172303e-05
wikipedia_url   : -
====================
name            : shopping guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac56c0>
salience        : 3.1214287446346134e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5800>
salience        : 3.120856126770377e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac59e0>
salience        : 3.1208157452056184e-05
wikipedia_url   : -
====================
name            : ici themayfairhotel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5a80>
salience        : 3.119649409200065e-05
wikipedia_url   : -
====================
name            : south bank pa city stars
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9580>
salience        : 3.11946241708938e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9c60>
salience        : 3.1187442800728604e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf0d0>
salience        : 3.117891901638359e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf170>
salience        : 3.1175597541732714e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfa80>
salience        : 3.116808511549607e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfd00>
salience        : 3.114699575235136e-05
wikipedia_url   : -
====================
name            : frictions lumierelondon fox
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfe40>
salience        : 3.111071418970823e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a290d0>
salience        : 3.106752774328925e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29300>
salience        : 3.102577102254145e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29620>
salience        : 3.0988172511570156e-05
wikipedia_url   : -
====================
name            : pattenden couesy aichoke aists rainbow lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a298a0>
salience        : 3.0977316782809794e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29da0>
salience        : 3.0959890864323825e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24080>
salience        : 3.0949446227168664e-05
wikipedia_url   : -
====================
name            : spirits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24350>
salience        : 3.0944891477702186e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24620>
salience        : 3.0925766623113304e-05
wikipedia_url   : -
====================
name            : exhibits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a248f0>
salience        : 3.0921401048544794e-05
wikipedia_url   : -
====================
name            : videography musicvideo zacdenman badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24e40>
salience        : 3.091974213020876e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81260>
salience        : 3.09142233163584e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a814e0>
salience        : 3.091033795499243e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81760>
salience        : 3.090952304773964e-05
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81940>
salience        : 3.0903025617590174e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81bc0>
salience        : 3.0903025617590174e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc5d0>
salience        : 3.0903025617590174e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc6c0>
salience        : 3.090116661041975e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc8a0>
salience        : 3.08975504594855e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcc10>
salience        : 3.089220990659669e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcd50>
salience        : 3.088346420554444e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abce40>
salience        : 3.088346420554444e-05
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcf80>
salience        : 3.087130608037114e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc350>
salience        : 3.086626747972332e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b080>
salience        : 3.086129800067283e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b620>
salience        : 3.086129800067283e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bb20>
salience        : 3.085727439611219e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e2b0>
salience        : 3.085639400524087e-05
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e670>
salience        : 3.085639400524087e-05
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a980d0>
salience        : 3.085639400524087e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a983f0>
salience        : 3.08563576254528e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98940>
salience        : 3.0850034818286076e-05
wikipedia_url   : -
====================
name            : dubai
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51030>
salience        : 3.082515104324557e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Dubai
====================
name            : mason window display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a51300>
salience        : 3.0815797799732536e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a519e0>
salience        : 3.080931128351949e-05
wikipedia_url   : -
====================
name            : fox
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae030>
salience        : 3.077935252804309e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daecb0>
salience        : 3.077164728892967e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae170>
salience        : 3.076385473832488e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229673f0>
salience        : 3.075220956816338e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967760>
salience        : 3.0743121897103265e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ee0>
salience        : 3.0743121897103265e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd21c0>
salience        : 3.0743121897103265e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2080>
salience        : 3.073373591178097e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd20d0>
salience        : 3.073147308896296e-05
wikipedia_url   : -
====================
name            : phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2210>
salience        : 3.0726259865332395e-05
wikipedia_url   : -
====================
name            : fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d00>
salience        : 3.0719318601768464e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2bc0>
salience        : 3.071613173233345e-05
wikipedia_url   : -
====================
name            : red telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c10>
salience        : 3.0712501029483974e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd29e0>
salience        : 3.0683229852002114e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a30>
salience        : 3.0683229852002114e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2940>
salience        : 3.0683229852002114e-05
wikipedia_url   : -
====================
name            : red telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2cb0>
salience        : 3.0674022127641365e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2850>
salience        : 3.0667804821860045e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28a0>
salience        : 3.0667804821860045e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2760>
salience        : 3.0667804821860045e-05
wikipedia_url   : -
====================
name            : mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2620>
salience        : 3.0663675715913996e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2670>
salience        : 3.0652994610136375e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2440>
salience        : 3.0652994610136375e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2490>
salience        : 3.0652994610136375e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23a0>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2710>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd22b0>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2300>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e90>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2da0>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c00d030>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf670>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf210>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015b20>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015b70>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015bc0>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015f80>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015a80>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d50>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7620>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7530>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc74e0>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7440>
salience        : 3.0638748285127804e-05
wikipedia_url   : -
====================
name            : awork entre les rangs _kanva behindthescenes jmrobes343jmr
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7350>
salience        : 3.063468466280028e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7300>
salience        : 3.062226824113168e-05
wikipedia_url   : -
====================
name            : lumierelondon woxxy lumiere lumierelondon lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7670>
salience        : 3.054267290281132e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7210>
salience        : 3.053424370591529e-05
wikipedia_url   : -
====================
name            : description
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7260>
salience        : 3.0524675821652636e-05
wikipedia_url   : -
====================
name            : london lumiere rudie1750 lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7120>
salience        : 3.0520324798999354e-05
wikipedia_url   : -
====================
name            : quocatron lumiere lumierelondon lumiere2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7030>
salience        : 3.0485833121929318e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7170>
salience        : 3.048078724532388e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c60>
salience        : 3.048078724532388e-05
wikipedia_url   : -
====================
name            : haya luz segunda edición del festival de luces en londres lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b20>
salience        : 3.0472887374344282e-05
wikipedia_url   : -
====================
name            : fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7ad0>
salience        : 3.046251913474407e-05
wikipedia_url   : -
====================
name            : waterlicht granarysquare kingscross lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a80>
salience        : 3.0454277293756604e-05
wikipedia_url   : -
====================
name            : fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7940>
salience        : 3.0426777811953798e-05
wikipedia_url   : -
====================
name            : beasts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7990>
salience        : 3.0418357710004784e-05
wikipedia_url   : -
====================
name            : illuminatedriv fish phone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78a0>
salience        : 3.0418357710004784e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a30>
salience        : 3.041724812646862e-05
wikipedia_url   : -
====================
name            : experience lovelondon fish phone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7cb0>
salience        : 3.0410123144974932e-05
wikipedia_url   : -
====================
name            : phone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7800>
salience        : 3.0410123144974932e-05
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7e40>
salience        : 3.0393635825021192e-05
wikipedia_url   : -
====================
name            : wave pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d00>
salience        : 3.0283224987215362e-05
wikipedia_url   : -
====================
name            : london lumierelondon2018 lumiere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c96c0>
salience        : 3.0244289519032463e-05
wikipedia_url   : -
====================
name            : women
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9d00>
salience        : 3.014941103174351e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c92b0>
salience        : 3.007700252055656e-05
wikipedia_url   : -
====================
name            : moon water jd southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9e260>
salience        : 2.9994182114023715e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6b20>
salience        : 2.995766408275813e-05
wikipedia_url   : -
====================
name            : guide rossbolwill aquarium telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d69e0>
salience        : 2.9867478588130325e-05
wikipedia_url   : -
====================
name            : exitmagazine maxcoopermax
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6da0>
salience        : 2.9769606044283137e-05
wikipedia_url   : -
====================
name            : videoproduction zacvideo studiosession
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d00>
salience        : 2.9685808840440586e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6bc0>
salience        : 2.9651877412106842e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c10>
salience        : 2.9645178074133582e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6cb0>
salience        : 2.961866994155571e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde70d0>
salience        : 2.958073491754476e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7440>
salience        : 2.9574905056506395e-05
wikipedia_url   : -
====================
name            : field flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7080>
salience        : 2.948176370409783e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7170>
salience        : 2.937676981673576e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7350>
salience        : 2.9352482670219615e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7530>
salience        : 2.9336175430216826e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7670>
salience        : 2.9326241929084063e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7260>
salience        : 2.9326241929084063e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b70>
salience        : 2.9325703508220613e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a30>
salience        : 2.9325703508220613e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a80>
salience        : 2.9325703508220613e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7850>
salience        : 2.9318474844330922e-05
wikipedia_url   : -
====================
name            : rain king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78f0>
salience        : 2.9252998501760885e-05
wikipedia_url   : -
====================
name            : lumiere experience king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78a0>
salience        : 2.9220534997875802e-05
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde77b0>
salience        : 2.910609146056231e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag chrisschorah
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7bc0>
salience        : 2.9103124688845128e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7620>
salience        : 2.9073496989440173e-05
wikipedia_url   : -
====================
name            : merrypranksters engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde72b0>
salience        : 2.9068978619761765e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ee0>
salience        : 2.9053629987174645e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon tflbusales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7210>
salience        : 2.898275852203369e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7d00>
salience        : 2.885397225327324e-05
wikipedia_url   : -
====================
name            : bond street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f80>
salience        : 2.884320383600425e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde76c0>
salience        : 2.8832755560870282e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c60>
salience        : 2.8827646019635722e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d2b0>
salience        : 2.8822609237977304e-05
wikipedia_url   : -
====================
name            : earlham street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d4e0>
salience        : 2.8780272259609774e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d1c0>
salience        : 2.8715789085254073e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d120>
salience        : 2.8702928830171004e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d0d0>
salience        : 2.8702928830171004e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8f0>
salience        : 2.864319867512677e-05
wikipedia_url   : -
====================
name            : nandosuk badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d580>
salience        : 2.8551319701364264e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3a0>
salience        : 2.8545868190121837e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d7b0>
salience        : 2.8540500352391973e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d760>
salience        : 2.8540500352391973e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dcb0>
salience        : 2.853000842151232e-05
wikipedia_url   : -
====================
name            : voyage badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dbc0>
salience        : 2.852487887139432e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db70>
salience        : 2.852487887139432e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dad0>
salience        : 2.852487887139432e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d9e0>
salience        : 2.8514839868876152e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db20>
salience        : 2.8514839868876152e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d940>
salience        : 2.8509928597486578e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d5d0>
salience        : 2.8509928597486578e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d6c0>
salience        : 2.8505084628704935e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ddf0>
salience        : 2.8500309781520627e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206df80>
salience        : 2.8491234843386337e-05
wikipedia_url   : -
====================
name            : lumierelondon badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d670>
salience        : 2.8486361770774238e-05
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e90>
salience        : 2.8477366868173704e-05
wikipedia_url   : -
====================
name            : fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067580>
salience        : 2.84729539998807e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678f0>
salience        : 2.8455791834858246e-05
wikipedia_url   : -
====================
name            : flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220675d0>
salience        : 2.8412254323484376e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067490>
salience        : 2.839989792846609e-05
wikipedia_url   : -
====================
name            : neon bikes reflection rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067440>
salience        : 2.8344933525659144e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220674e0>
salience        : 2.8310359994065948e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673f0>
salience        : 2.8310359994065948e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220672b0>
salience        : 2.8303842555033043e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067350>
salience        : 2.8297446988290176e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1d760>
salience        : 2.8291166017879732e-05
wikipedia_url   : -
====================
name            : oxfordcircus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d0d0>
salience        : 2.8291166017879732e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8580>
salience        : 2.8291166017879732e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a30>
salience        : 2.828499964380171e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86350>
salience        : 2.828499964380171e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e869e0>
salience        : 2.828499964380171e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e86d50>
salience        : 2.828499964380171e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a63d50>
salience        : 2.828499964380171e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9f710>
salience        : 2.82789405900985e-05
wikipedia_url   : -
====================
name            : rainfall
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e92350>
salience        : 2.8272987037780695e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a70a80>
salience        : 2.8267135348869488e-05
wikipedia_url   : -
====================
name            : light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e080>
salience        : 2.826531999744475e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e120>
salience        : 2.826138006639667e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e1c0>
salience        : 2.8254929929971695e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e260>
salience        : 2.8254929929971695e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e300>
salience        : 2.8254929929971695e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e3a0>
salience        : 2.8250153263797984e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e440>
salience        : 2.8244674467714503e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e580>
salience        : 2.8220001695444807e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e620>
salience        : 2.821624730131589e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e6c0>
salience        : 2.821624730131589e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e800>
salience        : 2.821485213644337e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e8a0>
salience        : 2.819842666212935e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e990>
salience        : 2.819499422912486e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ea30>
salience        : 2.8181484594824724e-05
wikipedia_url   : -
====================
name            : light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ebc0>
salience        : 2.8181484594824724e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ec10>
salience        : 2.8181484594824724e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ed50>
salience        : 2.8173319151392207e-05
wikipedia_url   : -
====================
name            : light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ee40>
salience        : 2.8173319151392207e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1eee0>
salience        : 2.8127460609539412e-05
wikipedia_url   : -
====================
name            : london rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5030>
salience        : 2.8117119654780254e-05
wikipedia_url   : -
====================
name            : regent street alberich rossbolwill aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5080>
salience        : 2.8093178116250783e-05
wikipedia_url   : -
====================
name            : japan
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea51c0>
salience        : 2.8089618353988044e-05
wikipedia_url   : -
====================
name            : evening rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5300>
salience        : 2.80052081507165e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea53a0>
salience        : 2.7997946745017543e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon trafalgar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea54e0>
salience        : 2.7931690055993386e-05
wikipedia_url   : -
====================
name            : theltda tonyqpr123 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5620>
salience        : 2.7917019906453788e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5850>
salience        : 2.790253347484395e-05
wikipedia_url   : -
====================
name            : lumierefestival lumierelondon lumiere lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5940>
salience        : 2.79017385764746e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5b20>
salience        : 2.7896794563275762e-05
wikipedia_url   : -
====================
name            : granarysquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5c10>
salience        : 2.788517485896591e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 visitlondon robbrown678 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5d50>
salience        : 2.788237907225266e-05
wikipedia_url   : -
====================
name            : benoit deseille lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5e90>
salience        : 2.7855265216203406e-05
wikipedia_url   : -
====================
name            : visit website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22975440>
salience        : 2.781101102300454e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93210>
salience        : 2.7751302695833147e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93490>
salience        : 2.7704916647053324e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a936c0>
salience        : 2.7662379579851404e-05
wikipedia_url   : -
====================
name            : victoriabid greypointe cubitt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93800>
salience        : 2.7638463507173583e-05
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon jakubkrupa
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93990>
salience        : 2.7638463507173583e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ad0>
salience        : 2.759673043328803e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93bc0>
salience        : 2.7579300876823254e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f80>
salience        : 2.7575182684813626e-05
wikipedia_url   : -
====================
name            : treat rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab71c0>
salience        : 2.7573685656534508e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab74e0>
salience        : 2.756735193543136e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7c10>
salience        : 2.7546151613933034e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69120>
salience        : 2.7546151613933034e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69580>
salience        : 2.7545438570086844e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69a80>
salience        : 2.754063461907208e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69e90>
salience        : 2.75352067546919e-05
wikipedia_url   : -
====================
name            : londonislovinit thelondoneye lovelondon visitlondon londoneye thebroadwaysw1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93120>
salience        : 2.750077510427218e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93300>
salience        : 2.749980012595188e-05
wikipedia_url   : -
====================
name            : snow amp rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93580>
salience        : 2.7345953640178777e-05
wikipedia_url   : -
====================
name            : shots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93620>
salience        : 2.7301912268740125e-05
wikipedia_url   : -
====================
name            : walkers
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93990>
salience        : 2.7271336875855923e-05
wikipedia_url   : -
====================
name            : biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93ad0>
salience        : 2.7271336875855923e-05
wikipedia_url   : -
====================
name            : 50 aists edgillwhl
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93df0>
salience        : 2.7266984034213237e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93f80>
salience        : 2.7257045076112263e-05
wikipedia_url   : -
====================
name            : nofilters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5d00>
salience        : 2.7243342628935352e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5df0>
salience        : 2.7217529350309633e-05
wikipedia_url   : -
====================
name            : lumierelondon westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5e90>
salience        : 2.7213394787395373e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Westminster_Abbey
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac51c0>
salience        : 2.7205340302316472e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac54e0>
salience        : 2.7205340302316472e-05
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5760>
salience        : 2.7182231860933825e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9490>
salience        : 2.718043833738193e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf440>
salience        : 2.716063136176672e-05
wikipedia_url   : -
====================
name            : thisislondon lumierelondon travel culturetrip londonphotography stillnojob hireme thebroadwaysw1
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbff80>
salience        : 2.706417035369668e-05
wikipedia_url   : -
====================
name            : fish phonebox aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a291c0>
salience        : 2.7056266844738275e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a296c0>
salience        : 2.7052075893152505e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag thebroadwaysw1
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29ee0>
salience        : 2.7035179300582968e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a243f0>
salience        : 2.6989260732079856e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24760>
salience        : 2.6877571144723333e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a811c0>
salience        : 2.6862089725909755e-05
wikipedia_url   : -
====================
name            : camera
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81800>
salience        : 2.6809992050402798e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81ad0>
salience        : 2.678380587894935e-05
wikipedia_url   : -
====================
name            : camera
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc760>
salience        : 2.6776962840813212e-05
wikipedia_url   : -
====================
name            : case study events management students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcad0>
salience        : 2.676162330317311e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcee0>
salience        : 2.676162330317311e-05
wikipedia_url   : -
====================
name            : students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40620>
salience        : 2.676162330317311e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a80>
salience        : 2.674000097613316e-05
wikipedia_url   : -
====================
name            : need suppo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b800>
salience        : 2.671858783287462e-05
wikipedia_url   : -
====================
name            : ballerinas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e490>
salience        : 2.668224806257058e-05
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98710>
salience        : 2.664881685632281e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae440>
salience        : 2.6569039619062096e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dae620>
salience        : 2.6557499950286e-05
wikipedia_url   : -
====================
name            : fish check phone box check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daeb70>
salience        : 2.6473264369997196e-05
wikipedia_url   : -
====================
name            : look
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daee40>
salience        : 2.642769322847016e-05
wikipedia_url   : -
====================
name            : lovelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967300>
salience        : 2.637267971294932e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2df0>
salience        : 2.6283571060048416e-05
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2030>
salience        : 2.624497574288398e-05
wikipedia_url   : -
====================
name            : oxford street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067260>
salience        : 2.6217190679744817e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Oxford_Street
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673a0>
salience        : 2.618610415083822e-05
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067030>
salience        : 2.618610415083822e-05
wikipedia_url   : -
====================
name            : ballet rambe projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067080>
salience        : 2.6154471925110556e-05
wikipedia_url   : -
====================
name            : westminster westminsterabbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067bc0>
salience        : 2.613645301607903e-05
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067800>
salience        : 2.613368815218564e-05
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220679e0>
salience        : 2.613368815218564e-05
wikipedia_url   : -
====================
name            : oxford street wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b20>
salience        : 2.6122717827092856e-05
wikipedia_url   : -
====================
name            : go
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a80>
salience        : 2.6103685740963556e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 leebrowne1971 lumierelondon2018 lumierelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a30>
salience        : 2.6059613446705043e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d00>
salience        : 2.6041208911919966e-05
wikipedia_url   : -
====================
name            : miss
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c60>
salience        : 2.603510074550286e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067cb0>
salience        : 2.6028572392533533e-05
wikipedia_url   : -
====================
name            : project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067670>
salience        : 2.6025234546978027e-05
wikipedia_url   : -
====================
name            : spire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c10>
salience        : 2.6023752070614137e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067990>
salience        : 2.6022880774689838e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e40>
salience        : 2.6022880774689838e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067940>
salience        : 2.601122650958132e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1bfff030>
salience        : 2.601122650958132e-05
wikipedia_url   : -
====================
name            : spirits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3990>
salience        : 2.6000692741945386e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3210>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3120>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3080>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde35d0>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3530>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde34e0>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3580>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3490>
salience        : 2.5997358534368686e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33f0>
salience        : 2.5983841624110937e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33a0>
salience        : 2.597507045720704e-05
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde32b0>
salience        : 2.5948043912649155e-05
wikipedia_url   : -
====================
name            : host
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde36c0>
salience        : 2.5947192625608295e-05
wikipedia_url   : -
====================
name            : peek
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3030>
salience        : 2.5930285119102336e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde30d0>
salience        : 2.590162148408126e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3260>
salience        : 2.5878332962747663e-05
wikipedia_url   : -
====================
name            : rains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c60>
salience        : 2.5869479941320606e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde31c0>
salience        : 2.5869479941320606e-05
wikipedia_url   : -
====================
name            : rains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38a0>
salience        : 2.5869479941320606e-05
wikipedia_url   : -
====================
name            : leicestersquare aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a80>
salience        : 2.5868172087939456e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c10>
salience        : 2.5856650609057397e-05
wikipedia_url   : -
====================
name            : host
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b20>
salience        : 2.5855411877273582e-05
wikipedia_url   : -
====================
name            : host
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ad0>
salience        : 2.5855411877273582e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f30>
salience        : 2.5841976821538992e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3da0>
salience        : 2.5741635909071192e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3df0>
salience        : 2.556842446210794e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e90>
salience        : 2.5563798772054724e-05
wikipedia_url   : -
====================
name            : street gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b70>
salience        : 2.5528763217153028e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3940>
salience        : 2.5523728254484013e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3850>
salience        : 2.5512608772260137e-05
wikipedia_url   : -
====================
name            : granarysquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a30>
salience        : 2.5476681912550703e-05
wikipedia_url   : -
====================
name            : producer director cameraman promo coaching music video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde39e0>
salience        : 2.5294115403085016e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e40>
salience        : 2.5294115403085016e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48a0>
salience        : 2.5286035452154465e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4530>
salience        : 2.524360388633795e-05
wikipedia_url   : -
====================
name            : patrice warrener wave veigo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4620>
salience        : 2.5234947315766476e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4440>
salience        : 2.5227816877304576e-05
wikipedia_url   : -
====================
name            : mariana
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4da0>
salience        : 2.5205921701854095e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c60>
salience        : 2.5165270926663652e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4bc0>
salience        : 2.5153793103527278e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b20>
salience        : 2.5142728190985508e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a30>
salience        : 2.5126848413492553e-05
wikipedia_url   : -
====================
name            : hat video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4df0>
salience        : 2.509733894839883e-05
wikipedia_url   : -
====================
name            : patrice warrener westminsterabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48f0>
salience        : 2.5070030460483395e-05
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4580>
salience        : 2.5039955289685167e-05
wikipedia_url   : -
====================
name            : trafalgarsquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd42b0>
salience        : 2.5004746930790134e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd44e0>
salience        : 2.4988485165522434e-05
wikipedia_url   : -
====================
name            : amp culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4800>
salience        : 2.496568595233839e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ee0>
salience        : 2.495489752618596e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4f30>
salience        : 2.495489752618596e-05
wikipedia_url   : -
====================
name            : aichoketrust kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064080>
salience        : 2.4949729777290486e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643f0>
salience        : 2.492852945579216e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220640d0>
salience        : 2.490735460014548e-05
wikipedia_url   : -
====================
name            : lighta kingsx
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220646c0>
salience        : 2.4719129214645363e-05
wikipedia_url   : -
====================
name            : ken kesey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220644e0>
salience        : 2.468217098794412e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Ken_Kesey
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064580>
salience        : 2.465131001372356e-05
wikipedia_url   : -
====================
name            : ldn_culture loveldnlovecul aichoketrust justin_venn lumierelondon2018 lumierelondon ilyasayub_photo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064530>
salience        : 2.458805829519406e-05
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a80>
salience        : 2.4556722564739175e-05
wikipedia_url   : -
====================
name            : thank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220649e0>
salience        : 2.453025444992818e-05
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064990>
salience        : 2.446664984745439e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064800>
salience        : 2.446664984745439e-05
wikipedia_url   : -
====================
name            : winterlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064850>
salience        : 2.4450360797345638e-05
wikipedia_url   : -
====================
name            : use
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220647b0>
salience        : 2.4450360797345638e-05
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064760>
salience        : 2.442023833282292e-05
wikipedia_url   : -
====================
name            : flamingo animatronics
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648f0>
salience        : 2.442023833282292e-05
wikipedia_url   : -
====================
name            : chinatownlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064710>
salience        : 2.4414972358499654e-05
wikipedia_url   : -
====================
name            : sights amp sounds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220645d0>
salience        : 2.4392889827140607e-05
wikipedia_url   : -
====================
name            : city tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064260>
salience        : 2.4392889827140607e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon thisislondon westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ee0>
salience        : 2.438715637254063e-05
wikipedia_url   : -
====================
name            : animals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f80>
salience        : 2.4380105969612487e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220641c0>
salience        : 2.4378970920224674e-05
wikipedia_url   : -
====================
name            : rainbow colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064cb0>
salience        : 2.4378970920224674e-05
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f30>
salience        : 2.4323344405274838e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064d50>
salience        : 2.431318898743484e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064440>
salience        : 2.431318898743484e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c10>
salience        : 2.431318898743484e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8da0>
salience        : 2.431318898743484e-05
wikipedia_url   : -
====================
name            : tourists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c10>
salience        : 2.4303371901623905e-05
wikipedia_url   : -
====================
name            : phone chinatown
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8bc0>
salience        : 2.4250724891317077e-05
wikipedia_url   : -
====================
name            : opp aquarium installation check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a80>
salience        : 2.424098420306109e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ad0>
salience        : 2.4182465494959615e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b70>
salience        : 2.4179566025850363e-05
wikipedia_url   : -
====================
name            : granarysquare chinatownlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8df0>
salience        : 2.4169228709070012e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8940>
salience        : 2.4157086954801343e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8760>
salience        : 2.4151726393029094e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8710>
salience        : 2.4151726393029094e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8580>
salience        : 2.4151726393029094e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8440>
salience        : 2.413319452898577e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8850>
salience        : 2.413319452898577e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83a0>
salience        : 2.4123119146679528e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e90>
salience        : 2.4123119146679528e-05
wikipedia_url   : -
====================
name            : lumierelondon road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f30>
salience        : 2.410772503935732e-05
wikipedia_url   : -
====================
name            : meeting event liaison team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e40>
salience        : 2.4043665689532645e-05
wikipedia_url   : -
====================
name            : nohern lights pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc80d0>
salience        : 2.4032491637626663e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8080>
salience        : 2.4006292733247392e-05
wikipedia_url   : -
====================
name            : trail
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8120>
salience        : 2.3989676265046e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220755d0>
salience        : 2.3978156605153345e-05
wikipedia_url   : -
====================
name            : project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220752b0>
salience        : 2.3965742002474144e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075120>
salience        : 2.3940750907058828e-05
wikipedia_url   : -
====================
name            : leakestreet miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220751c0>
salience        : 2.39400706050219e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220750d0>
salience        : 2.3936005163704976e-05
wikipedia_url   : -
====================
name            : sliceofthecity umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075030>
salience        : 2.3928036171128042e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075300>
salience        : 2.3920705643831752e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220754e0>
salience        : 2.3920705643831752e-05
wikipedia_url   : -
====================
name            : sliceofthecity umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075530>
salience        : 2.3916480131447315e-05
wikipedia_url   : -
====================
name            : sliceofthecity umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220756c0>
salience        : 2.3916480131447315e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075350>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075800>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075760>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753f0>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075710>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d00>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c60>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : architecture exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075bc0>
salience        : 2.3857142878114246e-05
wikipedia_url   : -
====================
name            : bye london thisislondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c10>
salience        : 2.381104786763899e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220759e0>
salience        : 2.381104786763899e-05
wikipedia_url   : -
====================
name            : cross road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075990>
salience        : 2.3805483579053544e-05
wikipedia_url   : -
====================
name            : cross road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d50>
salience        : 2.3796985260560177e-05
wikipedia_url   : -
====================
name            : cross road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075580>
salience        : 2.3796985260560177e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f30>
salience        : 2.3794289518264122e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075850>
salience        : 2.3792828869773075e-05
wikipedia_url   : -
====================
name            : child hood collectif coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f80>
salience        : 2.3735548893455416e-05
wikipedia_url   : -
====================
name            : head
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075df0>
salience        : 2.372544076933991e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e40>
salience        : 2.3710124878562056e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d940>
salience        : 2.3630720534129068e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8a0>
salience        : 2.36149880947778e-05
wikipedia_url   : -
====================
name            : street arches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d850>
salience        : 2.3604960006196052e-05
wikipedia_url   : -
====================
name            : visitlondon london lumierelondon londonblogger wintersinlondon nightfestival aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d030>
salience        : 2.3603293811902404e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d350>
salience        : 2.359054451517295e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf1c0>
salience        : 2.359054451517295e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf5d0>
salience        : 2.3483458789996803e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf8a0>
salience        : 2.347482404729817e-05
wikipedia_url   : -
====================
name            : gt
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf4e0>
salience        : 2.34697599807987e-05
wikipedia_url   : -
====================
name            : pa hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015d50>
salience        : 2.3444150428986177e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015ad0>
salience        : 2.342787956877146e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0157b0>
salience        : 2.341380422876682e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9440>
salience        : 2.3407019398291595e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9710>
salience        : 2.3407019398291595e-05
wikipedia_url   : -
====================
name            : order prints lumierelondon facade landmark architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9e080>
salience        : 2.3400392819894478e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6a30>
salience        : 2.3386710381601006e-05
wikipedia_url   : -
====================
name            : miss
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d50>
salience        : 2.3349641196546145e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c60>
salience        : 2.3279233573703095e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e90>
salience        : 2.3239435904542916e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7030>
salience        : 2.3233653337229043e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73a0>
salience        : 2.3233653337229043e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde75d0>
salience        : 2.3227987185236998e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ad0>
salience        : 2.322243199159857e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7990>
salience        : 2.322243199159857e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7940>
salience        : 2.322243199159857e-05
wikipedia_url   : -
====================
name            : set scene
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde74e0>
salience        : 2.320540079381317e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e40>
salience        : 2.3174050511443056e-05
wikipedia_url   : -
====================
name            : love motion royal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c10>
salience        : 2.3098857127479278e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7300>
salience        : 2.3058508304529823e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7490>
salience        : 2.305027737747878e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d620>
salience        : 2.3049055016599596e-05
wikipedia_url   : -
====================
name            : transforms
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d260>
salience        : 2.3042279281071387e-05
wikipedia_url   : -
====================
name            : perspective
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d210>
salience        : 2.3024673282634467e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d080>
salience        : 2.3010094082565047e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d030>
salience        : 2.3010094082565047e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d530>
salience        : 2.2999398424872197e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d440>
salience        : 2.2997352061793208e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc10>
salience        : 2.2984087991062552e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc60>
salience        : 2.2984087991062552e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da80>
salience        : 2.297678292961791e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d990>
salience        : 2.2974327293923125e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d490>
salience        : 2.2953727238927968e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dee0>
salience        : 2.284766742377542e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3f0>
salience        : 2.284766742377542e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de90>
salience        : 2.284766742377542e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8a0>
salience        : 2.2816388081992045e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de40>
salience        : 2.2816388081992045e-05
wikipedia_url   : -
====================
name            : share experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc76c0>
salience        : 2.280784428876359e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7580>
salience        : 2.2801978047937155e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc75d0>
salience        : 2.2788277419749647e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73a0>
salience        : 2.2788277419749647e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7490>
salience        : 2.2781674488214776e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc71c0>
salience        : 2.2770362193114124e-05
wikipedia_url   : -
====================
name            : share experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7080>
salience        : 2.2751019059796818e-05
wikipedia_url   : -
====================
name            : london lumierelightfestival lumierelightfestival2018 exitmagazine maxcoopermax
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7bc0>
salience        : 2.2740239728591405e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b70>
salience        : 2.2704403818352148e-05
wikipedia_url   : -
====================
name            : tracyemin
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c10>
salience        : 2.2649075617664494e-05
wikipedia_url   : -
====================
name            : experiences
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7850>
salience        : 2.2630276362178847e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d940>
salience        : 2.262755879200995e-05
wikipedia_url   : -
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76e40>
salience        : 2.255717117805034e-05
wikipedia_url   : -
====================
name            : london leebrowne1971 lumierelondon2018 lumierelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e4e0>
salience        : 2.2556521798833273e-05
wikipedia_url   : -
====================
name            : fishes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e8f0>
salience        : 2.2547068510903046e-05
wikipedia_url   : -
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1eb20>
salience        : 2.2523330699186772e-05
wikipedia_url   : -
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ecb0>
salience        : 2.2523330699186772e-05
wikipedia_url   : -
====================
name            : lumiere wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ef30>
salience        : 2.2514381271321326e-05
wikipedia_url   : -
====================
name            : freedom fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5260>
salience        : 2.2514381271321326e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5760>
salience        : 2.247679185529705e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea58f0>
salience        : 2.2426669602282345e-05
wikipedia_url   : -
====================
name            : lighting london night wave
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea59e0>
salience        : 2.240835783595685e-05
wikipedia_url   : -
====================
name            : amateurphotography lights colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5b70>
salience        : 2.235204192402307e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5f30>
salience        : 2.2344707758747973e-05
wikipedia_url   : -
====================
name            : illuminatedriv fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93300>
salience        : 2.2331123545882292e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938f0>
salience        : 2.2328980776364915e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93cb0>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93da0>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7120>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7300>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7620>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7850>
salience        : 2.2298396288533695e-05
wikipedia_url   : -
====================
name            : lumierelondon neon light lighting colour
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7e90>
salience        : 2.2294949303613976e-05
wikipedia_url   : -
====================
name            : lumierelondon neon light lighting colour
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a698f0>
salience        : 2.2294949303613976e-05
wikipedia_url   : -
====================
name            : fear
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69940>
salience        : 2.2284313672571443e-05
wikipedia_url   : -
====================
name            : street level level playing field
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69d00>
salience        : 2.2234324205783196e-05
wikipedia_url   : -
====================
name            : visitlondon action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69f80>
salience        : 2.222314833488781e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e933a0>
salience        : 2.2212414478417486e-05
wikipedia_url   : -
====================
name            : london lumiere kingscrossn1c beauty_blah visitlondon kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e937b0>
salience        : 2.2196660211193375e-05
wikipedia_url   : -
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93da0>
salience        : 2.2182557586347684e-05
wikipedia_url   : -
====================
name            : nkirkwoodlondon celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5b20>
salience        : 2.2182557586347684e-05
wikipedia_url   : -
====================
name            : progress
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5da0>
salience        : 2.2182557586347684e-05
wikipedia_url   : -
====================
name            : phone box favourite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5f80>
salience        : 2.218167355749756e-05
wikipedia_url   : -
====================
name            : umbrella project regent
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5300>
salience        : 2.217598375864327e-05
wikipedia_url   : -
====================
name            : faves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5440>
salience        : 2.2153444660943933e-05
wikipedia_url   : -
====================
name            : david batchelor 60minutespectrum
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5990>
salience        : 2.2136520783533342e-05
wikipedia_url   : -
====================
name            : cambridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfbc0>
salience        : 2.2136520783533342e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Cambridge,_Massachusetts
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29b20>
salience        : 2.2111340513220057e-05
wikipedia_url   : -
====================
name            : pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24530>
salience        : 2.210600723628886e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24ee0>
salience        : 2.210522143286653e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81620>
salience        : 2.2099236957728863e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc490>
salience        : 2.2099236957728863e-05
wikipedia_url   : -
====================
name            : installation sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc530>
salience        : 2.2036432710592635e-05
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc800>
salience        : 2.201725510531105e-05
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcda0>
salience        : 2.1965479390928522e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc210>
salience        : 2.1951051166979596e-05
wikipedia_url   : -
====================
name            : sroosegaarde pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b170>
salience        : 2.193451473431196e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bc10>
salience        : 2.191646308347117e-05
wikipedia_url   : -
====================
name            : tinyplanet 360video
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3e8f0>
salience        : 2.1888086848775856e-05
wikipedia_url   : -
====================
name            : obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a98bc0>
salience        : 2.1888086848775856e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229db530>
salience        : 2.1886562535655685e-05
wikipedia_url   : -
====================
name            : awork
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c60>
salience        : 2.1883310182602145e-05
wikipedia_url   : -
====================
name            : gin costs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b20>
salience        : 2.187296558986418e-05
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a80>
salience        : 2.187252903240733e-05
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2990>
salience        : 2.187252903240733e-05
wikipedia_url   : -
====================
name            : laughter southmoltonstreet musical
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d50>
salience        : 2.1852196368854493e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2800>
salience        : 2.1837906388100237e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd25d0>
salience        : 2.1837906388100237e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd24e0>
salience        : 2.1833307982888073e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2530>
salience        : 2.1833307982888073e-05
wikipedia_url   : -
====================
name            : patrols
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2350>
salience        : 2.1821510017616674e-05
wikipedia_url   : -
====================
name            : que tengo que hacer para estar
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2f30>
salience        : 2.179756120312959e-05
wikipedia_url   : -
====================
name            : lumière à londres
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2120>
salience        : 2.1776033463538624e-05
wikipedia_url   : -
====================
name            : metpoliceevents londonfire
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d50>
salience        : 2.1770825696876273e-05
wikipedia_url   : -
====================
name            : katarzyna malejka joachim
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067530>
salience        : 2.1753015971626155e-05
wikipedia_url   : -
====================
name            : park
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067210>
salience        : 2.1746911443187855e-05
wikipedia_url   : -
====================
name            : silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite cheekychops
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf120>
salience        : 2.1730189473601058e-05
wikipedia_url   : -
====================
name            : donotrefreeze
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf300>
salience        : 2.1718296920880675e-05
wikipedia_url   : -
====================
name            : westhandyside canopy laugh
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bfcb0>
salience        : 2.169315303035546e-05
wikipedia_url   : -
====================
name            : visitlondon victoriabid createvictoria aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf6c0>
salience        : 2.1676594769814983e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf2b0>
salience        : 2.163337921956554e-05
wikipedia_url   : -
====================
name            : timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon btpvolunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf620>
salience        : 2.1631987692671828e-05
wikipedia_url   : -
====================
name            : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon stmaininthefields
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8f0>
salience        : 2.1631987692671828e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bead0>
salience        : 2.1628102331305854e-05
wikipedia_url   : -
====================
name            : londonisopen highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be9e0>
salience        : 2.1617857782985084e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed00>
salience        : 2.1612881027976982e-05
wikipedia_url   : -
====================
name            : american
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb20>
salience        : 2.1612249838653952e-05
wikipedia_url   : https://en.wikipedia.org/wiki/United_States
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bec10>
salience        : 2.1605654183076695e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef30>
salience        : 2.1605654183076695e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220becb0>
salience        : 2.1605654183076695e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed50>
salience        : 2.1598261810140684e-05
wikipedia_url   : -
====================
name            : lightfestival visitlondon aichoketrust westminsterabbey lumiere lumierelondon westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bedf0>
salience        : 2.1596431906800717e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee40>
salience        : 2.1594642021227628e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito experiencias londres2018 alloaconnecting
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beee0>
salience        : 2.1593892597593367e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8a0>
salience        : 2.1580455722869374e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef80>
salience        : 2.1580455722869374e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea30>
salience        : 2.157725793949794e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be940>
salience        : 2.1576732251560315e-05
wikipedia_url   : -
====================
name            : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature fouhstreetdan benjamingammon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be4e0>
salience        : 2.1576732251560315e-05
wikipedia_url   : -
====================
name            : fishes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be210>
salience        : 2.157295421056915e-05
wikipedia_url   : -
====================
name            : lights darkness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be760>
salience        : 2.156453592760954e-05
wikipedia_url   : -
====================
name            : lumierelondon kingscross granarysquare visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee90>
salience        : 2.1555082639679313e-05
wikipedia_url   : -
====================
name            : power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec60>
salience        : 2.1550009478232823e-05
wikipedia_url   : -
====================
name            : leicestersquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e210>
salience        : 2.1527126591536216e-05
wikipedia_url   : -
====================
name            : wildlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e260>
salience        : 2.1502401068573818e-05
wikipedia_url   : -
====================
name            : dismantling thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e120>
salience        : 2.1502401068573818e-05
wikipedia_url   : -
====================
name            : dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e170>
salience        : 2.1502401068573818e-05
wikipedia_url   : -
====================
name            : dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e030>
salience        : 2.147296254406683e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e2b0>
salience        : 2.1470295905601233e-05
wikipedia_url   : -
====================
name            : amp pandora box brightnights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e490>
salience        : 2.146263068425469e-05
wikipedia_url   : -
====================
name            : waterlicht sroosegaarde pa catch
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e670>
salience        : 2.145394500985276e-05
wikipedia_url   : -
====================
name            : amp brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e300>
salience        : 2.1440901036839932e-05
wikipedia_url   : -
====================
name            : amp pandora box brightnights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e710>
salience        : 2.1427358660730533e-05
wikipedia_url   : -
====================
name            : marshalljulius london leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e6c0>
salience        : 2.1420366465463303e-05
wikipedia_url   : -
====================
name            : gt brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ecb0>
salience        : 2.141448567272164e-05
wikipedia_url   : -
====================
name            : gt brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec10>
salience        : 2.141448567272164e-05
wikipedia_url   : -
====================
name            : childhood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb20>
salience        : 2.141448567272164e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ebc0>
salience        : 2.1411262423498556e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ead0>
salience        : 2.1400499463197775e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e990>
salience        : 2.1400499463197775e-05
wikipedia_url   : -
====================
name            : thought
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e9e0>
salience        : 2.1390163965406828e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e940>
salience        : 2.138288073183503e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea80>
salience        : 2.1367539375205524e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed00>
salience        : 2.1367539375205524e-05
wikipedia_url   : -
====================
name            : jubileeline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e760>
salience        : 2.1361411199904978e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e530>
salience        : 2.1353052943595685e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e350>
salience        : 2.134839814971201e-05
wikipedia_url   : -
====================
name            : lumierelondon neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e800>
salience        : 2.1343825210351497e-05
wikipedia_url   : -
====================
name            : tfltrafficnews road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef30>
salience        : 2.1334913981263526e-05
wikipedia_url   : -
====================
name            : circus tube station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eee0>
salience        : 2.1330570234567858e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eda0>
salience        : 2.131107248715125e-05
wikipedia_url   : -
====================
name            : granarysquare rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e620>
salience        : 2.1231606297078542e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081080>
salience        : 2.1221685528871603e-05
wikipedia_url   : -
====================
name            : king cross station
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081440>
salience        : 2.1214109438005835e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081670>
salience        : 2.1179246687097475e-05
wikipedia_url   : -
====================
name            : lighta neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081490>
salience        : 2.116652285621967e-05
wikipedia_url   : -
====================
name            : lighta neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081350>
salience        : 2.1160389223950915e-05
wikipedia_url   : -
====================
name            : power station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081120>
salience        : 2.1160389223950915e-05
wikipedia_url   : -
====================
name            : king cross station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081170>
salience        : 2.1160389223950915e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220812b0>
salience        : 2.1154397472855635e-05
wikipedia_url   : -
====================
name            : king cross station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a80>
salience        : 2.114854214596562e-05
wikipedia_url   : -
====================
name            : audio guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081710>
salience        : 2.1105975974933244e-05
wikipedia_url   : -
====================
name            : audio guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220819e0>
salience        : 2.1105975974933244e-05
wikipedia_url   : -
====================
name            : shopping guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220815d0>
salience        : 2.1074311007396318e-05
wikipedia_url   : -
====================
name            : triptych
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ee0>
salience        : 2.1061852748971432e-05
wikipedia_url   : -
====================
name            : dot aichoketrust legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e40>
salience        : 2.1047402697149664e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d50>
salience        : 2.104735358443577e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d00>
salience        : 2.1039615603513084e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c60>
salience        : 2.1034660676377825e-05
wikipedia_url   : -
====================
name            : idea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c10>
salience        : 2.102843063767068e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b20>
salience        : 2.102480902976822e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081f30>
salience        : 2.102480902976822e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081990>
salience        : 2.1021729480708018e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081530>
salience        : 2.1016889149905182e-05
wikipedia_url   : -
====================
name            : hat details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081850>
salience        : 2.1013616787968203e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081800>
salience        : 2.1010811906307936e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4b20>
salience        : 2.100742858601734e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4670>
salience        : 2.1004090740461834e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c48a0>
salience        : 2.1004090740461834e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc60>
salience        : 2.1004090740461834e-05
wikipedia_url   : -
====================
name            : idea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c210>
salience        : 2.1004090740461834e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c4e0>
salience        : 2.100079473166261e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c170>
salience        : 2.100079473166261e-05
wikipedia_url   : -
====================
name            : place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c120>
salience        : 2.100079473166261e-05
wikipedia_url   : -
====================
name            : marlborough
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c0d0>
salience        : 2.096028401865624e-05
wikipedia_url   : -
====================
name            : sculptures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8a0>
salience        : 2.0949815734638833e-05
wikipedia_url   : -
====================
name            : aichoketrust lumierelondon2018 visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c7b0>
salience        : 2.0852796296821907e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c620>
salience        : 2.0847332052653655e-05
wikipedia_url   : -
====================
name            : picture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c5d0>
salience        : 2.0837822376051918e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c710>
salience        : 2.0833198504988104e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3f0>
salience        : 2.0833198504988104e-05
wikipedia_url   : -
====================
name            : picture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf30>
salience        : 2.0824194507440552e-05
wikipedia_url   : -
====================
name            : picture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cbc0>
salience        : 2.0819810742978007e-05
wikipedia_url   : -
====================
name            : uk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cee0>
salience        : 2.0810355636058375e-05
wikipedia_url   : https://en.wikipedia.org/wiki/United_Kingdom
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cdf0>
salience        : 2.0800644051632844e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cda0>
salience        : 2.0800644051632844e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc10>
salience        : 2.0722342014778405e-05
wikipedia_url   : -
====================
name            : oppounities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb20>
salience        : 2.0705028873635456e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c490>
salience        : 2.0697118088719435e-05
wikipedia_url   : -
====================
name            : mayfair london estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd00>
salience        : 2.0656636479543522e-05
wikipedia_url   : -
====================
name            : waves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf580>
salience        : 2.062054591078777e-05
wikipedia_url   : -
====================
name            : appeal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf440>
salience        : 2.0602261429303326e-05
wikipedia_url   : -
====================
name            : swipeleft fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf530>
salience        : 2.0596993635990657e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey mpsonthewater southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe40>
salience        : 2.0582192519214004e-05
wikipedia_url   : -
====================
name            : camera lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe90>
salience        : 2.0574056179611944e-05
wikipedia_url   : -
====================
name            : lomographyuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff30>
salience        : 2.0561061319313012e-05
wikipedia_url   : -
====================
name            : camera lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd50>
salience        : 2.0561061319313012e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc60>
salience        : 2.0548708562273532e-05
wikipedia_url   : -
====================
name            : performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb20>
salience        : 2.0536937881843187e-05
wikipedia_url   : -
====================
name            : srmlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa30>
salience        : 2.0467174181248993e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfad0>
salience        : 2.0467174181248993e-05
wikipedia_url   : -
====================
name            : umbrella performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf9e0>
salience        : 2.0442372260731645e-05
wikipedia_url   : -
====================
name            : ave fi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf940>
salience        : 2.0442372260731645e-05
wikipedia_url   : -
====================
name            : frog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8f0>
salience        : 2.0442372260731645e-05
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf990>
salience        : 2.0426321498234756e-05
wikipedia_url   : -
====================
name            : crowds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc10>
salience        : 2.0422648958628997e-05
wikipedia_url   : -
====================
name            : visitlondon southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf7b0>
salience        : 2.041143125097733e-05
wikipedia_url   : -
====================
name            : wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf760>
salience        : 2.0302992197684944e-05
wikipedia_url   : -
====================
name            : viewing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf490>
salience        : 2.0302992197684944e-05
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf080>
salience        : 2.028874951065518e-05
wikipedia_url   : -
====================
name            : victoria
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf2b0>
salience        : 2.0264445993234403e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Victoria,_London
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf5d0>
salience        : 2.0254839910194278e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf350>
salience        : 2.0216635675751604e-05
wikipedia_url   : -
====================
name            : pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf4e0>
salience        : 2.0182023945380934e-05
wikipedia_url   : -
====================
name            : pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e40>
salience        : 2.0175652025500312e-05
wikipedia_url   : -
====================
name            : waterlicht sroosegaarde pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893f0>
salience        : 2.0175652025500312e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089620>
salience        : 2.0107052478124388e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089440>
salience        : 2.003044937737286e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089300>
salience        : 2.003044937737286e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089350>
salience        : 2.0020581359858625e-05
wikipedia_url   : -
====================
name            : aichoketrust legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089260>
salience        : 2.0015793779748492e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067120>
salience        : 2.0006489648949355e-05
wikipedia_url   : -
====================
name            : job mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067850>
salience        : 1.9981984223704785e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067710>
salience        : 1.99806072487263e-05
wikipedia_url   : -
====================
name            : carnaby
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678a0>
salience        : 1.9968540073023178e-05
wikipedia_url   : -
====================
name            : lumierelondon stjamessquare oxfordstreet regentstreet
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067f30>
salience        : 1.9922581486753188e-05
wikipedia_url   : -
====================
name            : thewave veigo eatsleepshootuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067760>
salience        : 1.992220313695725e-05
wikipedia_url   : -
====================
name            : westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3670>
salience        : 1.987601353903301e-05
wikipedia_url   : -
====================
name            : londonblogger wintersinlondon nightfestival londonwhispers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3300>
salience        : 1.987601353903301e-05
wikipedia_url   : -
====================
name            : westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38f0>
salience        : 1.987601353903301e-05
wikipedia_url   : -
====================
name            : magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3bc0>
salience        : 1.9866187358275056e-05
wikipedia_url   : -
====================
name            : herroyalj visitlondon thelondoneye kingscrossn1c wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f80>
salience        : 1.986577990464866e-05
wikipedia_url   : -
====================
name            : mayoroflondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e40>
salience        : 1.9853814592352137e-05
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d00>
salience        : 1.981709647225216e-05
wikipedia_url   : -
====================
name            : legacy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3710>
salience        : 1.9800641894107684e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3170>
salience        : 1.979923945327755e-05
wikipedia_url   : -
====================
name            : amp brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3760>
salience        : 1.9774844986386597e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d50>
salience        : 1.9764178432524204e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd43a0>
salience        : 1.975732266146224e-05
wikipedia_url   : -
====================
name            : insight magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4710>
salience        : 1.9752504158532247e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4760>
salience        : 1.9752422304009087e-05
wikipedia_url   : -
====================
name            : london uk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c10>
salience        : 1.9749331841012463e-05
wikipedia_url   : -
====================
name            : lumierelondon images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a80>
salience        : 1.973424332391005e-05
wikipedia_url   : -
====================
name            : colleague
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b70>
salience        : 1.9719804186024703e-05
wikipedia_url   : -
====================
name            : westminsterabbey wabbey
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4940>
salience        : 1.9706963939825073e-05
wikipedia_url   : -
====================
name            : installation lovemotion royalacademy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4490>
salience        : 1.9706185412360355e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e90>
salience        : 1.967712705663871e-05
wikipedia_url   : -
====================
name            : installation light spirit london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ad0>
salience        : 1.9644554413389415e-05
wikipedia_url   : -
====================
name            : streets london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e40>
salience        : 1.9641547623905353e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064120>
salience        : 1.9635648641269654e-05
wikipedia_url   : -
====================
name            : lumière london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064350>
salience        : 1.9632750991149805e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064210>
salience        : 1.9629889720818028e-05
wikipedia_url   : -
====================
name            : londonlumiere lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a30>
salience        : 1.9627063011284918e-05
wikipedia_url   : -
====================
name            : leicestersquare london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064940>
salience        : 1.9624267224571668e-05
wikipedia_url   : -
====================
name            : glow london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643a0>
salience        : 1.9616074496298097e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e90>
salience        : 1.9599585357354954e-05
wikipedia_url   : -
====================
name            : rain someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064670>
salience        : 1.9549486751202494e-05
wikipedia_url   : -
====================
name            : case study events management
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064da0>
salience        : 1.954770414158702e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8170>
salience        : 1.954770414158702e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c60>
salience        : 1.954770414158702e-05
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a30>
salience        : 1.954770414158702e-05
wikipedia_url   : -
====================
name            : station
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88f0>
salience        : 1.9545866962289438e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88a0>
salience        : 1.9542299924069084e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc86c0>
salience        : 1.9535504179657437e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8620>
salience        : 1.9535324099706486e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8530>
salience        : 1.9535324099706486e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc85d0>
salience        : 1.9535324099706486e-05
wikipedia_url   : -
====================
name            : minds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc87b0>
salience        : 1.9526765754562803e-05
wikipedia_url   : -
====================
name            : installation trees
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8350>
salience        : 1.9526765754562803e-05
wikipedia_url   : -
====================
name            : engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f80>
salience        : 1.951695048774127e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8260>
salience        : 1.9515544408932328e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075cb0>
salience        : 1.9512403014232405e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075490>
salience        : 1.950752266566269e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075170>
salience        : 1.950752266566269e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075080>
salience        : 1.950624027813319e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b70>
salience        : 1.949946272361558e-05
wikipedia_url   : -
====================
name            : case study events management
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b20>
salience        : 1.9489723854348995e-05
wikipedia_url   : -
====================
name            : engcathedrals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a30>
salience        : 1.945769508893136e-05
wikipedia_url   : -
====================
name            : somewhere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758f0>
salience        : 1.945769508893136e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075440>
salience        : 1.942839298862964e-05
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075620>
salience        : 1.9395665731281042e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075da0>
salience        : 1.9392127796891145e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d800>
salience        : 1.938520472322125e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01dad0>
salience        : 1.938520472322125e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d530>
salience        : 1.938520472322125e-05
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf940>
salience        : 1.9381817764951847e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf0d0>
salience        : 1.9373737814021297e-05
wikipedia_url   : -
====================
name            : festival light aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015490>
salience        : 1.9320672436151654e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0154e0>
salience        : 1.931547922140453e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9760>
salience        : 1.929725840454921e-05
wikipedia_url   : -
====================
name            : triptych
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6ad0>
salience        : 1.9293935110908933e-05
wikipedia_url   : -
====================
name            : triptych
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7120>
salience        : 1.9290657292003743e-05
wikipedia_url   : -
====================
name            : royalacademy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde71c0>
salience        : 1.9263665308244526e-05
wikipedia_url   : -
====================
name            : ldn_gov
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde79e0>
salience        : 1.9173456166754477e-05
wikipedia_url   : https://en.wikipedia.org/wiki/.gov
====================
name            : event hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7760>
salience        : 1.9102333681075834e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7da0>
salience        : 1.9093284208793193e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd00>
salience        : 1.9093284208793193e-05
wikipedia_url   : -
====================
name            : thelondoneye lumierelondon regentstreet piccadilly
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d300>
salience        : 1.9066656022914685e-05
wikipedia_url   : -
====================
name            : royalacademy piano
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d170>
salience        : 1.9062248611589894e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d710>
salience        : 1.8962715330417268e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd50>
salience        : 1.8931550584966317e-05
wikipedia_url   : -
====================
name            : coin child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da30>
salience        : 1.8925033145933412e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73f0>
salience        : 1.8913662643171847e-05
wikipedia_url   : -
====================
name            : gt mondaymotivation thinkingcity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc72b0>
salience        : 1.8901384464697912e-05
wikipedia_url   : -
====================
name            : chrisplant one
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78f0>
salience        : 1.8894337699748576e-05
wikipedia_url   : -
====================
name            : chrisplant one
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7760>
salience        : 1.8894337699748576e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dad260>
salience        : 1.8875009118346497e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1edf0>
salience        : 1.8850703781936318e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5580>
salience        : 1.8796525182551704e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5df0>
salience        : 1.8796525182551704e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93760>
salience        : 1.8761205865303054e-05
wikipedia_url   : -
====================
name            : wabbey lumierelondon2018 visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a69300>
salience        : 1.8721597371040843e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e93760>
salience        : 1.8619693946675397e-05
wikipedia_url   : -
====================
name            : excuse catch check highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5620>
salience        : 1.8583681594463997e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5080>
salience        : 1.857799361459911e-05
wikipedia_url   : -
====================
name            : billboard planet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac58a0>
salience        : 1.8567512597655877e-05
wikipedia_url   : -
====================
name            : excuse catch check highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de98a0>
salience        : 1.8558928786660545e-05
wikipedia_url   : -
====================
name            : piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a29440>
salience        : 1.8554255802882835e-05
wikipedia_url   : -
====================
name            : plant
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24120>
salience        : 1.8554255802882835e-05
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a24cb0>
salience        : 1.8545104467193596e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a819e0>
salience        : 1.8544800695963204e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abcc60>
salience        : 1.853572393883951e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b490>
salience        : 1.84936016012216e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a981c0>
salience        : 1.847233943408355e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967490>
salience        : 1.847233943408355e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ad0>
salience        : 1.8460672436049208e-05
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28f0>
salience        : 1.8442960936226882e-05
wikipedia_url   : -
====================
name            : brand
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220891c0>
salience        : 1.842892015702091e-05
wikipedia_url   : -
====================
name            : pleasures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220890d0>
salience        : 1.842892015702091e-05
wikipedia_url   : -
====================
name            : thisislondon leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089210>
salience        : 1.842514393501915e-05
wikipedia_url   : -
====================
name            : branches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089030>
salience        : 1.8419261323288083e-05
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089670>
salience        : 1.839326614572201e-05
wikipedia_url   : -
====================
name            : food cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220896c0>
salience        : 1.839326614572201e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220894e0>
salience        : 1.8390566765447147e-05
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898f0>
salience        : 1.838958269217983e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898a0>
salience        : 1.8385959265287966e-05
wikipedia_url   : -
====================
name            : atransformslives
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e90>
salience        : 1.838432035583537e-05
wikipedia_url   : -
====================
name            : stewards
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d00>
salience        : 1.836870433180593e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089cb0>
salience        : 1.836128649301827e-05
wikipedia_url   : -
====================
name            : sculptures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089bc0>
salience        : 1.8305061530554667e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ad0>
salience        : 1.8292841559741646e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a80>
salience        : 1.8292841559741646e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089710>
salience        : 1.8288839783053845e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220897b0>
salience        : 1.828573294915259e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220899e0>
salience        : 1.828573294915259e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5b20>
salience        : 1.8276665286975913e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5440>
salience        : 1.8276665286975913e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5760>
salience        : 1.8268474377691746e-05
wikipedia_url   : -
====================
name            : aichoketrust carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5710>
salience        : 1.826512198022101e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5cb0>
salience        : 1.8262779121869244e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5990>
salience        : 1.8257225747220218e-05
wikipedia_url   : -
====================
name            : courses amp cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5620>
salience        : 1.8251806977787055e-05
wikipedia_url   : -
====================
name            : courses amp cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c55d0>
salience        : 1.8251806977787055e-05
wikipedia_url   : -
====================
name            : biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5850>
salience        : 1.8193881260231137e-05
wikipedia_url   : -
====================
name            : wiermann frictions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5670>
salience        : 1.8128190276911482e-05
wikipedia_url   : -
====================
name            : wiermann frictions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f80>
salience        : 1.8118553271051496e-05
wikipedia_url   : -
====================
name            : 2018 leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58f0>
salience        : 1.8092245227308013e-05
wikipedia_url   : -
====================
name            : production students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58a0>
salience        : 1.80883398570586e-05
wikipedia_url   : -
====================
name            : plants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3f0>
salience        : 1.8078964785672724e-05
wikipedia_url   : -
====================
name            : thelondoneye loki_lego lumierelondon trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce490>
salience        : 1.8071301383315586e-05
wikipedia_url   : -
====================
name            : laughter southmoltonstreet musical
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce350>
salience        : 1.8070571968564764e-05
wikipedia_url   : -
====================
name            : mpsprinces team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce120>
salience        : 1.805219471862074e-05
wikipedia_url   : -
====================
name            : students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce030>
salience        : 1.8043272575596347e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce0d0>
salience        : 1.8037710106000304e-05
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce210>
salience        : 1.8027836631517857e-05
wikipedia_url   : -
====================
name            : royalacademy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098df0>
salience        : 1.8012307918979786e-05
wikipedia_url   : -
====================
name            : colleagues
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b20>
salience        : 1.8012307918979786e-05
wikipedia_url   : -
====================
name            : neon ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e90>
salience        : 1.8010723579209298e-05
wikipedia_url   : -
====================
name            : pinterest board selection books
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098cb0>
salience        : 1.8005792298936285e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983a0>
salience        : 1.7996087990468368e-05
wikipedia_url   : -
====================
name            : supercube look camera
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098300>
salience        : 1.7954112990992144e-05
wikipedia_url   : -
====================
name            : asalto london victoriabid embspainuk spaincultureuk kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098210>
salience        : 1.7931921320268884e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220981c0>
salience        : 1.782963408913929e-05
wikipedia_url   : -
====================
name            : nightlife chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon biuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098120>
salience        : 1.7816577383200638e-05
wikipedia_url   : -
====================
name            : mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon biuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098030>
salience        : 1.7804715753300115e-05
wikipedia_url   : -
====================
name            : eye updates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983f0>
salience        : 1.776968565536663e-05
wikipedia_url   : -
====================
name            : food
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098620>
salience        : 1.776010867615696e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098940>
salience        : 1.7674168702797033e-05
wikipedia_url   : -
====================
name            : lumierelondon timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b70>
salience        : 1.7620197468204424e-05
wikipedia_url   : -
====================
name            : canon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a30>
salience        : 1.7574091543792747e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a80>
salience        : 1.753774267854169e-05
wikipedia_url   : -
====================
name            : voyages
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098800>
salience        : 1.7534668586449698e-05
wikipedia_url   : -
====================
name            : scenes
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220984e0>
salience        : 1.7534668586449698e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220987b0>
salience        : 1.752958633005619e-05
wikipedia_url   : -
====================
name            : canon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098760>
salience        : 1.7524624126963317e-05
wikipedia_url   : -
====================
name            : go
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098bc0>
salience        : 1.7524624126963317e-05
wikipedia_url   : -
====================
name            : power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988f0>
salience        : 1.751154923113063e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 london aquarium
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098440>
salience        : 1.7481166651123203e-05
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e40>
salience        : 1.7459165974287316e-05
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098da0>
salience        : 1.7459165974287316e-05
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f80>
salience        : 1.7456071873311885e-05
wikipedia_url   : -
====================
name            : aichoketrust aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958a0>
salience        : 1.7326974557363428e-05
wikipedia_url   : -
====================
name            : child hood lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c10>
salience        : 1.727765629766509e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095490>
salience        : 1.7270360331167467e-05
wikipedia_url   : -
====================
name            : carnabylondon london lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220950d0>
salience        : 1.7267982912017033e-05
wikipedia_url   : -
====================
name            : night sky
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220952b0>
salience        : 1.7221896996488795e-05
wikipedia_url   : -
====================
name            : go pop
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095440>
salience        : 1.7220661902683787e-05
wikipedia_url   : -
====================
name            : benjamingammon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095300>
salience        : 1.720977707009297e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220957b0>
salience        : 1.7198319255840033e-05
wikipedia_url   : -
====================
name            : website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095800>
salience        : 1.719618376228027e-05
wikipedia_url   : -
====================
name            : levanterman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095670>
salience        : 1.7187456251122057e-05
wikipedia_url   : -
====================
name            : experience pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095580>
salience        : 1.715945836622268e-05
wikipedia_url   : -
====================
name            : canary wharf adamscottg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220956c0>
salience        : 1.715789403533563e-05
wikipedia_url   : -
====================
name            : londonwalks ghosts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095940>
salience        : 1.715789403533563e-05
wikipedia_url   : -
====================
name            : detail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953f0>
salience        : 1.7136288079200312e-05
wikipedia_url   : -
====================
name            : reasons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953a0>
salience        : 1.713200254016556e-05
wikipedia_url   : -
====================
name            : decision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095260>
salience        : 1.713200254016556e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b20>
salience        : 1.7129388652392663e-05
wikipedia_url   : -
====================
name            : angle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b70>
salience        : 1.7120431948569603e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d00>
salience        : 1.711511504254304e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095da0>
salience        : 1.7114953152486123e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095a30>
salience        : 1.7114953152486123e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f80>
salience        : 1.7108974134316668e-05
wikipedia_url   : -
====================
name            : response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095df0>
salience        : 1.7108974134316668e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095bc0>
salience        : 1.7108974134316668e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095990>
salience        : 1.7108974134316668e-05
wikipedia_url   : -
====================
name            : development
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c60>
salience        : 1.7108974134316668e-05
wikipedia_url   : -
====================
name            : decision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002bc0>
salience        : 1.709492426016368e-05
wikipedia_url   : -
====================
name            : list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0026c0>
salience        : 1.7088241293095052e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002df0>
salience        : 1.707444607745856e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon oxfordstreet london oxford street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec60>
salience        : 1.7041571481968276e-05
wikipedia_url   : -
====================
name            : tmnikonian christiana72 ganton sttreet carnaby street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ce9e0>
salience        : 1.7032243704306893e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon lumierelondon2018 ganton sttreet carnaby street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cebc0>
salience        : 1.7032243704306893e-05
wikipedia_url   : -
====================
name            : tomodo
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cea80>
salience        : 1.7013664546539076e-05
wikipedia_url   : -
====================
name            : night lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceee0>
salience        : 1.6936093743424863e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cecb0>
salience        : 1.6931006030063145e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec10>
salience        : 1.6923602743190713e-05
wikipedia_url   : -
====================
name            : lightbulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7300>
salience        : 1.6923602743190713e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73a0>
salience        : 1.6923602743190713e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73f0>
salience        : 1.6923602743190713e-05
wikipedia_url   : -
====================
name            : lumierefestival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7350>
salience        : 1.6923602743190713e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a30>
salience        : 1.6921192582231015e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7850>
salience        : 1.6921192582231015e-05
wikipedia_url   : -
====================
name            : lumierefestival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78f0>
salience        : 1.6921192582231015e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7940>
salience        : 1.6918811525101773e-05
wikipedia_url   : -
====================
name            : lighting light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78a0>
salience        : 1.691645593382418e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7b20>
salience        : 1.691645593382418e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b77b0>
salience        : 1.6914129446377046e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b75d0>
salience        : 1.6860603864188306e-05
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7260>
salience        : 1.6860603864188306e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7ad0>
salience        : 1.6857433365657926e-05
wikipedia_url   : -
====================
name            : road closures buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7030>
salience        : 1.6857433365657926e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7440>
salience        : 1.6857433365657926e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a80>
salience        : 1.685431197984144e-05
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b79e0>
salience        : 1.6839376257848926e-05
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7530>
salience        : 1.6836514987517148e-05
wikipedia_url   : -
====================
name            : motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0300>
salience        : 1.683369373495225e-05
wikipedia_url   : -
====================
name            : wearewaterloouk leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0120>
salience        : 1.6830910681164823e-05
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0350>
salience        : 1.6828165826154873e-05
wikipedia_url   : -
====================
name            : leakestreetarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d00>
salience        : 1.681753565208055e-05
wikipedia_url   : -
====================
name            : leakestreetarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d50>
salience        : 1.681753565208055e-05
wikipedia_url   : -
====================
name            : amp culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e40>
salience        : 1.6799038348835893e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e90>
salience        : 1.6792862879810855e-05
wikipedia_url   : -
====================
name            : heres images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0210>
salience        : 1.6790365407359786e-05
wikipedia_url   : -
====================
name            : friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b02b0>
salience        : 1.6759278878453188e-05
wikipedia_url   : -
====================
name            : guide amp share pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0170>
salience        : 1.6747964764363132e-05
wikipedia_url   : -
====================
name            : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03f0>
salience        : 1.6747155314078555e-05
wikipedia_url   : -
====================
name            : lightinstallation landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0670>
salience        : 1.6739615603000857e-05
wikipedia_url   : -
====================
name            : james piccadilly
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0530>
salience        : 1.664471346884966e-05
wikipedia_url   : -
====================
name            : nofilterneeded lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0710>
salience        : 1.6640808098600246e-05
wikipedia_url   : -
====================
name            : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 archdeaconluke trafalgarsquare
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b08a0>
salience        : 1.6639485693303868e-05
wikipedia_url   : -
====================
name            : visitlondon bealocaltourist phone
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0760>
salience        : 1.6622612747596577e-05
wikipedia_url   : -
====================
name            : cityshots snapshoot lightfestival lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0cb0>
salience        : 1.6608690202701837e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0a80>
salience        : 1.6534557289560325e-05
wikipedia_url   : -
====================
name            : doorways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b05d0>
salience        : 1.6525606042705476e-05
wikipedia_url   : -
====================
name            : doorways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f80>
salience        : 1.6521938960067928e-05
wikipedia_url   : -
====================
name            : camera
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ad0>
salience        : 1.651843194849789e-05
wikipedia_url   : -
====================
name            : rain loki_lego
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adad0>
salience        : 1.6515587049070746e-05
wikipedia_url   : -
====================
name            : doorways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad760>
salience        : 1.651479942665901e-05
wikipedia_url   : -
====================
name            : hotelkensington
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad710>
salience        : 1.650728336244356e-05
wikipedia_url   : -
====================
name            : cameras
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd26c0>
salience        : 1.650193371460773e-05
wikipedia_url   : -
====================
name            : visitlondon printer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2580>
salience        : 1.6500483980053104e-05
wikipedia_url   : -
====================
name            : hotelkensington
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23f0>
salience        : 1.6499310731887817e-05
wikipedia_url   : -
====================
name            : lumierelondon balloons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd27b0>
salience        : 1.649416662985459e-05
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e40>
salience        : 1.6488167602801695e-05
wikipedia_url   : -
====================
name            : space
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be350>
salience        : 1.6484224033774808e-05
wikipedia_url   : -
====================
name            : use
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea80>
salience        : 1.6476562450407073e-05
wikipedia_url   : -
====================
name            : westminsterabbey reflection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bebc0>
salience        : 1.646918462938629e-05
wikipedia_url   : -
====================
name            : mickfusion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee90>
salience        : 1.6451844203402288e-05
wikipedia_url   : -
====================
name            : reflections
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be120>
salience        : 1.6451844203402288e-05
wikipedia_url   : -
====================
name            : use
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be990>
salience        : 1.6448550013592467e-05
wikipedia_url   : -
====================
name            : use
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be0d0>
salience        : 1.6448550013592467e-05
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e440>
salience        : 1.6373882317566313e-05
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e580>
salience        : 1.6373882317566313e-05
wikipedia_url   : -
====================
name            : dots order prints
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e1c0>
salience        : 1.6373882317566313e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e850>
salience        : 1.6351639715139754e-05
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e7b0>
salience        : 1.6330161088262685e-05
wikipedia_url   : -
====================
name            : reflection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb70>
salience        : 1.632531530049164e-05
wikipedia_url   : -
====================
name            : wickeduk tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8f0>
salience        : 1.6320584109053016e-05
wikipedia_url   : -
====================
name            : order prints
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3f0>
salience        : 1.631596387596801e-05
wikipedia_url   : -
====================
name            : tourists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee40>
salience        : 1.631596387596801e-05
wikipedia_url   : -
====================
name            : masons window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e90>
salience        : 1.6246673112618737e-05
wikipedia_url   : -
====================
name            : amp masons window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220817b0>
salience        : 1.6246673112618737e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081300>
salience        : 1.6189125744858757e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220811c0>
salience        : 1.618334681552369e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081260>
salience        : 1.618334681552369e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220814e0>
salience        : 1.616178997210227e-05
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220816c0>
salience        : 1.6156749552465044e-05
wikipedia_url   : -
====================
name            : wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818a0>
salience        : 1.61390289576957e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081940>
salience        : 1.6124427929753438e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081df0>
salience        : 1.6090765711851418e-05
wikipedia_url   : -
====================
name            : londontown biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081bc0>
salience        : 1.6085536117316224e-05
wikipedia_url   : -
====================
name            : visitlondon biuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b70>
salience        : 1.607806007086765e-05
wikipedia_url   : -
====================
name            : torch faces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ad0>
salience        : 1.6077063264674507e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081620>
salience        : 1.604295539436862e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4a30>
salience        : 1.6013098502298817e-05
wikipedia_url   : -
====================
name            : ping pong side imaginationuk building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8f0>
salience        : 1.600629730091896e-05
wikipedia_url   : -
====================
name            : cycling
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c030>
salience        : 1.599658207851462e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c440>
salience        : 1.5996522051864304e-05
wikipedia_url   : -
====================
name            : illumination
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c350>
salience        : 1.5990268366294913e-05
wikipedia_url   : -
====================
name            : illuminations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c800>
salience        : 1.5990268366294913e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c6c0>
salience        : 1.593406341271475e-05
wikipedia_url   : -
====================
name            : gasworks longexposures
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c580>
salience        : 1.5925403204164468e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c530>
salience        : 1.591344698681496e-05
wikipedia_url   : -
====================
name            : london lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c080>
salience        : 1.589075145602692e-05
wikipedia_url   : -
====================
name            : guide amp share pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb70>
salience        : 1.5858004189794883e-05
wikipedia_url   : -
====================
name            : dot
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce90>
salience        : 1.5847172107896768e-05
wikipedia_url   : -
====================
name            : origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca80>
salience        : 1.582968980073929e-05
wikipedia_url   : -
====================
name            : canadian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c9e0>
salience        : 1.582947515998967e-05
wikipedia_url   : -
====================
name            : poal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ccb0>
salience        : 1.58269249368459e-05
wikipedia_url   : -
====================
name            : friend toddler
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf620>
salience        : 1.5817257008166052e-05
wikipedia_url   : -
====================
name            : mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfee0>
salience        : 1.5813979189260863e-05
wikipedia_url   : -
====================
name            : lumierelondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon biuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfda0>
salience        : 1.5800625988049433e-05
wikipedia_url   : -
====================
name            : 50 aists dewdropbook dewdrop ay abi
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd00>
salience        : 1.5767760487506166e-05
wikipedia_url   : -
====================
name            : love md
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8a0>
salience        : 1.5706109479651786e-05
wikipedia_url   : -
====================
name            : background distractions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf850>
salience        : 1.5706109479651786e-05
wikipedia_url   : -
====================
name            : gin costs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb70>
salience        : 1.5706109479651786e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf030>
salience        : 1.5695055481046438e-05
wikipedia_url   : -
====================
name            : fish swimming
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf670>
salience        : 1.5674699170631357e-05
wikipedia_url   : -
====================
name            : screens
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf3f0>
salience        : 1.56652822624892e-05
wikipedia_url   : -
====================
name            : reality
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf300>
salience        : 1.5647738109692e-05
wikipedia_url   : -
====================
name            : fireflies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089f30>
salience        : 1.5639538105460815e-05
wikipedia_url   : -
====================
name            : sofas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220892b0>
salience        : 1.562412580824457e-05
wikipedia_url   : -
====================
name            : magnificence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067300>
salience        : 1.5609870388288982e-05
wikipedia_url   : -
====================
name            : flamingo flyway
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220671c0>
salience        : 1.5609870388288982e-05
wikipedia_url   : -
====================
name            : saws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b70>
salience        : 1.5590310795232654e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ad0>
salience        : 1.558421536174137e-05
wikipedia_url   : -
====================
name            : aichoketrust londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ee0>
salience        : 1.5579817045363598e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3620>
salience        : 1.555679045850411e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde37b0>
salience        : 1.5549278032267466e-05
wikipedia_url   : -
====================
name            : lumierelondon ball
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ee0>
salience        : 1.553179208713118e-05
wikipedia_url   : -
====================
name            : doorways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3cb0>
salience        : 1.5531702956650406e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd45d0>
salience        : 1.552510730107315e-05
wikipedia_url   : -
====================
name            : production
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d00>
salience        : 1.5521893146797083e-05
wikipedia_url   : -
====================
name            : plug bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ad0>
salience        : 1.5512567188125104e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4990>
salience        : 1.5504898328799754e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4850>
salience        : 1.5469624486286193e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4300>
salience        : 1.5447840269189328e-05
wikipedia_url   : -
====================
name            : polaroidorignls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220642b0>
salience        : 1.544519363960717e-05
wikipedia_url   : -
====================
name            : poland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064170>
salience        : 1.54395147546893e-05
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064620>
salience        : 1.5434003216796555e-05
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b20>
salience        : 1.541344499855768e-05
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648a0>
salience        : 1.540863922855351e-05
wikipedia_url   : -
====================
name            : extravaganza magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b70>
salience        : 1.5403951692860574e-05
wikipedia_url   : -
====================
name            : names
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064df0>
salience        : 1.539680306450464e-05
wikipedia_url   : -
====================
name            : jar kids
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d00>
salience        : 1.53876007971121e-05
wikipedia_url   : -
====================
name            : poland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc89e0>
salience        : 1.5386300219688565e-05
wikipedia_url   : -
====================
name            : poland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8800>
salience        : 1.5386300219688565e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8490>
salience        : 1.5344943676609546e-05
wikipedia_url   : -
====================
name            : selection craft beer food tickle tastebuds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83f0>
salience        : 1.5304140106309205e-05
wikipedia_url   : -
====================
name            : westminster marshalljulius
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ee0>
salience        : 1.5276624253601767e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075260>
salience        : 1.5172511666605715e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758a0>
salience        : 1.5170218830462545e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075940>
salience        : 1.5170218830462545e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220757b0>
salience        : 1.516795418865513e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753a0>
salience        : 1.516571683168877e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8f0>
salience        : 1.516571683168877e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf210>
salience        : 1.516571683168877e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf710>
salience        : 1.516571683168877e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d68f0>
salience        : 1.5161322153289802e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7710>
salience        : 1.5159163012867793e-05
wikipedia_url   : -
====================
name            : southbank installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7580>
salience        : 1.5159163012867793e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73f0>
salience        : 1.5159163012867793e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7cb0>
salience        : 1.5157029338297434e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d350>
salience        : 1.5152833839238156e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dda0>
salience        : 1.5152833839238156e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc79e0>
salience        : 1.5152833839238156e-05
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc70d0>
salience        : 1.5083829566719942e-05
wikipedia_url   : -
====================
name            : jacob ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7710>
salience        : 1.5075320334290154e-05
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1e760>
salience        : 1.506985972810071e-05
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5120>
salience        : 1.5059402358019724e-05
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5440>
salience        : 1.5056879419717006e-05
wikipedia_url   : -
====================
name            : rain grantchito 2018 leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5d00>
salience        : 1.5054749383125454e-05
wikipedia_url   : -
====================
name            : space
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab7da0>
salience        : 1.5049510693643242e-05
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e931c0>
salience        : 1.5044757674331777e-05
wikipedia_url   : -
====================
name            : reflections
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de9e90>
salience        : 1.5042426639411133e-05
wikipedia_url   : -
====================
name            : churches
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc0d0>
salience        : 1.5036956028779969e-05
wikipedia_url   : -
====================
name            : cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad170>
salience        : 1.5033359886729158e-05
wikipedia_url   : -
====================
name            : progress
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adee0>
salience        : 1.5029832866275683e-05
wikipedia_url   : -
====================
name            : field
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ade90>
salience        : 1.5029832866275683e-05
wikipedia_url   : -
====================
name            : ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad3a0>
salience        : 1.5022977095213719e-05
wikipedia_url   : -
====================
name            : physics glory nohern
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad120>
salience        : 1.5013152733445168e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad2b0>
salience        : 1.5006884495960549e-05
wikipedia_url   : -
====================
name            : progress
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad210>
salience        : 1.5006884495960549e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad5d0>
salience        : 1.5003829503257293e-05
wikipedia_url   : -
====================
name            : view
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adc60>
salience        : 1.5003829503257293e-05
wikipedia_url   : -
====================
name            : homes
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad080>
salience        : 1.5003829503257293e-05
wikipedia_url   : -
====================
name            : view
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7120>
salience        : 1.5003829503257293e-05
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7490>
salience        : 1.5003829503257293e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a76c0>
salience        : 1.5000824532762635e-05
wikipedia_url   : -
====================
name            : public
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7210>
salience        : 1.5000824532762635e-05
wikipedia_url   : -
====================
name            : london kings cross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a75d0>
salience        : 1.4989837836765219e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Kings_Cross,_London
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7350>
salience        : 1.4962212844693568e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7440>
salience        : 1.4927239135431591e-05
wikipedia_url   : -
====================
name            : names
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73a0>
salience        : 1.4921910405973904e-05
wikipedia_url   : -
====================
name            : pa w
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b20>
salience        : 1.4897386790835299e-05
wikipedia_url   : -
====================
name            : field
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7850>
salience        : 1.4888436453475151e-05
wikipedia_url   : -
====================
name            : fields
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78a0>
salience        : 1.488412181060994e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium piccadilly circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7990>
salience        : 1.487638019170845e-05
wikipedia_url   : -
====================
name            : julian crowe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7da0>
salience        : 1.4871293387841433e-05
wikipedia_url   : -
====================
name            : amp capture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e90>
salience        : 1.4869574442855082e-05
wikipedia_url   : -
====================
name            : instagram gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e40>
salience        : 1.4848167666059453e-05
wikipedia_url   : -
====================
name            : brightnights gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7260>
salience        : 1.483878895669477e-05
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d50>
salience        : 1.481803792557912e-05
wikipedia_url   : -
====================
name            : pop south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7800>
salience        : 1.4718591955897864e-05
wikipedia_url   : -
====================
name            : pop south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a72b0>
salience        : 1.471601990488125e-05
wikipedia_url   : -
====================
name            : followers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a71c0>
salience        : 1.4713884411321487e-05
wikipedia_url   : -
====================
name            : pop south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c10>
salience        : 1.4713485143147409e-05
wikipedia_url   : -
====================
name            : pop south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ad0>
salience        : 1.4713485143147409e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7580>
salience        : 1.4712785741721746e-05
wikipedia_url   : -
====================
name            : night go check visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7030>
salience        : 1.47061964526074e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2670>
salience        : 1.4700825886393432e-05
wikipedia_url   : -
====================
name            : youtubers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2cb0>
salience        : 1.4666504284832627e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c60>
salience        : 1.4666504284832627e-05
wikipedia_url   : -
====================
name            : london lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a30>
salience        : 1.4655719496659003e-05
wikipedia_url   : -
====================
name            : ldn festival spectacle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a29e0>
salience        : 1.4655719496659003e-05
wikipedia_url   : -
====================
name            : london lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2710>
salience        : 1.4655719496659003e-05
wikipedia_url   : -
====================
name            : coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2760>
salience        : 1.465312197979074e-05
wikipedia_url   : -
====================
name            : others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f80>
salience        : 1.4650561752205249e-05
wikipedia_url   : -
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e40>
salience        : 1.464897741243476e-05
wikipedia_url   : -
====================
name            : flamingoflyway nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e90>
salience        : 1.464897741243476e-05
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d00>
salience        : 1.4642791938968003e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2940>
salience        : 1.4633603313995991e-05
wikipedia_url   : -
====================
name            : chrissykinsella friend toddler
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2990>
salience        : 1.4510585060634185e-05
wikipedia_url   : -
====================
name            : aether
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2080>
salience        : 1.4487450243905187e-05
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a20d0>
salience        : 1.4487450243905187e-05
wikipedia_url   : -
====================
name            : lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2170>
salience        : 1.4483845006907359e-05
wikipedia_url   : -
====================
name            : dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2210>
salience        : 1.4473453120444901e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a22b0>
salience        : 1.4451354218181223e-05
wikipedia_url   : -
====================
name            : glory electricpedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2300>
salience        : 1.4448412002820987e-05
wikipedia_url   : -
====================
name            : shaftesburyplc
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2350>
salience        : 1.4445518900174648e-05
wikipedia_url   : -
====================
name            : couyard maxcoopermax
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23a0>
salience        : 1.4445518900174648e-05
wikipedia_url   : -
====================
name            : boomerang maxcoopermax
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23f0>
salience        : 1.4445518900174648e-05
wikipedia_url   : -
====================
name            : chance experience aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2490>
salience        : 1.4445518900174648e-05
wikipedia_url   : -
====================
name            : chance experience aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a25d0>
salience        : 1.4445518900174648e-05
wikipedia_url   : -
====================
name            : lanterncompany
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a80>
salience        : 1.4442672181758098e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28a0>
salience        : 1.4439870938076638e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f30>
salience        : 1.4437582649406977e-05
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3da0>
salience        : 1.4425586414290592e-05
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e40>
salience        : 1.4369525160873309e-05
wikipedia_url   : -
====================
name            : panership technicians_mih
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d50>
salience        : 1.4368347365234513e-05
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d00>
salience        : 1.4350384844874498e-05
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e90>
salience        : 1.4345910130941775e-05
wikipedia_url   : -
====================
name            : wildlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3cb0>
salience        : 1.4333136277855374e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c60>
salience        : 1.4325111806101631e-05
wikipedia_url   : -
====================
name            : theatre hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3300>
salience        : 1.4317441127786878e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3490>
salience        : 1.4313728570414241e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3350>
salience        : 1.4238934454624541e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33f0>
salience        : 1.4229526641429402e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a80>
salience        : 1.4225589438865427e-05
wikipedia_url   : -
====================
name            : plug bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3990>
salience        : 1.4225589438865427e-05
wikipedia_url   : -
====================
name            : officers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc36c0>
salience        : 1.4220279808796477e-05
wikipedia_url   : -
====================
name            : head offices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3850>
salience        : 1.4217685020412318e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38f0>
salience        : 1.4215129340300336e-05
wikipedia_url   : -
====================
name            : selfie
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b70>
salience        : 1.4212610039976425e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc37b0>
salience        : 1.4210127119440585e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3080>
salience        : 1.4205264960764907e-05
wikipedia_url   : -
====================
name            : storage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3580>
salience        : 1.4205264960764907e-05
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3670>
salience        : 1.4202884813130368e-05
wikipedia_url   : -
====================
name            : bulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3620>
salience        : 1.4195934454619419e-05
wikipedia_url   : -
====================
name            : officers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc34e0>
salience        : 1.4189252397045493e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3440>
salience        : 1.4149050912237726e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1710>
salience        : 1.4149050912237726e-05
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb16c0>
salience        : 1.4146912690193858e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1df0>
salience        : 1.414479993400164e-05
wikipedia_url   : -
====================
name            : stairway heaven amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18a0>
salience        : 1.414479993400164e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f30>
salience        : 1.4142713553155772e-05
wikipedia_url   : -
====================
name            : check light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1530>
salience        : 1.4078987987886649e-05
wikipedia_url   : -
====================
name            : charing cross road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13a0>
salience        : 1.405740749760298e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Charing_Cross_Road
====================
name            : timeoutlondon londonist standardnews guardianphotos lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1350>
salience        : 1.3959188436274417e-05
wikipedia_url   : -
====================
name            : lumiere southbank southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1170>
salience        : 1.395293656969443e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a80>
salience        : 1.3892440620111302e-05
wikipedia_url   : -
====================
name            : taize prayer trudyakelly pa gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1bc0>
salience        : 1.3874123396817595e-05
wikipedia_url   : -
====================
name            : buses cars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1ee0>
salience        : 1.3874123396817595e-05
wikipedia_url   : -
====================
name            : frictions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1760>
salience        : 1.3867550478607882e-05
wikipedia_url   : -
====================
name            : buses cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1440>
salience        : 1.3864358152204659e-05
wikipedia_url   : -
====================
name            : buses cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1120>
salience        : 1.3864358152204659e-05
wikipedia_url   : -
====================
name            : gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b70>
salience        : 1.3864358152204659e-05
wikipedia_url   : -
====================
name            : visitlondon pa gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1cb0>
salience        : 1.3864358152204659e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1940>
salience        : 1.3861224942957051e-05
wikipedia_url   : -
====================
name            : changes colours amp designs
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d50>
salience        : 1.3858149031875655e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1e90>
salience        : 1.385216000926448e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb10d0>
salience        : 1.383537437504856e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f80>
salience        : 1.3807024515699595e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1300>
salience        : 1.3807024515699595e-05
wikipedia_url   : -
====================
name            : delays fi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb15d0>
salience        : 1.3799536645819899e-05
wikipedia_url   : -
====================
name            : day ifo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1080>
salience        : 1.3793485777569003e-05
wikipedia_url   : -
====================
name            : object jacques
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa300>
salience        : 1.3793485777569003e-05
wikipedia_url   : -
====================
name            : birdcage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa760>
salience        : 1.3793485777569003e-05
wikipedia_url   : -
====================
name            : work collaboration owners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa800>
salience        : 1.378377783112228e-05
wikipedia_url   : -
====================
name            : vote
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa670>
salience        : 1.378377783112228e-05
wikipedia_url   : -
====================
name            : fairies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa710>
salience        : 1.3776612831861712e-05
wikipedia_url   : -
====================
name            : yes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa990>
salience        : 1.3774601939076092e-05
wikipedia_url   : -
====================
name            : buses cars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaee0>
salience        : 1.3767973541689571e-05
wikipedia_url   : -
====================
name            : gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae40>
salience        : 1.3767973541689571e-05
wikipedia_url   : -
====================
name            : age
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa2b0>
salience        : 1.375763076794101e-05
wikipedia_url   : -
====================
name            : case wi fi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa120>
salience        : 1.374963358102832e-05
wikipedia_url   : -
====================
name            : churches
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa0d0>
salience        : 1.3745947399002034e-05
wikipedia_url   : -
====================
name            : neon sign
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf30>
salience        : 1.3742223018198274e-05
wikipedia_url   : -
====================
name            : befaithfultoyourdreams
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae90>
salience        : 1.3742223018198274e-05
wikipedia_url   : -
====================
name            : vids
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa30>
salience        : 1.3742223018198274e-05
wikipedia_url   : -
====================
name            : bump
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab20>
salience        : 1.3742223018198274e-05
wikipedia_url   : -
====================
name            : action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa4e0>
salience        : 1.374104067508597e-05
wikipedia_url   : -
====================
name            : wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa350>
salience        : 1.3733939340454526e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa080>
salience        : 1.3733107152802404e-05
wikipedia_url   : -
====================
name            : piccadilly victoria
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa210>
salience        : 1.3723926713282708e-05
wikipedia_url   : -
====================
name            : frogs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa440>
salience        : 1.3721703908231575e-05
wikipedia_url   : -
====================
name            : frogs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa030>
salience        : 1.371806956740329e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3f0>
salience        : 1.3716116882278584e-05
wikipedia_url   : -
====================
name            : buses cars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa850>
salience        : 1.3714512533624656e-05
wikipedia_url   : -
====================
name            : aquarium trudyakelly pa gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bf30>
salience        : 1.3714512533624656e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c56c0>
salience        : 1.3708966434933245e-05
wikipedia_url   : -
====================
name            : bunny
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5d00>
salience        : 1.3691789717995562e-05
wikipedia_url   : -
====================
name            : purple haze
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5350>
salience        : 1.3686436432180926e-05
wikipedia_url   : -
====================
name            : help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5580>
salience        : 1.3686436432180926e-05
wikipedia_url   : -
====================
name            : photo eleni
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce440>
salience        : 1.3686436432180926e-05
wikipedia_url   : -
====================
name            : rg
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3a0>
salience        : 1.3686436432180926e-05
wikipedia_url   : -
====================
name            : princes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce4e0>
salience        : 1.3658139323524665e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce2b0>
salience        : 1.3657987437909469e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce1c0>
salience        : 1.3655923794431146e-05
wikipedia_url   : -
====================
name            : kingscrossn1c festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098580>
salience        : 1.3655923794431146e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098490>
salience        : 1.3653884707309771e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220986c0>
salience        : 1.3642151316162199e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098260>
salience        : 1.3638417840411421e-05
wikipedia_url   : -
====================
name            : lumierelondon thelondonguidee
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220982b0>
salience        : 1.3612902876047883e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098080>
salience        : 1.3568267604568973e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098170>
salience        : 1.3531231161323376e-05
wikipedia_url   : -
====================
name            : job mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220985d0>
salience        : 1.3414766726782545e-05
wikipedia_url   : -
====================
name            : darraghdoyle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220989e0>
salience        : 1.3402010154095478e-05
wikipedia_url   : -
====================
name            : canary wharf winter lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098990>
salience        : 1.3388444131123833e-05
wikipedia_url   : -
====================
name            : aichoketrust wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098710>
salience        : 1.3381246390054002e-05
wikipedia_url   : -
====================
name            : haya luz segunda edición del festival de
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098850>
salience        : 1.33344601636054e-05
wikipedia_url   : -
====================
name            : nofilter ihealondon wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098d00>
salience        : 1.3299726560944691e-05
wikipedia_url   : -
====================
name            : foodie
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220951c0>
salience        : 1.3244452929939143e-05
wikipedia_url   : -
====================
name            : dinner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095170>
salience        : 1.3244452929939143e-05
wikipedia_url   : -
====================
name            : cross road directions pall mall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095080>
salience        : 1.3244452929939143e-05
wikipedia_url   : -
====================
name            : experience aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095850>
salience        : 1.3241961823950987e-05
wikipedia_url   : -
====================
name            : experience aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095710>
salience        : 1.3237093298812397e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095620>
salience        : 1.3232865057943854e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095530>
salience        : 1.3232368473836686e-05
wikipedia_url   : -
====================
name            : droplets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095030>
salience        : 1.3232368473836686e-05
wikipedia_url   : -
====================
name            : photography lantern
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ee0>
salience        : 1.3232368473836686e-05
wikipedia_url   : -
====================
name            : humans
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d50>
salience        : 1.3229978321760427e-05
wikipedia_url   : -
====================
name            : check night market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f30>
salience        : 1.3221128028817475e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002f30>
salience        : 1.3221128028817475e-05
wikipedia_url   : -
====================
name            : check night market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ced50>
salience        : 1.3221128028817475e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceb20>
salience        : 1.3221128028817475e-05
wikipedia_url   : -
====================
name            : droplets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b74e0>
salience        : 1.321897070738487e-05
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7080>
salience        : 1.321897070738487e-05
wikipedia_url   : -
====================
name            : chrisplant one
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7d50>
salience        : 1.321684248978272e-05
wikipedia_url   : -
====================
name            : photography lantern
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7490>
salience        : 1.3214741557021625e-05
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0bc0>
salience        : 1.3212668818596285e-05
wikipedia_url   : -
====================
name            : winterlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0df0>
salience        : 1.321258969255723e-05
wikipedia_url   : -
====================
name            : hat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0da0>
salience        : 1.3212325939093716e-05
wikipedia_url   : -
====================
name            : game pong
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0030>
salience        : 1.3212325939093716e-05
wikipedia_url   : -
====================
name            : snapshots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b01c0>
salience        : 1.3202658919908572e-05
wikipedia_url   : -
====================
name            : snapshots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0440>
salience        : 1.3199561180954333e-05
wikipedia_url   : -
====================
name            : videography musicvideo zacdenman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0580>
salience        : 1.3193540326028597e-05
wikipedia_url   : -
====================
name            : mind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0620>
salience        : 1.3190611753088888e-05
wikipedia_url   : -
====================
name            : aaron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b07b0>
salience        : 1.3187736840336584e-05
wikipedia_url   : -
====================
name            : conditions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b04e0>
salience        : 1.3184911949792877e-05
wikipedia_url   : -
====================
name            : hat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ee0>
salience        : 1.3179406778363045e-05
wikipedia_url   : -
====================
name            : violin centrepiece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b70>
salience        : 1.3179406778363045e-05
wikipedia_url   : -
====================
name            : cosmoscope sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad6c0>
salience        : 1.3179406778363045e-05
wikipedia_url   : -
====================
name            : aaron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ada80>
salience        : 1.3176723768992815e-05
wikipedia_url   : -
====================
name            : aaron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b70>
salience        : 1.3176723768992815e-05
wikipedia_url   : -
====================
name            : aaron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2170>
salience        : 1.3176723768992815e-05
wikipedia_url   : -
====================
name            : aaron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb70>
salience        : 1.3176723768992815e-05
wikipedia_url   : -
====================
name            : hatmanoflondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e080>
salience        : 1.3176723768992815e-05
wikipedia_url   : -
====================
name            : videography musicvideo zacdenman
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e4e0>
salience        : 1.317148871748941e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea30>
salience        : 1.317148871748941e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef80>
salience        : 1.317148871748941e-05
wikipedia_url   : -
====================
name            : faves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed50>
salience        : 1.316893394687213e-05
wikipedia_url   : -
====================
name            : must
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207edf0>
salience        : 1.3114281500747893e-05
wikipedia_url   : -
====================
name            : photography engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813f0>
salience        : 1.3114281500747893e-05
wikipedia_url   : -
====================
name            : training jobs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081210>
salience        : 1.3109460269333795e-05
wikipedia_url   : -
====================
name            : tfl update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a30>
salience        : 1.3109460269333795e-05
wikipedia_url   : -
====================
name            : bond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818f0>
salience        : 1.3109460269333795e-05
wikipedia_url   : -
====================
name            : photography fave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081da0>
salience        : 1.3083243175060488e-05
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081cb0>
salience        : 1.3075382412353065e-05
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081760>
salience        : 1.3075382412353065e-05
wikipedia_url   : -
====================
name            : kx10 omg newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium openyoureyesldn show
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4030>
salience        : 1.3068046428088564e-05
wikipedia_url   : -
====================
name            : bond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4800>
salience        : 1.3067892723483965e-05
wikipedia_url   : -
====================
name            : bond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca30>
salience        : 1.3064275663055014e-05
wikipedia_url   : -
====================
name            : bond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c300>
salience        : 1.3064275663055014e-05
wikipedia_url   : -
====================
name            : hat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3a0>
salience        : 1.3064275663055014e-05
wikipedia_url   : -
====================
name            : shop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c850>
salience        : 1.3057279829808977e-05
wikipedia_url   : -
====================
name            : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 levanterman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c670>
salience        : 1.3053811926511116e-05
wikipedia_url   : -
====================
name            : citylife travelblogger
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c1c0>
salience        : 1.3035388292337302e-05
wikipedia_url   : -
====================
name            : lumiere london rhianbwatts
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd50>
salience        : 1.2970536772627383e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf80>
salience        : 1.2948107723786961e-05
wikipedia_url   : -
====================
name            : wrap
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce40>
salience        : 1.2948082257935312e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfdf0>
salience        : 1.2944943591719493e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfcb0>
salience        : 1.2944398804393131e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa80>
salience        : 1.2940233318659011e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf710>
salience        : 1.2937233805132564e-05
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf0d0>
salience        : 1.2914440958411433e-05
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089120>
salience        : 1.2897930901090149e-05
wikipedia_url   : -
====================
name            : lovelyweather lightexhibition london2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089080>
salience        : 1.2894722203782294e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife travelbloggers lovelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a30>
salience        : 1.2892097402072977e-05
wikipedia_url   : -
====================
name            : lumiere aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089850>
salience        : 1.2826286365452688e-05
wikipedia_url   : -
====================
name            : friend toddler
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089580>
salience        : 1.2796402188541833e-05
wikipedia_url   : -
====================
name            : emmaallendesign greymatters timeoutlondon visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089df0>
salience        : 1.2748134395224042e-05
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b70>
salience        : 1.2721081475319806e-05
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b20>
salience        : 1.2717394383798819e-05
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089940>
salience        : 1.2712024727079552e-05
wikipedia_url   : -
====================
name            : canal kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089530>
salience        : 1.271027485927334e-05
wikipedia_url   : -
====================
name            : canal kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089760>
salience        : 1.271027485927334e-05
wikipedia_url   : -
====================
name            : umbrella project performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893a0>
salience        : 1.2692421478277538e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067620>
salience        : 1.2689997674897313e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067df0>
salience        : 1.2687612070294563e-05
wikipedia_url   : -
====================
name            : festival hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3350>
salience        : 1.2687612070294563e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3440>
salience        : 1.2687120943155605e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4670>
salience        : 1.2671867807512172e-05
wikipedia_url   : -
====================
name            : fairies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd49e0>
salience        : 1.2670631804212462e-05
wikipedia_url   : -
====================
name            : fairies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064030>
salience        : 1.2670631804212462e-05
wikipedia_url   : -
====================
name            : festival hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064300>
salience        : 1.2661531400226522e-05
wikipedia_url   : -
====================
name            : biggsytravels pa beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064bc0>
salience        : 1.2661531400226522e-05
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c60>
salience        : 1.2657583283726126e-05
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon fuzzworks_uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b20>
salience        : 1.264807451661909e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 visitlondon fuzzworks_uk
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8990>
salience        : 1.2624081136891618e-05
wikipedia_url   : -
====================
name            : posts tix
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc84e0>
salience        : 1.24539128592005e-05
wikipedia_url   : -
====================
name            : rainbow tunnel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8210>
salience        : 1.2450906069716439e-05
wikipedia_url   : -
====================
name            : anywhere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075ad0>
salience        : 1.2439752936188597e-05
wikipedia_url   : -
====================
name            : ping pong side
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e90>
salience        : 1.2437088116712403e-05
wikipedia_url   : -
====================
name            : coat turn telly
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075670>
salience        : 1.2435309145075735e-05
wikipedia_url   : -
====================
name            : sea level
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf170>
salience        : 1.2434469681465998e-05
wikipedia_url   : -
====================
name            : guardian angels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b20>
salience        : 1.242442613147432e-05
wikipedia_url   : -
====================
name            : guardian angels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7df0>
salience        : 1.242442613147432e-05
wikipedia_url   : -
====================
name            : guardian angels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa580>
salience        : 1.242442613147432e-05
wikipedia_url   : -
====================
name            : londonlife sessions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa8a0>
salience        : 1.242442613147432e-05
wikipedia_url   : -
====================
name            : fish telephone box butterfly
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac60>
salience        : 1.2422016880009323e-05
wikipedia_url   : -
====================
name            : happylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaacb0>
salience        : 1.2422016880009323e-05
wikipedia_url   : -
====================
name            : lights darkness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa530>
salience        : 1.2374315701890737e-05
wikipedia_url   : -
====================
name            : visitlondon pleasure
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa170>
salience        : 1.2370463991828728e-05
wikipedia_url   : -
====================
name            : amp regent street btwn moimer
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2530>
salience        : 1.2365915608825162e-05
wikipedia_url   : -
====================
name            : londonlife sessions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2da0>
salience        : 1.2341185538389254e-05
wikipedia_url   : -
====================
name            : amp regent street btwn moimer
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d50>
salience        : 1.2326705473242328e-05
wikipedia_url   : -
====================
name            : amp regent street btwn moimer
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2670>
salience        : 1.2323293958615977e-05
wikipedia_url   : -
====================
name            : amp regent street btwn moimer
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2620>
salience        : 1.2323293958615977e-05
wikipedia_url   : -
====================
name            : nickede
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd27b0>
salience        : 1.2293007785046939e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e90>
salience        : 1.2223721569171175e-05
wikipedia_url   : -
====================
name            : twitter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2940>
salience        : 1.2182261343696155e-05
wikipedia_url   : -
====================
name            : goods
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a30>
salience        : 1.2139685168222059e-05
wikipedia_url   : -
====================
name            : justin_venn lumierelondon2018 lumierelondon biuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a80>
salience        : 1.2138534657424316e-05
wikipedia_url   : -
====================
name            : popcornmedia_uk wrap
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b70>
salience        : 1.2119670827814844e-05
wikipedia_url   : -
====================
name            : wabbey westminsterabbey biuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ee0>
salience        : 1.2112493095628452e-05
wikipedia_url   : -
====================
name            : look updates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c60>
salience        : 1.2076457096554805e-05
wikipedia_url   : -
====================
name            : suzystories
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2990>
salience        : 1.2074220649083145e-05
wikipedia_url   : -
====================
name            : update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28a0>
salience        : 1.2067707757523749e-05
wikipedia_url   : -
====================
name            : must
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2800>
salience        : 1.2061471352353692e-05
wikipedia_url   : -
====================
name            : must
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6d00>
salience        : 1.2061471352353692e-05
wikipedia_url   : -
====================
name            : must
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6c60>
salience        : 1.2061471352353692e-05
wikipedia_url   : -
====================
name            : must
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6e40>
salience        : 1.2059450455126353e-05
wikipedia_url   : -
====================
name            : trees
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6940>
salience        : 1.2047874406562187e-05
wikipedia_url   : -
====================
name            : 見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium cheriecity
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc760>
salience        : 1.1961006748606451e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc0d0>
salience        : 1.1926455044886097e-05
wikipedia_url   : -
====================
name            : flickr
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cca80>
salience        : 1.1925330909434706e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ee0>
salience        : 1.1915179129573517e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ad0>
salience        : 1.1908457054232713e-05
wikipedia_url   : -
====================
name            : tube
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37e90>
salience        : 1.1844349501188844e-05
wikipedia_url   : -
====================
name            : case
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b70>
salience        : 1.1839021681225859e-05
wikipedia_url   : -
====================
name            : fitzrovia dontmissout egondesign
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ee0>
salience        : 1.1807830560428556e-05
wikipedia_url   : -
====================
name            : lumiere aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd93f0>
salience        : 1.1793182238761801e-05
wikipedia_url   : -
====================
name            : friend toddler
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9760>
salience        : 1.1769109732995275e-05
wikipedia_url   : -
====================
name            : friend toddler
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd94e0>
salience        : 1.1767137948481832e-05
wikipedia_url   : -
====================
name            : videoproduction zacvideo studiosession
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9620>
salience        : 1.1754622391890734e-05
wikipedia_url   : -
====================
name            : projection voyages
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd95d0>
salience        : 1.1677908332785591e-05
wikipedia_url   : -
====================
name            : aist imakefings leakestreet
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9300>
salience        : 1.1676344911393244e-05
wikipedia_url   : -
====================
name            : decision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9bc0>
salience        : 1.1603376151470002e-05
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon marshalljulius london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a80>
salience        : 1.1597448974498548e-05
wikipedia_url   : -
====================
name            : southbank london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ad0>
salience        : 1.1595758223847952e-05
wikipedia_url   : -
====================
name            : daan roosegaarde london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98a0>
salience        : 1.1594087482080795e-05
wikipedia_url   : -
====================
name            : flickr iesphotos cityatnight london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98f0>
salience        : 1.1592436749197077e-05
wikipedia_url   : -
====================
name            : wasthatadream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9800>
salience        : 1.1592165719775949e-05
wikipedia_url   : -
====================
name            : leakestreetarches development
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9990>
salience        : 1.1592165719775949e-05
wikipedia_url   : -
====================
name            : colcannon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd97b0>
salience        : 1.1592165719775949e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9260>
salience        : 1.1587597327888943e-05
wikipedia_url   : -
====================
name            : cheese
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9710>
salience        : 1.1586877917579841e-05
wikipedia_url   : -
====================
name            : xtophe_williams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f80>
salience        : 1.1581781109271105e-05
wikipedia_url   : -
====================
name            : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e40>
salience        : 1.157578662969172e-05
wikipedia_url   : -
====================
name            : xtophe_williams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9d50>
salience        : 1.1574466043384746e-05
wikipedia_url   : -
====================
name            : leakestreetarches development
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c60>
salience        : 1.1574466043384746e-05
wikipedia_url   : -
====================
name            : clarateddy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9da0>
salience        : 1.1572109542612452e-05
wikipedia_url   : -
====================
name            : couyard clarateddy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9210>
salience        : 1.1572109542612452e-05
wikipedia_url   : -
====================
name            : xtophe_williams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd96c0>
salience        : 1.1572109542612452e-05
wikipedia_url   : -
====================
name            : gasholders
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e4e0>
salience        : 1.1569792150112335e-05
wikipedia_url   : -
====================
name            : winterlights yourcanarywharf
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e170>
salience        : 1.1568079571588896e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3f0>
salience        : 1.156751204689499e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e670>
salience        : 1.156751204689499e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル newsdigest 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e8f0>
salience        : 1.1547112080734223e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e580>
salience        : 1.1540888408489991e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e940>
salience        : 1.1539444130903576e-05
wikipedia_url   : -
====================
name            : river quality
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e9e0>
salience        : 1.1517270650074352e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ead0>
salience        : 1.1513036042742897e-05
wikipedia_url   : -
====================
name            : amsharif
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ebc0>
salience        : 1.1501050721562933e-05
wikipedia_url   : -
====================
name            : amp witchcraft
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec10>
salience        : 1.1486517905723304e-05
wikipedia_url   : -
====================
name            : colours sphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec60>
salience        : 1.1479781278467271e-05
wikipedia_url   : -
====================
name            : excursion
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed00>
salience        : 1.1470247955003288e-05
wikipedia_url   : -
====================
name            : movement
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eda0>
salience        : 1.1470247955003288e-05
wikipedia_url   : -
====================
name            : attendance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee40>
salience        : 1.142500332207419e-05
wikipedia_url   : -
====================
name            : kulbinderm
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef30>
salience        : 1.1416284905862994e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef80>
salience        : 1.1406253179302439e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e030>
salience        : 1.1398316019040067e-05
wikipedia_url   : -
====================
name            : volumes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f30>
salience        : 1.139150026574498e-05
wikipedia_url   : -
====================
name            : haywardgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9a80>
salience        : 1.1385264770069625e-05
wikipedia_url   : -
====================
name            : thamespulse seacontainers mondrianhotel jasonbruges
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9e40>
salience        : 1.1382820957805961e-05
wikipedia_url   : -
====================
name            : tflbusales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9850>
salience        : 1.1381258445908315e-05
wikipedia_url   : -
====================
name            : tweeps
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f80>
salience        : 1.1379298484825995e-05
wikipedia_url   : -
====================
name            : bandwagon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d93f0>
salience        : 1.1377364899090026e-05
wikipedia_url   : -
====================
name            : tweeps
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9120>
salience        : 1.1371722393960226e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d96c0>
salience        : 1.1369891581125557e-05
wikipedia_url   : -
====================
name            : crafts goods
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9620>
salience        : 1.1368084415153135e-05
wikipedia_url   : -
====================
name            : tweeps
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d94e0>
salience        : 1.1366300896042958e-05
wikipedia_url   : -
====================
name            : tweeps
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ee0>
salience        : 1.1366300896042958e-05
wikipedia_url   : -
====================
name            : butterflies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d00>
salience        : 1.1364539204805624e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon lumierelondon2018 lumiere lumierelondon lightfestival lighta kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f30>
salience        : 1.1349657143000513e-05
wikipedia_url   : -
====================
name            : description
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47df0>
salience        : 1.1312288734188769e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c10>
salience        : 1.1251216164964717e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47cb0>
salience        : 1.1164176612510346e-05
wikipedia_url   : -
====================
name            : ppl
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47bc0>
salience        : 1.1136708963022102e-05
wikipedia_url   : -
====================
name            : mrsmmain chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a30>
salience        : 1.1135518434457481e-05
wikipedia_url   : -
====================
name            : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47080>
salience        : 1.0919226951955352e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture engcathedrals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc478f0>
salience        : 1.0905065209954046e-05
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon levanterman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47710>
salience        : 1.0880601621465757e-05
wikipedia_url   : -
====================
name            : aichoketrust asturn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b20>
salience        : 1.0878886314458214e-05
wikipedia_url   : -
====================
name            : squares
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47120>
salience        : 1.0876761734834872e-05
wikipedia_url   : -
====================
name            : instagram sneequaye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47530>
salience        : 1.0875131920329295e-05
wikipedia_url   : -
====================
name            : cycling
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b70>
salience        : 1.0835960893018637e-05
wikipedia_url   : -
====================
name            : cycling
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47800>
salience        : 1.0835960893018637e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a80>
salience        : 1.0789546649903059e-05
wikipedia_url   : -
====================
name            : happylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47990>
salience        : 1.0611071047605947e-05
wikipedia_url   : -
====================
name            : colcannon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47260>
salience        : 1.0607819604047108e-05
wikipedia_url   : -
====================
name            : props
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473a0>
salience        : 1.0607819604047108e-05
wikipedia_url   : -
====================
name            : colcannon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47300>
salience        : 1.0607819604047108e-05
wikipedia_url   : -
====================
name            : business
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47350>
salience        : 1.060582508216612e-05
wikipedia_url   : -
====================
name            : clothes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc477b0>
salience        : 1.0603860573610291e-05
wikipedia_url   : -
====================
name            : bits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47620>
salience        : 1.0600019777484704e-05
wikipedia_url   : -
====================
name            : benjamingammon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47170>
salience        : 1.0596289030218031e-05
wikipedia_url   : -
====================
name            : rain cheekychops
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47440>
salience        : 1.0594463674351573e-05
wikipedia_url   : -
====================
name            : neon tower
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7170>
salience        : 1.0592663784336764e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7210>
salience        : 1.0592663784336764e-05
wikipedia_url   : -
====================
name            : pop bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7440>
salience        : 1.058913767337799e-05
wikipedia_url   : -
====================
name            : pop bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad75d0>
salience        : 1.058913767337799e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad78f0>
salience        : 1.0582362847344484e-05
wikipedia_url   : -
====================
name            : memories
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7a30>
salience        : 1.0582088179944549e-05
wikipedia_url   : -
====================
name            : clothes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7b70>
salience        : 1.0580723028397188e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7d00>
salience        : 1.0580723028397188e-05
wikipedia_url   : -
====================
name            : rain snow brain fog shine
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7df0>
salience        : 1.0579455192782916e-05
wikipedia_url   : -
====================
name            : festival goers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7ee0>
salience        : 1.0576874956313986e-05
wikipedia_url   : -
====================
name            : memory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7030>
salience        : 1.0576874956313986e-05
wikipedia_url   : -
====================
name            : film
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa70d0>
salience        : 1.057186455000192e-05
wikipedia_url   : -
====================
name            : nurse
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7170>
salience        : 1.0569430742179975e-05
wikipedia_url   : -
====================
name            : sphere lumiere jakubkrupa
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7210>
salience        : 1.056704240909312e-05
wikipedia_url   : -
====================
name            : angles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa72b0>
salience        : 1.056704240909312e-05
wikipedia_url   : -
====================
name            : saws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7300>
salience        : 1.056704240909312e-05
wikipedia_url   : -
====================
name            : album
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa73a0>
salience        : 1.056704240909312e-05
wikipedia_url   : -
====================
name            : edition
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7490>
salience        : 1.056704240909312e-05
wikipedia_url   : -
====================
name            : board game
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7580>
salience        : 1.0562393981672358e-05
wikipedia_url   : -
====================
name            : rainbow shades
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa75d0>
salience        : 1.0560132068349048e-05
wikipedia_url   : -
====================
name            : red man
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d850>
salience        : 1.0557908353803214e-05
wikipedia_url   : -
====================
name            : green man
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea5800>
salience        : 1.0557908353803214e-05
wikipedia_url   : -
====================
name            : church services
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93580>
salience        : 1.0553573702054564e-05
wikipedia_url   : -
====================
name            : prevalence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ac5c60>
salience        : 1.0551460036367644e-05
wikipedia_url   : -
====================
name            : timeoutlondon grabber
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abc670>
salience        : 1.054938093147939e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d00>
salience        : 1.052781954058446e-05
wikipedia_url   : -
====================
name            : magnificence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7170>
salience        : 1.0503561497898772e-05
wikipedia_url   : -
====================
name            : pity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a79e0>
salience        : 1.04755154097802e-05
wikipedia_url   : -
====================
name            : description
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7bc0>
salience        : 1.040413735609036e-05
wikipedia_url   : -
====================
name            : description
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7300>
salience        : 1.040413735609036e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73f0>
salience        : 1.0304122042725794e-05
wikipedia_url   : -
====================
name            : rainbow tunnel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7940>
salience        : 1.0299934729118831e-05
wikipedia_url   : -
====================
name            : oxfordcircus julie_guldahl
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c60>
salience        : 1.0216558621323202e-05
wikipedia_url   : -
====================
name            : chance check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ee0>
salience        : 1.0212367669737432e-05
wikipedia_url   : -
====================
name            : lewisham lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7620>
salience        : 1.020622130454285e-05
wikipedia_url   : -
====================
name            : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f30>
salience        : 1.0201911209151149e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f80>
salience        : 1.0201911209151149e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ee0>
salience        : 1.0172756446991116e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2620>
salience        : 1.0169842425966635e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2580>
salience        : 1.0166995707550086e-05
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2da0>
salience        : 1.0165595995204058e-05
wikipedia_url   : -
====================
name            : atransformslives aichoketrust visitlondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon justin_venn lumierelondon2018 lumierelondon theresidentmag
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2b20>
salience        : 1.0146837666979991e-05
wikipedia_url   : -
====================
name            : jungle city
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c10>
salience        : 1.0146812201128341e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2120>
salience        : 1.0140931408386678e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2260>
salience        : 1.0139503501704894e-05
wikipedia_url   : -
====================
name            : nofilter cityscape
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a24e0>
salience        : 1.0139503501704894e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a26c0>
salience        : 1.0135318007087335e-05
wikipedia_url   : -
====================
name            : 50 aists couauldgall
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ee0>
salience        : 1.0120179467776325e-05
wikipedia_url   : -
====================
name            : london lumiere dewdropbook dewdrop ay abi
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c10>
salience        : 1.0110945368069224e-05
wikipedia_url   : -
====================
name            : force
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3bc0>
salience        : 1.0079002095153555e-05
wikipedia_url   : -
====================
name            : pattenden couesy aichoke aists simonmanleyfco que haya luz segunda edición del festival de
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3260>
salience        : 1.0053229743789416e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b20>
salience        : 1.0029317309090402e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a30>
salience        : 1.002350381895667e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3940>
salience        : 1.00206980278017e-05
wikipedia_url   : -
====================
name            : installations impulse pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38a0>
salience        : 9.968377526092809e-06
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3800>
salience        : 9.898467396851629e-06
wikipedia_url   : -
====================
name            : westminsterabbey colour timeout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ad0>
salience        : 9.80793538474245e-06
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc31c0>
salience        : 9.785829206521157e-06
wikipedia_url   : -
====================
name            : canadian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc32b0>
salience        : 9.782862434803974e-06
wikipedia_url   : -
====================
name            : thinkingcity addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3210>
salience        : 9.749373020895291e-06
wikipedia_url   : -
====================
name            : therose pedalpower petalpower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3030>
salience        : 9.737555046740454e-06
wikipedia_url   : -
====================
name            : westminsterabbey ceainly trudyakelly
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33a0>
salience        : 9.730000783747528e-06
wikipedia_url   : -
====================
name            : object
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1620>
salience        : 9.674155080574565e-06
wikipedia_url   : -
====================
name            : vlog editing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1670>
salience        : 9.674155080574565e-06
wikipedia_url   : -
====================
name            : circus regents street spot
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a30>
salience        : 9.670544386608526e-06
wikipedia_url   : -
====================
name            : festival goers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1030>
salience        : 9.668779966887087e-06
wikipedia_url   : -
====================
name            : cross section
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb14e0>
salience        : 9.667041922511999e-06
wikipedia_url   : -
====================
name            : cross section
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1210>
salience        : 9.667041922511999e-06
wikipedia_url   : -
====================
name            : visitor rules
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1260>
salience        : 9.667041922511999e-06
wikipedia_url   : -
====================
name            : plate rules
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18f0>
salience        : 9.665328434493858e-06
wikipedia_url   : -
====================
name            : photo credit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb11c0>
salience        : 9.660333489591721e-06
wikipedia_url   : -
====================
name            : menus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1da0>
salience        : 9.657117516326252e-06
wikipedia_url   : -
====================
name            : menus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb17b0>
salience        : 9.657117516326252e-06
wikipedia_url   : -
====================
name            : walls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13f0>
salience        : 9.657117516326252e-06
wikipedia_url   : -
====================
name            : check blog spots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb19e0>
salience        : 9.653987945057452e-06
wikipedia_url   : -
====================
name            : trafalgarsquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad00>
salience        : 9.653820598032326e-06
wikipedia_url   : -
====================
name            : comfo food
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa6c0>
salience        : 9.622466677683406e-06
wikipedia_url   : -
====================
name            : visit website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaad0>
salience        : 9.607862921257038e-06
wikipedia_url   : -
====================
name            : visit website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa620>
salience        : 9.607862921257038e-06
wikipedia_url   : -
====================
name            : host
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaadf0>
salience        : 9.598545148037374e-06
wikipedia_url   : -
====================
name            : host
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3a0>
salience        : 9.568109817337245e-06
wikipedia_url   : -
====================
name            : lumiere smitf_london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a514e0>
salience        : 9.55890936893411e-06
wikipedia_url   : -
====================
name            : earlham street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f30>
salience        : 9.49400600802619e-06
wikipedia_url   : -
====================
name            : earlham street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce710>
salience        : 9.49400600802619e-06
wikipedia_url   : -
====================
name            : lightbulb installation ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce080>
salience        : 9.484541806159541e-06
wikipedia_url   : -
====================
name            : lightbulb installation ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce260>
salience        : 9.484541806159541e-06
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098350>
salience        : 9.483251233177725e-06
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988a0>
salience        : 9.483251233177725e-06
wikipedia_url   : -
====================
name            : balloon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f30>
salience        : 9.479040272708517e-06
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ad0>
salience        : 9.428479643247556e-06
wikipedia_url   : -
====================
name            : westminster smitf_london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958f0>
salience        : 9.427978511666879e-06
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220955d0>
salience        : 9.394026164954994e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e90>
salience        : 9.39262372412486e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095cb0>
salience        : 9.39262372412486e-06
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee90>
salience        : 9.39123856369406e-06
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cef30>
salience        : 9.388516446051653e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b20>
salience        : 9.388516446051653e-06
wikipedia_url   : -
====================
name            : ipreview badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b00d0>
salience        : 9.388516446051653e-06
wikipedia_url   : -
====================
name            : travel badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0260>
salience        : 9.388516446051653e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03a0>
salience        : 9.388516446051653e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad850>
salience        : 9.387179488840047e-06
wikipedia_url   : -
====================
name            : guide gt badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad030>
salience        : 9.387179488840047e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad4e0>
salience        : 9.385857993038371e-06
wikipedia_url   : -
====================
name            : visitlondon badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad350>
salience        : 9.385857993038371e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adf80>
salience        : 9.385857993038371e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad490>
salience        : 9.385857993038371e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beda0>
salience        : 9.384551958646625e-06
wikipedia_url   : -
====================
name            : badgerust fox amp badger stars
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3a0>
salience        : 9.383260476170108e-06
wikipedia_url   : -
====================
name            : londonlife sessions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8a0>
salience        : 9.37483855523169e-06
wikipedia_url   : -
====================
name            : ink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081030>
salience        : 9.2957916422165e-06
wikipedia_url   : -
====================
name            : ponds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813a0>
salience        : 9.293431503465399e-06
wikipedia_url   : -
====================
name            : puddles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c940>
salience        : 9.293431503465399e-06
wikipedia_url   : -
====================
name            : gear
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c990>
salience        : 9.293431503465399e-06
wikipedia_url   : -
====================
name            : woxxy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c2b0>
salience        : 9.293431503465399e-06
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfbc0>
salience        : 9.293076800531708e-06
wikipedia_url   : -
====================
name            : fab
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff80>
salience        : 9.29111865843879e-06
wikipedia_url   : -
====================
name            : doublemacbex
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf6c0>
salience        : 9.288853107136674e-06
wikipedia_url   : -
====================
name            : ai
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf120>
salience        : 9.288853107136674e-06
wikipedia_url   : -
====================
name            : woman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089170>
salience        : 9.286631211580243e-06
wikipedia_url   : -
====================
name            : ride
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089490>
salience        : 9.284452971769497e-06
wikipedia_url   : -
====================
name            : shift team facltd treatment unit alpha1
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089990>
salience        : 9.284452971769497e-06
wikipedia_url   : -
====================
name            : check hashtag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089da0>
salience        : 9.28021745494334e-06
wikipedia_url   : -
====================
name            : duds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c10>
salience        : 9.278157449443825e-06
wikipedia_url   : -
====================
name            : thewave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ee0>
salience        : 9.277864592149854e-06
wikipedia_url   : -
====================
name            : globe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089800>
salience        : 9.276135642721783e-06
wikipedia_url   : -
====================
name            : issues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067da0>
salience        : 9.276135642721783e-06
wikipedia_url   : -
====================
name            : visitlondon jonchanuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d50>
salience        : 9.27414839679841e-06
wikipedia_url   : -
====================
name            : feast
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd46c0>
salience        : 9.27414839679841e-06
wikipedia_url   : -
====================
name            : quokkas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7670>
salience        : 9.27414839679841e-06
wikipedia_url   : -
====================
name            : madness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7710>
salience        : 9.27414839679841e-06
wikipedia_url   : -
====================
name            : tea pots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa77b0>
salience        : 9.272195711673703e-06
wikipedia_url   : -
====================
name            : thefools
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7850>
salience        : 9.270276677852962e-06
wikipedia_url   : -
====================
name            : existence
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa78f0>
salience        : 9.270276677852962e-06
wikipedia_url   : -
====================
name            : festival lights badger badger badger badger mushroom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7990>
salience        : 9.270276677852962e-06
wikipedia_url   : -
====================
name            : minster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7a80>
salience        : 9.268388566852082e-06
wikipedia_url   : -
====================
name            : jars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7ad0>
salience        : 9.268388566852082e-06
wikipedia_url   : -
====================
name            : sound design projection mapping
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7b20>
salience        : 9.268388566852082e-06
wikipedia_url   : -
====================
name            : miracle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7bc0>
salience        : 9.268388566852082e-06
wikipedia_url   : -
====================
name            : rover
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7c10>
salience        : 9.268388566852082e-06
wikipedia_url   : -
====================
name            : amp pandora box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7c60>
salience        : 9.256504199584015e-06
wikipedia_url   : -
====================
name            : amp pandora box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7cb0>
salience        : 9.256504199584015e-06
wikipedia_url   : -
====================
name            : fish phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7d00>
salience        : 9.256504199584015e-06
wikipedia_url   : -
====================
name            : beasts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7da0>
salience        : 9.252358722733334e-06
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7df0>
salience        : 9.249676622857805e-06
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels toevho
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7e90>
salience        : 9.248445167031605e-06
wikipedia_url   : -
====================
name            : londonlumiere lumierelondon aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7f30>
salience        : 9.245758519682568e-06
wikipedia_url   : -
====================
name            : flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a030>
salience        : 9.229433999280445e-06
wikipedia_url   : -
====================
name            : bicycles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a120>
salience        : 9.224467248714063e-06
wikipedia_url   : -
====================
name            : chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a1c0>
salience        : 9.22101298783673e-06
wikipedia_url   : -
====================
name            : lumiere london 2018 lumierelondon lumierelondon2018 meizu meizumx6
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a260>
salience        : 9.22101298783673e-06
wikipedia_url   : -
====================
name            : whatthefishsaw aquarium phoneaddict mania
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a300>
salience        : 9.211476026393939e-06
wikipedia_url   : -
====================
name            : non
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a350>
salience        : 9.199836313200649e-06
wikipedia_url   : -
====================
name            : defying gravity
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a3a0>
salience        : 9.19444028113503e-06
wikipedia_url   : -
====================
name            : amp nature
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a440>
salience        : 9.19444028113503e-06
wikipedia_url   : -
====================
name            : world light amp colours balance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a490>
salience        : 9.19444028113503e-06
wikipedia_url   : -
====================
name            : fella
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a530>
salience        : 9.19444028113503e-06
wikipedia_url   : -
====================
name            : hugs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a580>
salience        : 9.19444028113503e-06
wikipedia_url   : -
====================
name            : wabbey rcwestminster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a620>
salience        : 9.192328434437513e-06
wikipedia_url   : -
====================
name            : legs ache
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a6c0>
salience        : 9.189293450617697e-06
wikipedia_url   : -
====================
name            : selfie london transpo system
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a710>
salience        : 9.189293450617697e-06
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a760>
salience        : 9.18723253562348e-06
wikipedia_url   : -
====================
name            : structure
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a800>
salience        : 9.186805073113646e-06
wikipedia_url   : -
====================
name            : gates
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a8a0>
salience        : 9.186805073113646e-06
wikipedia_url   : -
====================
name            : poem
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a940>
salience        : 9.184372174786404e-06
wikipedia_url   : -
====================
name            : eyes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a990>
salience        : 9.184372174786404e-06
wikipedia_url   : -
====================
name            : aquarium evdjones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206aa30>
salience        : 9.181991117657162e-06
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206aad0>
salience        : 9.177019819617271e-06
wikipedia_url   : -
====================
name            : glance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ab70>
salience        : 9.054387192009017e-06
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ac10>
salience        : 8.923882887756918e-06
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206acb0>
salience        : 8.923882887756918e-06
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ad00>
salience        : 8.809288374322932e-06
wikipedia_url   : -
====================
name            : disney
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206adf0>
salience        : 8.805289326119237e-06
wikipedia_url   : https://en.wikipedia.org/wiki/The_Walt_Disney_Company
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ae40>
salience        : 8.802868251223117e-06
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ae90>
salience        : 8.802868251223117e-06
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206aee0>
salience        : 8.801629519439302e-06
wikipedia_url   : -
====================
name            : line king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206af30>
salience        : 8.800404430076014e-06
wikipedia_url   : -
====================
name            : line king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206af80>
salience        : 8.800404430076014e-06
wikipedia_url   : -
====================
name            : tip king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2030>
salience        : 8.797995178611018e-06
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2120>
salience        : 8.795320354693104e-06
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2210>
salience        : 8.79412345966557e-06
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2300>
salience        : 8.79412345966557e-06
wikipedia_url   : -
====================
name            : tmnikonian darraghdoyle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2350>
salience        : 8.649091796542052e-06
wikipedia_url   : -
====================
name            : fitzroy
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2440>
salience        : 8.645681191410404e-06
wikipedia_url   : -
====================
name            : pattenden couesy aichoke aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab24e0>
salience        : 8.644306944916025e-06
wikipedia_url   : -
====================
name            : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2580>
salience        : 8.629456715425476e-06
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2620>
salience        : 8.564650670450646e-06
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab26c0>
salience        : 8.563401934225112e-06
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2710>
salience        : 8.562168659409508e-06
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab27b0>
salience        : 8.560949936509132e-06
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2800>
salience        : 8.556210559618194e-06
wikipedia_url   : -
====================
name            : visitlondon victoriabid createvictoria
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab28a0>
salience        : 8.533200343663339e-06
wikipedia_url   : -
====================
name            : westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2940>
salience        : 8.529864317097235e-06
wikipedia_url   : -
====================
name            : babcockwalk step count thethroneseekers team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab29e0>
salience        : 8.497182534483727e-06
wikipedia_url   : -
====================
name            : thecrownestate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2a30>
salience        : 8.496061127516441e-06
wikipedia_url   : -
====================
name            : elements
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2ad0>
salience        : 8.496061127516441e-06
wikipedia_url   : -
====================
name            : money
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2b20>
salience        : 8.494463145325426e-06
wikipedia_url   : -
====================
name            : balls fire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2bc0>
salience        : 8.494463145325426e-06
wikipedia_url   : -
====================
name            : heawarming
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2c60>
salience        : 8.494463145325426e-06
wikipedia_url   : -
====================
name            : cans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2cb0>
salience        : 8.494463145325426e-06
wikipedia_url   : -
====================
name            : look rbehotels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2d00>
salience        : 8.49289062898606e-06
wikipedia_url   : -
====================
name            : desks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2d50>
salience        : 8.49134085001424e-06
wikipedia_url   : -
====================
name            : divas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2da0>
salience        : 8.49134085001424e-06
wikipedia_url   : -
====================
name            : bank light bulbs pulse flash
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2df0>
salience        : 8.48830950417323e-06
wikipedia_url   : -
====================
name            : outcome
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2e90>
salience        : 8.486826118314639e-06
wikipedia_url   : -
====================
name            : rococochocs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2f30>
salience        : 8.486826118314639e-06
wikipedia_url   : -
====================
name            : lovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079080>
salience        : 8.484460522595327e-06
wikipedia_url   : -
====================
name            : susie
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079120>
salience        : 8.48392301122658e-06
wikipedia_url   : -
====================
name            : fans
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220791c0>
salience        : 8.482500561513007e-06
wikipedia_url   : -
====================
name            : glow sticks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079260>
salience        : 8.482500561513007e-06
wikipedia_url   : -
====================
name            : frost bite pneumonia
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220792b0>
salience        : 8.481098120682873e-06
wikipedia_url   : -
====================
name            : enter calming
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079350>
salience        : 8.479714779241476e-06
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220793f0>
salience        : 8.478349627694115e-06
wikipedia_url   : -
====================
name            : evening standard
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079440>
salience        : 8.478349627694115e-06
wikipedia_url   : -
====================
name            : metline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220794e0>
salience        : 8.478349627694115e-06
wikipedia_url   : -
====================
name            : ambassador house forecou
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079530>
salience        : 8.477001756546088e-06
wikipedia_url   : -
====================
name            : thornton heath
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220795d0>
salience        : 8.477001756546088e-06
wikipedia_url   : -
====================
name            : operations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079670>
salience        : 8.474358764942735e-06
wikipedia_url   : -
====================
name            : trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079710>
salience        : 8.46926741360221e-06
wikipedia_url   : -
====================
name            : gasholderiplets kingscross lumiere levanterman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220797b0>
salience        : 8.428373803326394e-06
wikipedia_url   : -
====================
name            : ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079850>
salience        : 8.418456673098262e-06
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220798a0>
salience        : 8.418309334956575e-06
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220798f0>
salience        : 8.418309334956575e-06
wikipedia_url   : -
====================
name            : view
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079940>
salience        : 8.416621312790085e-06
wikipedia_url   : -
====================
name            : granarysquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220799e0>
salience        : 8.397358215006534e-06
wikipedia_url   : -
====================
name            : lumierelondon lumiere leicestersquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079a30>
salience        : 8.391276423935778e-06
wikipedia_url   : -
====================
name            : granarysquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079ad0>
salience        : 8.388889000343625e-06
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079bc0>
salience        : 8.30241151561495e-06
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079cb0>
salience        : 8.298983630083967e-06
wikipedia_url   : -
====================
name            : goodge street fouh
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079d00>
salience        : 8.298876309709158e-06
wikipedia_url   : -
====================
name            : dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079da0>
salience        : 8.293771315948106e-06
wikipedia_url   : -
====================
name            : likes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079df0>
salience        : 8.287754099001177e-06
wikipedia_url   : -
====================
name            : fitzrovia dontmissout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079e40>
salience        : 8.20625700725941e-06
wikipedia_url   : -
====================
name            : gosee themayfairhotel
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079ee0>
salience        : 8.179272299457807e-06
wikipedia_url   : -
====================
name            : exitmagazine maxcoopermax 2nickjones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079f80>
salience        : 8.142293154378422e-06
wikipedia_url   : -
====================
name            : taize prayer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7080>
salience        : 8.137256372720003e-06
wikipedia_url   : -
====================
name            : aurais tellement aimé pouvoir assister aux décidément notre
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7120>
salience        : 8.136872565955855e-06
wikipedia_url   : -
====================
name            : mauvais peut être
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7170>
salience        : 8.136872565955855e-06
wikipedia_url   : -
====================
name            : panasonicfz2500 fz2500
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc71c0>
salience        : 8.126848115352914e-06
wikipedia_url   : -
====================
name            : lumierelondon2018 lumierelondon justin_venn lumierelondon2018 lumierelondon lm_westminster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7260>
salience        : 8.126848115352914e-06
wikipedia_url   : -
====================
name            : visitlondon keeponwalking
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7300>
salience        : 8.126012289721984e-06
wikipedia_url   : -
====================
name            : go aichoketrust lumierelondon2018 visitlondon livonshoestring
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7350>
salience        : 8.10549590823939e-06
wikipedia_url   : -
====================
name            : kensington palace
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc73f0>
salience        : 8.098099897324573e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Kensington_Palace
====================
name            : atransformslives aichoketrust visitlondon openyoureyesldn
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7490>
salience        : 8.098099897324573e-06
wikipedia_url   : -
====================
name            : wabbey westminsterabbey greatbritain
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7530>
salience        : 8.098099897324573e-06
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture livonshoestring
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7580>
salience        : 8.087953574431594e-06
wikipedia_url   : -
====================
name            : lumiere mr_simms_hx
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7620>
salience        : 8.016057108761743e-06
wikipedia_url   : -
====================
name            : swim bladder infection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7670>
salience        : 7.896961506048683e-06
wikipedia_url   : -
====================
name            : project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7710>
salience        : 7.88356555858627e-06
wikipedia_url   : -
====================
name            : miss
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7760>
salience        : 7.881333658588119e-06
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7800>
salience        : 7.834854841348715e-06
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc78f0>
salience        : 7.822609404684044e-06
wikipedia_url   : -
====================
name            : aist imakefings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7990>
salience        : 7.81385006121127e-06
wikipedia_url   : -
====================
name            : aichoketrust visitlondon fuzzworks_uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7a30>
salience        : 7.812523108441383e-06
wikipedia_url   : -
====================
name            : shaftesbury avenue
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7ad0>
salience        : 7.808462214597967e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Shaftesbury_Avenue
====================
name            : lumierelondon grosvenor_ldn
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7b70>
salience        : 7.793625627527945e-06
wikipedia_url   : -
====================
name            : dot dot dot dot dot philippe morvan
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7c10>
salience        : 7.749742508167401e-06
wikipedia_url   : -
====================
name            : londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c suzystories
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7cb0>
salience        : 7.741193257970735e-06
wikipedia_url   : -
====================
name            : london chinatownldn festivaloflights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7d00>
salience        : 7.726495823590085e-06
wikipedia_url   : -
====================
name            : catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7d50>
salience        : 7.713278137089219e-06
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7df0>
salience        : 7.626686510775471e-06
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7e90>
salience        : 7.625142188771861e-06
wikipedia_url   : -
====================
name            : piccadillycircus building lights music video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7f30>
salience        : 7.624080808454892e-06
wikipedia_url   : -
====================
name            : visitlondon keeponwalking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7f80>
salience        : 7.613204161316389e-06
wikipedia_url   : -
====================
name            : marshalljulius london leicester square
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa080>
salience        : 7.539726084360154e-06
wikipedia_url   : -
====================
name            : westminsterabbey timeoutlondon kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa120>
salience        : 7.510228442697553e-06
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa1c0>
salience        : 7.352391548920423e-06
wikipedia_url   : -
====================
name            : facebook
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa260>
salience        : 7.3515793701517396e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Facebook
====================
name            : amp walk home
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa350>
salience        : 7.350088708335534e-06
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa3f0>
salience        : 7.348228336923057e-06
wikipedia_url   : -
====================
name            : lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa490>
salience        : 7.346771781158168e-06
wikipedia_url   : -
====================
name            : ajwoodcock
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d50>
salience        : 7.299475782929221e-06
wikipedia_url   : -
====================
name            : exhibits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8300>
salience        : 7.2294933488592505e-06
wikipedia_url   : -
====================
name            : group
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a80>
salience        : 7.1353847488353495e-06
wikipedia_url   : -
====================
name            : iphonese
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2760>
salience        : 7.135080522857606e-06
wikipedia_url   : https://en.wikipedia.org/wiki/IPhone_SE
====================
name            : thisislondon iphonephotography
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c10>
salience        : 7.135080522857606e-06
wikipedia_url   : -
====================
name            : ltda lumiere piccadilly burlington house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2f30>
salience        : 7.133739018172491e-06
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd24e0>
salience        : 7.126096988940844e-06
wikipedia_url   : -
====================
name            : westminster thegl0betrotter
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b20>
salience        : 7.120206191757461e-06
wikipedia_url   : -
====================
name            : arches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2580>
salience        : 7.118826943042222e-06
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2cb0>
salience        : 7.113576430128887e-06
wikipedia_url   : -
====================
name            : brown ha gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2850>
salience        : 7.0625837906845845e-06
wikipedia_url   : -
====================
name            : song lumierelondon thought
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28f0>
salience        : 7.024101705610519e-06
wikipedia_url   : -
====================
name            : tracey emin
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcc2df0>
salience        : 6.987894266785588e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Tracey_Emin
====================
name            : walk rainbow tunnel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc3a0>
salience        : 6.96801180311013e-06
wikipedia_url   : -
====================
name            : croydon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd92b0>
salience        : 6.945833774807397e-06
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Croydon
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9670>
salience        : 6.9296916080929805e-06
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b20>
salience        : 6.928631137270713e-06
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd99e0>
salience        : 6.927583854121622e-06
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9940>
salience        : 6.923521141288802e-06
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9850>
salience        : 6.91870309310616e-06
wikipedia_url   : -
====================
name            : share experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c10>
salience        : 6.858630058559356e-06
wikipedia_url   : -
====================
name            : tmnikonian redlionmayfair
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9120>
salience        : 6.8509025368257426e-06
wikipedia_url   : -
====================
name            : piccadilly victoria amsharif
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9df0>
salience        : 6.8415224632190075e-06
wikipedia_url   : -
====================
name            : swimming sevendials coventgarden outsidework greypointe cubitt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9cb0>
salience        : 6.840057267254451e-06
wikipedia_url   : -
====================
name            : mayfair grosvenor_ldn grosvenor_gbi greypointe cubitt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9030>
salience        : 6.838617082394194e-06
wikipedia_url   : -
====================
name            : bhawnasaini_yml
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3a0>
salience        : 6.803415089962073e-06
wikipedia_url   : -
====================
name            : newwestend wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e1c0>
salience        : 6.795402896386804e-06
wikipedia_url   : -
====================
name            : telephonebox bufalino deseille jakubkrupa
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e530>
salience        : 6.793834018026246e-06
wikipedia_url   : -
====================
name            : newcastle fontwell crz_mankai8
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e800>
salience        : 6.793834018026246e-06
wikipedia_url   : -
====================
name            : website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e990>
salience        : 6.746376584487734e-06
wikipedia_url   : -
====================
name            : actioncountersterrorism teamworktomakethedreamwork revdsimonharvey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea80>
salience        : 6.74251168675255e-06
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb70>
salience        : 6.740458047715947e-06
wikipedia_url   : -
====================
name            : sevendials lumierelondon ianbeetlestone westminsterabbey exitmagazine maxcoopermax
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed50>
salience        : 6.727873824274866e-06
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee90>
salience        : 6.7276869231136516e-06
wikipedia_url   : -
====================
name            : rhys coren
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e120>
salience        : 6.719643351971172e-06
wikipedia_url   : -
====================
name            : child hood pulse movement light amp sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9c60>
salience        : 6.6698621594696306e-06
wikipedia_url   : -
====================
name            : city hall danielcanogar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d98f0>
salience        : 6.591907549591269e-06
wikipedia_url   : -
====================
name            : dancing lights music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d92b0>
salience        : 6.575071893166751e-06
wikipedia_url   : -
====================
name            : simonmanleyfco que haya luz segunda edición del festival de luces en londres
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9490>
salience        : 6.553487310156925e-06
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9710>
salience        : 6.5336535044480115e-06
wikipedia_url   : -
====================
name            : brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d95d0>
salience        : 6.510921593871899e-06
wikipedia_url   : -
====================
name            : amp pandora box brightnights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9670>
salience        : 6.509937520604581e-06
wikipedia_url   : -
====================
name            : amp pandora box brightnights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e40>
salience        : 6.509937520604581e-06
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47da0>
salience        : 6.508005753858015e-06
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d50>
salience        : 6.505193141492782e-06
wikipedia_url   : -
====================
name            : child
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47940>
salience        : 6.502476935565937e-06
wikipedia_url   : -
====================
name            : traveljunkiegrl
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ad0>
salience        : 6.4355272115790285e-06
wikipedia_url   : -
====================
name            : statue
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc476c0>
salience        : 6.428064807550982e-06
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473f0>
salience        : 6.395257059921278e-06
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47490>
salience        : 6.385106644302141e-06
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7030>
salience        : 6.383211257343646e-06
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad72b0>
salience        : 6.383211257343646e-06
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7490>
salience        : 6.3822808442637324e-06
wikipedia_url   : -
====================
name            : warning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7760>
salience        : 6.3822808442637324e-06
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7850>
salience        : 6.35247988611809e-06
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7b20>
salience        : 6.35172091278946e-06
wikipedia_url   : -
====================
name            : make note
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7cb0>
salience        : 6.320424290606752e-06
wikipedia_url   : -
====================
name            : piccadilly stjames jermynstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7da0>
salience        : 6.28770976618398e-06
wikipedia_url   : -
====================
name            : scape collectifcoin echelle ronhaselden
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ad7f80>
salience        : 6.2858207456883974e-06
wikipedia_url   : -
====================
name            : visitlondon visitlondon createvictoria tanjaphotograph magical lumière london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7120>
salience        : 6.2858207456883974e-06
wikipedia_url   : -
====================
name            : oppounities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7260>
salience        : 6.275116447795881e-06
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7440>
salience        : 6.273319286265178e-06
wikipedia_url   : -
====================
name            : bhawnasaini_yml
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa7530>
salience        : 6.2551475821237545e-06
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7800>
salience        : 6.2422786868410185e-06
wikipedia_url   : -
====================
name            : kingscross couesy nofilterneeded
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f30>
salience        : 6.2366993915929925e-06
wikipedia_url   : -
====================
name            : mayfair johansford johansfordsalon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc77b0>
salience        : 6.2328904277819674e-06
wikipedia_url   : -
====================
name            : pong lumierelondon2018 waterlicht dan
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a81350>
salience        : 6.2328904277819674e-06
wikipedia_url   : -
====================
name            : londonblogger wintersinlondon nightfestival wildscreens
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7cb0>
salience        : 6.204596047609812e-06
wikipedia_url   : -
====================
name            : scrums
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7080>
salience        : 6.123356342868647e-06
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a80>
salience        : 6.114326424722094e-06
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b70>
salience        : 6.113391009421321e-06
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7670>
salience        : 6.110652975621633e-06
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2bc0>
salience        : 6.109762125561247e-06
wikipedia_url   : -
====================
name            : planet
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2850>
salience        : 6.109762125561247e-06
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2df0>
salience        : 6.108882189437281e-06
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2800>
salience        : 6.1063024077157024e-06
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2030>
salience        : 6.105462034611264e-06
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2440>
salience        : 6.023397872922942e-06
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f80>
salience        : 6.022530214977451e-06
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3df0>
salience        : 6.022530214977451e-06
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc30d0>
salience        : 6.021672561473679e-06
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3710>
salience        : 6.021672561473679e-06
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3760>
salience        : 6.019986813043943e-06
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc35d0>
salience        : 6.0191582633706275e-06
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b20>
salience        : 6.0191582633706275e-06
wikipedia_url   : -
====================
name            : insight magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d00>
salience        : 5.986421911075013e-06
wikipedia_url   : -
====================
name            : trafalgarsquare collectifcoin
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1850>
salience        : 5.9369490372773726e-06
wikipedia_url   : -
====================
name            : physicalenergy openyoureyesldn
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1c60>
salience        : 5.92289688938763e-06
wikipedia_url   : -
====================
name            : lumiere southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa490>
salience        : 5.834327566844877e-06
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf80>
salience        : 5.831805992784211e-06
wikipedia_url   : -
====================
name            : sroosegaarde pa catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad50>
salience        : 5.812025392515352e-06
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab70>
salience        : 5.75053718421259e-06
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa5d0>
salience        : 5.748809599026572e-06
wikipedia_url   : -
====================
name            : leebrowne1971 lumierelondon2018 lumierelondon visitlondon maxcoopermax
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa80>
salience        : 5.73131046621711e-06
wikipedia_url   : -
====================
name            : london lumierelondon timeoutlondon lightfestival glamazonlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c52b0>
salience        : 5.713574410037836e-06
wikipedia_url   : -
====================
name            : lumierelondon bbctravelale
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce300>
salience        : 5.700934707419947e-06
wikipedia_url   : -
====================
name            : piccadilly stjames jermynstreet smitf_london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098c10>
salience        : 5.700934707419947e-06
wikipedia_url   : -
====================
name            : dinner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ad0>
salience        : 5.576840976573294e-06
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095120>
salience        : 5.5492982937721536e-06
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220954e0>
salience        : 5.548459739657119e-06
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002b70>
salience        : 5.547631644731155e-06
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee40>
salience        : 5.545205567614175e-06
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f30>
salience        : 5.5444161262130365e-06
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0490>
salience        : 5.543635325011564e-06
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0800>
salience        : 5.543635325011564e-06
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad8a0>
salience        : 5.543635325011564e-06
wikipedia_url   : -
====================
name            : lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad300>
salience        : 5.542864073504461e-06
wikipedia_url   : -
====================
name            : music amp wind everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad990>
salience        : 5.5421010074496735e-06
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad260>
salience        : 5.5421010074496735e-06
wikipedia_url   : -
====================
name            : magic mayfair lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2260>
salience        : 5.488382157636806e-06
wikipedia_url   : -
====================
name            : vous voulez voir quelques vidéos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220810d0>
salience        : 5.487043381435797e-06
wikipedia_url   : -
====================
name            : shaida ealking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081580>
salience        : 5.485731435328489e-06
wikipedia_url   : -
====================
name            : lumiere umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c760>
salience        : 5.472779776027892e-06
wikipedia_url   : -
====================
name            : lewisham vbp2011
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf800>
salience        : 5.4470065151690505e-06
wikipedia_url   : -
====================
name            : cast commentary
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d50>
salience        : 5.441770099423593e-06
wikipedia_url   : -
====================
name            : students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067170>
salience        : 5.439362212200649e-06
wikipedia_url   : -
====================
name            : euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa580>
salience        : 5.43780834050267e-06
wikipedia_url   : -
====================
name            : balloons
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa670>
salience        : 5.435533694253536e-06
wikipedia_url   : -
====================
name            : flickr
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa710>
salience        : 5.435533694253536e-06
wikipedia_url   : -
====================
name            : ilovelondon nationalhuggingday2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa7b0>
salience        : 5.431272256828379e-06
wikipedia_url   : -
====================
name            : wld
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa800>
salience        : 5.400603640737245e-06
wikipedia_url   : -
====================
name            : jayonlife visitlondon julie_guldahl
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa8a0>
salience        : 5.342810709407786e-06
wikipedia_url   : -
====================
name            : fitzrovia area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa940>
salience        : 5.330446128937183e-06
wikipedia_url   : -
====================
name            : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust mrcravenracont
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaa9e0>
salience        : 5.329026407707715e-06
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaaa80>
salience        : 5.328864062903449e-06
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaab20>
salience        : 5.328864062903449e-06
wikipedia_url   : -
====================
name            : scenes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaabc0>
salience        : 5.325070105755003e-06
wikipedia_url   : -
====================
name            : amp care animals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaac10>
salience        : 5.277275704429485e-06
wikipedia_url   : -
====================
name            : order prints
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaacb0>
salience        : 5.272740509099094e-06
wikipedia_url   : -
====================
name            : origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaad00>
salience        : 5.214744305703789e-06
wikipedia_url   : -
====================
name            : website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaada0>
salience        : 5.211648840486305e-06
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaae40>
salience        : 5.211648840486305e-06
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaae90>
salience        : 5.209422852203716e-06
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aaaf80>
salience        : 5.172857072466286e-06
wikipedia_url   : -
====================
name            : friend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a210d0>
salience        : 5.092433184472611e-06
wikipedia_url   : -
====================
name            : friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a211c0>
salience        : 5.08867742610164e-06
wikipedia_url   : -
====================
name            : bench lumierelondon friendship
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21210>
salience        : 5.08867742610164e-06
wikipedia_url   : -
====================
name            : flowers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a212b0>
salience        : 5.0865282901213504e-06
wikipedia_url   : -
====================
name            : canonukandie visitlondon aichoketrust southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21350>
salience        : 5.045871148467995e-06
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213a0>
salience        : 5.029188741900725e-06
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213f0>
salience        : 5.027015504310839e-06
wikipedia_url   : -
====================
name            : kings cross lumiere reed_claire
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21490>
salience        : 5.018726824346231e-06
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey visitlondon lumierelondon lumierelondon soed dslr lumiere london lumiere lumierelondon aichoketrust visitlondon tfltrafficnews
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21530>
salience        : 5.0159383135905955e-06
wikipedia_url   : -
====================
name            : manchester
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21620>
salience        : 5.013271675124997e-06
wikipedia_url   : -
====================
name            : philip vaughan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a216c0>
salience        : 5.0115563681174535e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Philip_Vaughan
====================
name            : lumierelondon southbank chinatown westminsterabbey stjames london lovelondon piccadillyline
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21760>
salience        : 5.006062565371394e-06
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21800>
salience        : 4.963548235537019e-06
wikipedia_url   : -
====================
name            : movement amp sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21850>
salience        : 4.963548235537019e-06
wikipedia_url   : -
====================
name            : beacon light darkness riverfront
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218f0>
salience        : 4.963548235537019e-06
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21940>
salience        : 4.96269740324351e-06
wikipedia_url   : -
====================
name            : animals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a219e0>
salience        : 4.962057118973462e-06
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a80>
salience        : 4.962057118973462e-06
wikipedia_url   : -
====================
name            : animal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b20>
salience        : 4.962057118973462e-06
wikipedia_url   : -
====================
name            : ladder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21bc0>
salience        : 4.961324975738535e-06
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c10>
salience        : 4.961324975738535e-06
wikipedia_url   : -
====================
name            : justice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21cb0>
salience        : 4.959180841979105e-06
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d00>
salience        : 4.958482804795494e-06
wikipedia_url   : -
====================
name            : whizz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d50>
salience        : 4.957792498316849e-06
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e40>
salience        : 4.84653583043837e-06
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ee0>
salience        : 4.844441264140187e-06
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f80>
salience        : 4.837818778469227e-06
wikipedia_url   : -
====================
name            : child hood collectif coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf030>
salience        : 4.8271394916810095e-06
wikipedia_url   : -
====================
name            : child hood collectif coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf080>
salience        : 4.825689302379033e-06
wikipedia_url   : -
====================
name            : child hood collectif coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf0d0>
salience        : 4.82289215142373e-06
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf170>
salience        : 4.821542006538948e-06
wikipedia_url   : -
====================
name            : child hood collectif coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf1c0>
salience        : 4.820878530154005e-06
wikipedia_url   : -
====================
name            : array
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf210>
salience        : 4.751292635774007e-06
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf260>
salience        : 4.6820186980767176e-06
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf2b0>
salience        : 4.6820186980767176e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf350>
salience        : 4.681311111198738e-06
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf3a0>
salience        : 4.681311111198738e-06
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf490>
salience        : 4.681311111198738e-06
wikipedia_url   : -
====================
name            : production
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf530>
salience        : 4.67923973701545e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf5d0>
salience        : 4.677899596572388e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf670>
salience        : 4.677899596572388e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf710>
salience        : 4.677899596572388e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf7b0>
salience        : 4.677899596572388e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf850>
salience        : 4.677241122408304e-06
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf940>
salience        : 4.677241122408304e-06
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abf9e0>
salience        : 4.677241122408304e-06
wikipedia_url   : -
====================
name            : scifi movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfad0>
salience        : 4.676589924201835e-06
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfb70>
salience        : 4.675946456700331e-06
wikipedia_url   : -
====================
name            : installation ganton street
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfc10>
salience        : 4.635488494386664e-06
wikipedia_url   : -
====================
name            : lumiere2018 southbank leicestersquare westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfcb0>
salience        : 4.6255199777078815e-06
wikipedia_url   : -
====================
name            : names
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfd00>
salience        : 4.526667453319533e-06
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfda0>
salience        : 4.526667453319533e-06
wikipedia_url   : -
====================
name            : church
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfe90>
salience        : 4.522684321273118e-06
wikipedia_url   : -
====================
name            : glissando action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22abfee0>
salience        : 4.522047674981877e-06
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a030>
salience        : 4.52141830464825e-06
wikipedia_url   : -
====================
name            : london lumierelondon londonisopen sadiqkhan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a080>
salience        : 4.431250999914482e-06
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a120>
salience        : 4.359760168881621e-06
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a170>
salience        : 4.359093054517871e-06
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a1c0>
salience        : 4.359093054517871e-06
wikipedia_url   : -
====================
name            : bum
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a210>
salience        : 4.358434125606436e-06
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a260>
salience        : 4.358434125606436e-06
wikipedia_url   : -
====================
name            : bat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a2b0>
salience        : 4.358434125606436e-06
wikipedia_url   : -
====================
name            : bum
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a300>
salience        : 4.356505542091327e-06
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a3a0>
salience        : 4.356505542091327e-06
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a440>
salience        : 4.356505542091327e-06
wikipedia_url   : -
====================
name            : spire stop café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a4e0>
salience        : 4.356505542091327e-06
wikipedia_url   : -
====================
name            : wildlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a580>
salience        : 4.3558779907471035e-06
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a670>
salience        : 4.355257715360494e-06
wikipedia_url   : -
====================
name            : images wildlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a6c0>
salience        : 4.355257715360494e-06
wikipedia_url   : -
====================
name            : creation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a760>
salience        : 4.354644715931499e-06
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a7b0>
salience        : 4.354038537712768e-06
wikipedia_url   : -
====================
name            : hyde park corner
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a850>
salience        : 4.354038537712768e-06
wikipedia_url   : -
====================
name            : hyde park corner
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a8f0>
salience        : 4.354038537712768e-06
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8a9e0>
salience        : 4.353439180704299e-06
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8aad0>
salience        : 4.353439180704299e-06
wikipedia_url   : -
====================
name            : rhianbwatts
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8abc0>
salience        : 4.279207587387646e-06
wikipedia_url   : -
====================
name            : pa imakefings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8acb0>
salience        : 4.248674486007076e-06
wikipedia_url   : -
====================
name            : well
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ad50>
salience        : 4.177242317382479e-06
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ada0>
salience        : 4.176522452326026e-06
wikipedia_url   : -
====================
name            : toddy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ae40>
salience        : 4.175972208031453e-06
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ae90>
salience        : 4.175348749413388e-06
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8aee0>
salience        : 4.175348749413388e-06
wikipedia_url   : -
====================
name            : srmlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5030>
salience        : 4.174733021500288e-06
wikipedia_url   : -
====================
name            : london lumiere srmlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae50d0>
salience        : 4.171760338067543e-06
wikipedia_url   : -
====================
name            : hands
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5120>
salience        : 4.171760338067543e-06
wikipedia_url   : -
====================
name            : theatre
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5210>
salience        : 4.171186446910724e-06
wikipedia_url   : -
====================
name            : lumierelondon2018 thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5260>
salience        : 4.126203748455737e-06
wikipedia_url   : -
====================
name            : frogs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae52b0>
salience        : 4.074966000189306e-06
wikipedia_url   : -
====================
name            : helbron
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5350>
salience        : 3.975414529122645e-06
wikipedia_url   : -
====================
name            : installation company
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae53f0>
salience        : 3.975414529122645e-06
wikipedia_url   : -
====================
name            : training jobs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5490>
salience        : 3.973054845118895e-06
wikipedia_url   : -
====================
name            : tfl update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5530>
salience        : 3.971916612499626e-06
wikipedia_url   : -
====================
name            : mader wiermann grabber computer
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae55d0>
salience        : 3.971357728005387e-06
wikipedia_url   : -
====================
name            : sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5620>
salience        : 3.971357728005387e-06
wikipedia_url   : -
====================
name            : oxfordstreet bike
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae56c0>
salience        : 3.970258603658294e-06
wikipedia_url   : -
====================
name            : hatmanoflondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5760>
salience        : 3.970258603658294e-06
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae57b0>
salience        : 3.92759102396667e-06
wikipedia_url   : -
====================
name            : lumiere lumierelondon lumierelondon2018 mayfair streeta
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5850>
salience        : 3.888371793436818e-06
wikipedia_url   : -
====================
name            : que haya luz segunda edición del festival de
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae58f0>
salience        : 3.751508074856247e-06
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5990>
salience        : 3.7505049022001913e-06
wikipedia_url   : -
====================
name            : thesavoylondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5a30>
salience        : 3.7477050227607833e-06
wikipedia_url   : -
====================
name            : tflbusales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5b20>
salience        : 3.746631591639016e-06
wikipedia_url   : -
====================
name            : front page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5bc0>
salience        : 3.7450672607519664e-06
wikipedia_url   : -
====================
name            : background
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5c60>
salience        : 3.744557716345298e-06
wikipedia_url   : -
====================
name            : techniciansmakeithappen smitf_london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5d00>
salience        : 3.609101668189396e-06
wikipedia_url   : -
====================
name            : piccadillycircus wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5da0>
salience        : 3.504961568978615e-06
wikipedia_url   : -
====================
name            : westminster mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5df0>
salience        : 3.504462483761017e-06
wikipedia_url   : -
====================
name            : giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5e90>
salience        : 3.490243216219824e-06
wikipedia_url   : -
====================
name            : light festival gasholders
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae5f30>
salience        : 3.4897284422186203e-06
wikipedia_url   : -
====================
name            : bum levanterman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae8030>
salience        : 3.4897284422186203e-06
wikipedia_url   : -
====================
name            : giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae80d0>
salience        : 3.4897284422186203e-06
wikipedia_url   : -
====================
name            : followers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae81c0>
salience        : 3.488717084110249e-06
wikipedia_url   : -
====================
name            : followers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae82b0>
salience        : 3.488717084110249e-06
wikipedia_url   : -
====================
name            : photography lumiere london point
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae8300>
salience        : 3.486289188003866e-06
wikipedia_url   : -
====================
name            : pic
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae83a0>
salience        : 3.486289188003866e-06
wikipedia_url   : -
====================
name            : nickede wait
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ae8440>
salience        : 3.4058166420436464e-06
wikipedia_url   : -
====================
name            : shaftesburyplc regentst_assoc thecrownestate
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9ff80>
salience        : 3.2445761917188065e-06
wikipedia_url   : -
====================
name            : seat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064490>
salience        : 3.20010440191254e-06
wikipedia_url   : -
====================
name            : culture fitness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a080>
salience        : 3.183994977007387e-06
wikipedia_url   : -
====================
name            : buzz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a0d0>
salience        : 3.1830384159547975e-06
wikipedia_url   : -
====================
name            : film exposure
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a210>
salience        : 3.1816466616874095e-06
wikipedia_url   : -
====================
name            : waltz piano
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a4e0>
salience        : 3.18030288326554e-06
wikipedia_url   : -
====================
name            : timings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a670>
salience        : 3.1798654163139872e-06
wikipedia_url   : -
====================
name            : wld
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a7b0>
salience        : 3.1798654163139872e-06
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a8f0>
salience        : 3.079936277572415e-06
wikipedia_url   : -
====================
name            : badgermoon stopthecull
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206a9e0>
salience        : 3.0038406748644775e-06
wikipedia_url   : -
====================
name            : habitat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ab20>
salience        : 2.7962501008005347e-06
wikipedia_url   : -
====================
name            : water fountain
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ac60>
salience        : 2.7962501008005347e-06
wikipedia_url   : -
====================
name            : performance wiltonmusichall
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ad50>
salience        : 2.7962501008005347e-06
wikipedia_url   : -
====================
name            : night go check visitlondon alifestylerebel
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ada0>
salience        : 2.7958274131378857e-06
wikipedia_url   : -
====================
name            : spire hallelujah chorus
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab20d0>
salience        : 2.7949977265961934e-06
wikipedia_url   : -
====================
name            : drawings
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2260>
salience        : 2.7949977265961934e-06
wikipedia_url   : -
====================
name            : amp sweets sugar
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab23a0>
salience        : 2.794590272969799e-06
wikipedia_url   : -
====================
name            : polaroidorignls type
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab23f0>
salience        : 2.7941878215642646e-06
wikipedia_url   : -
====================
name            : hell
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2490>
salience        : 2.793789917632239e-06
wikipedia_url   : -
====================
name            : festival lights engineering
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2530>
salience        : 2.793789917632239e-06
wikipedia_url   : -
====================
name            : backdrop coal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2670>
salience        : 2.793396561173722e-06
wikipedia_url   : -
====================
name            : version
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab28f0>
salience        : 2.793396561173722e-06
wikipedia_url   : -
====================
name            : cuties
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2a80>
salience        : 2.792243321891874e-06
wikipedia_url   : -
====================
name            : brrrrr
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2e40>
salience        : 2.792243321891874e-06
wikipedia_url   : -
====================
name            : lumière london lumierelondon2018 7dialslondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22ab2f80>
salience        : 2.6731424895842792e-06
wikipedia_url   : -
====================
name            : aichoketrust lumierelondon2018 visitlondon fuzzworks_uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220790d0>
salience        : 2.5745684979483485e-06
wikipedia_url   : -
====================
name            : names
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079170>
salience        : 2.5367658054165076e-06
wikipedia_url   : -
====================
name            : london lumierelondon ivysohobrass
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079300>
salience        : 2.533257656978094e-06
wikipedia_url   : -
====================
name            : shapes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079490>
salience        : 2.440462367303553e-06
wikipedia_url   : -
====================
name            : london lumiere openyoureyesldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079580>
salience        : 2.3479592528019566e-06
wikipedia_url   : -
====================
name            : piccadilly stjames jermynstreet loki_lego
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220796c0>
salience        : 2.347608642594423e-06
wikipedia_url   : -
====================
name            : igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079800>
salience        : 2.345268285353086e-06
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079990>
salience        : 2.206231101808953e-06
wikipedia_url   : -
====================
name            : copper pic
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079b70>
salience        : 2.1855937575310236e-06
wikipedia_url   : -
====================
name            : lumierelondon photograghy lizziemidd
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079c10>
salience        : 2.0626530385925435e-06
wikipedia_url   : -
====================
name            : newcastle
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22079e90>
salience        : 2.060816314042313e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Newcastle_upon_Tyne
====================
name            : lumierelondon lumierelondon2018 visitlondon ontheroadtoyou
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7030>
salience        : 1.9383360267966054e-06
wikipedia_url   : -
====================
name            : danish
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc72b0>
salience        : 1.8808135564540862e-06
wikipedia_url   : -
====================
name            : westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc7440>
salience        : 1.8783741779770935e-06
wikipedia_url   : -
====================
name            : thejanuarychallenge 64millionaists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc75d0>
salience        : 1.6507881355209975e-06
wikipedia_url   : -
====================
name            : newcastle fontwell crz_mankai8 awesmoeb adithatsme
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc77b0>
salience        : 1.6505504163433216e-06
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon2018 lumiere airheadhell
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dc78a0>
salience        : 1.6498534023412503e-06
wikipedia_url   : -
In [102]:
print(entities)
[name: "project"
type: OTHER
salience: 0.3702075183391571
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.37012481689453125
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "awork entre les rangs _kanva behindthescenes grosvenor_gbi mayfair london"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/04jpl"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/London"
}
salience: 0.024993306025862694
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "awork entre les rangs _kanva behindthescenes  grosvenor_gbi mayfair london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "waterlicht daan roosegaarde london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumi\303\250re london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumiere2018 oxfordstreet travel londonlife hireme lookingforajob londonphotographer  simon_burgess lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aists"
type: PERSON
salience: 0.009003369137644768
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leicester square"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0n7zx"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Leicester_Square"
}
salience: 0.007908349856734276
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "china town london  marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "festival"
type: EVENT
salience: 0.0022680754773318768
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.0018272475572302938
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.0017155271489173174
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 0.0015754628693684936
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.001548128784634173
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations amp"
type: OTHER
salience: 0.001483282190747559
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0014494014903903008
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.00141461833845824
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 0.0013763554161414504
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0013611754402518272
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0011756190797314048
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bridge london"
type: LOCATION
salience: 0.0011265557259321213
mentions {
  text {
    content: "bridge london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "bridge london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "bridge london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust biggsytravels newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium"
type: PERSON
salience: 0.0010874784784391522
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "mondaymotivation ginoclock  ginuary  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  weekendaswa"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey westminsterabbey  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminsterabbey  lumierelondon joinin247  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust biggsytravels  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "waterlicht  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installations"
type: OTHER
salience: 0.0010838861344382167
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.0010816248832270503
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0010199201060459018
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 0.0009826116729527712
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.0009651865693740547
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beasts"
type: OTHER
salience: 0.0009520838502794504
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust mayoroflondon visitlondon"
type: OTHER
salience: 0.0009227250120602548
mentions {
  text {
    content: "aichoketrust mayoroflondon visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wonderland"
    begin_offset: -1
  }
  type: COMMON
}
, name: "show"
type: WORK_OF_ART
salience: 0.00087244767928496
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "telephone box library"
type: OTHER
salience: 0.0008327019168063998
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "telephone box library"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.000814691768027842
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "professionalphotographer london lumierelondon lumiere westminsterabbey westminster"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0f485"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/City_of_Westminster"
}
salience: 0.0007875790470279753
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "professionalphotographer london lumierelondon lumiere westminsterabbey westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "south bank amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere"
type: OTHER
salience: 0.0007807473302818835
mentions {
  text {
    content: "lumiere"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightinstallation awork london"
type: LOCATION
salience: 0.0007585528073832393
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lightinstallation awork london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "event"
type: EVENT
salience: 0.0007452575373463333
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere installations"
type: OTHER
salience: 0.0006768921157345176
mentions {
  text {
    content: "lumiere installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumiere installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "instagram"
type: OTHER
metadata {
  key: "mid"
  value: "/m/0glpjll"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Instagram"
}
salience: 0.000675997871439904
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "interview harry qedproductions"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram"
    begin_offset: -1
  }
  type: PROPER
}
, name: "entrance leakestreet"
type: PERSON
salience: 0.0006751035689376295
mentions {
  text {
    content: "entrance leakestreet"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "entrance leakestreet"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "entrance leakestreet"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lamps office"
type: OTHER
salience: 0.0006670279544778168
mentions {
  text {
    content: "lamps office"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lamps office"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lamps office"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lamps office"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lamps office"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitor experiences"
type: OTHER
salience: 0.0006649464485235512
mentions {
  text {
    content: "visitor experiences"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visitor experiences"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visitor experiences"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visitor experiences"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave"
type: OTHER
salience: 0.0006254544132389128
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.0005908877355977893
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxford"
type: LOCATION
salience: 0.0005731345154345036
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford"
    begin_offset: -1
  }
  type: PROPER
}
, name: "trafalgar square"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0gsxw"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Trafalgar_Square"
}
salience: 0.0005729453987441957
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "front"
type: OTHER
salience: 0.0005305141094140708
mentions {
  text {
    content: "front"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "front"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "front"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 0.0005229630623944104
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall projection"
type: OTHER
salience: 0.0005012310575693846
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 0.0004955618642270565
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire"
type: OTHER
salience: 0.000494323787279427
mentions {
  text {
    content: "spire"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "spire"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "spire"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 0.0004884327645413578
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowds"
type: PERSON
salience: 0.00048713726573623717
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht daan roosegaarde love md lumierelondon totastemaker kingscross lumiere simon_burgess lumiere london"
type: LOCATION
salience: 0.00048496946692466736
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "waterlicht daan roosegaarde love md  lumierelondon totastemaker kingscross lumiere  simon_burgess lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "shots"
type: WORK_OF_ART
salience: 0.0004742695309687406
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londoners"
type: PERSON
salience: 0.000467038742499426
mentions {
  text {
    content: "londoners"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 0.00045367778511717916
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selection favourite installations"
type: OTHER
salience: 0.0004506278783082962
mentions {
  text {
    content: "selection favourite installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 0.00042768538696691394
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00042374173062853515
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00042374173062853515
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists"
type: PERSON
salience: 0.0004158902447670698
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.0004134414193686098
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit exhibitions"
type: PERSON
salience: 0.0004109161382075399
mentions {
  text {
    content: "visit exhibitions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross granary square"
type: LOCATION
salience: 0.0004030588024761528
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 0.00038827621028758585
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abuse"
type: OTHER
salience: 0.0003877361596096307
mentions {
  text {
    content: "abuse"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "abuse"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "abuse"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "abuse"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "abuse"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00038148576277308166
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cities"
type: LOCATION
salience: 0.00037768681067973375
mentions {
  text {
    content: "cities"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "violence"
type: OTHER
salience: 0.00037728543975390494
mentions {
  text {
    content: "violence"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "violence"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "violence"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "violence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "students"
type: PERSON
salience: 0.00036642790655605495
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00036230075056664646
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown london"
type: LOCATION
salience: 0.0003551542467903346
mentions {
  text {
    content: "chinatown london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chinatown london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chinatown london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 0.00035366317024454474
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winter light festival"
type: EVENT
salience: 0.00035132377524860203
mentions {
  text {
    content: "winter light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00034972213325090706
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.0003456326376181096
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "decorations"
type: OTHER
salience: 0.0003317332302685827
mentions {
  text {
    content: "decorations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "decorations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: EVENT
salience: 0.00032299087615683675
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 0.0003225700929760933
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: OTHER
salience: 0.00031899905297905207
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00031559151830151677
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross"
type: OTHER
salience: 0.0003148938121739775
mentions {
  text {
    content: "king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.0003148034738842398
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross woh"
type: OTHER
salience: 0.0003145617665722966
mentions {
  text {
    content: "kingscross woh"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "kingscross woh"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "kingscross woh"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ilovephotography photoatn"
type: WORK_OF_ART
salience: 0.0003126648662146181
mentions {
  text {
    content: "ilovephotography photoatn"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display visitlondon"
type: PERSON
salience: 0.0003081517934333533
mentions {
  text {
    content: "display  visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 0.0003080577589571476
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 0.0002996555995196104
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "favourites"
type: PERSON
salience: 0.0002928028698079288
mentions {
  text {
    content: "favourites"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster abbey"
type: LOCATION
metadata {
  key: "mid"
  value: "/g/1tdy3yzm"
}
salience: 0.0002900139079429209
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installations"
type: OTHER
salience: 0.0002890642499551177
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.0002862843975890428
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "things"
type: OTHER
salience: 0.0002822526730597019
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 0.00027992416289635
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 0.000277019920758903
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 0.00027491713990457356
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.000270027230726555
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank amp"
type: PERSON
salience: 0.00026939023518934846
mentions {
  text {
    content: "southbank amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "southbank amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "southbank amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "southbank amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00026774880825541914
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.0002674050338100642
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0002668855304364115
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival thegl0betrotter patrice warrener"
type: PERSON
salience: 0.000263947993516922
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  thegl0betrotter patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon  thegl0betrotter patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice warrener"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "patrice"
    begin_offset: -1
  }
  type: PROPER
}
, name: "producer director cameraman promo coaching music video london"
type: PERSON
salience: 0.0002630717644933611
mentions {
  text {
    content: "producer director cameraman promo coaching music video london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation london"
type: OTHER
salience: 0.0002630717644933611
mentions {
  text {
    content: "installation london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bridge london"
type: LOCATION
salience: 0.00026083673583343625
mentions {
  text {
    content: "bridge london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leicestersquare london"
type: OTHER
salience: 0.0002595381229184568
mentions {
  text {
    content: "leicestersquare london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bridge london"
type: LOCATION
salience: 0.0002590461226645857
mentions {
  text {
    content: "bridge london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross london"
type: LOCATION
salience: 0.00025824597105383873
mentions {
  text {
    content: "king cross london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "red telephone box london londonlife"
type: ORGANIZATION
salience: 0.00025760885910131037
mentions {
  text {
    content: "red telephone box london londonlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross london"
type: LOCATION
salience: 0.0002573331003077328
mentions {
  text {
    content: "king cross london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.0002568979689385742
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 0.00025684526190161705
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hit londoners"
type: PERSON
salience: 0.0002566272160038352
mentions {
  text {
    content: "hit londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hit londoners"
type: PERSON
salience: 0.0002566272160038352
mentions {
  text {
    content: "hit londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 0.0002556164690759033
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00025097717298194766
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.0002447072183713317
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 0.00024178823514375836
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00023335780133493245
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 0.00023222460004035383
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "survivors"
type: PERSON
salience: 0.00023013795726001263
mentions {
  text {
    content: "survivors"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "survivors"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "survivors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00022831327805761248
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 0.0002279058244312182
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon lumiere"
type: OTHER
salience: 0.00022768074995838106
mentions {
  text {
    content: "neon lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "archdeaconluke lumierefestival"
type: PERSON
salience: 0.00022768074995838106
mentions {
  text {
    content: "archdeaconluke lumierefestival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "archdeaconluke lumierefestival"
type: PERSON
salience: 0.00022768074995838106
mentions {
  text {
    content: "archdeaconluke lumierefestival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.00022751485812477767
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "checking lights"
type: OTHER
salience: 0.00022685642761643976
mentions {
  text {
    content: "checking lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00022685642761643976
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: OTHER
salience: 0.0002267899108119309
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 0.0002265471121063456
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 0.00022611761232838035
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thank"
type: OTHER
salience: 0.00022584639373235404
mentions {
  text {
    content: "thank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light"
type: OTHER
salience: 0.00022572690795641392
mentions {
  text {
    content: "festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00022572690795641392
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography night light"
type: OTHER
salience: 0.00022492889547720551
mentions {
  text {
    content: "photography night light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light"
type: OTHER
salience: 0.00022492889547720551
mentions {
  text {
    content: "festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dream"
type: OTHER
salience: 0.00022403139155358076
mentions {
  text {
    content: "dream"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dream"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00022380895097739995
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00022380895097739995
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city bbclondonnews festival light"
type: LOCATION
salience: 0.000223384631681256
mentions {
  text {
    content: "city   bbclondonnews festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp light"
type: OTHER
salience: 0.00022301771969068795
mentions {
  text {
    content: "amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "uv lights"
type: OTHER
salience: 0.00022301771969068795
mentions {
  text {
    content: "uv lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00022269457986112684
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting"
type: OTHER
salience: 0.00022240592807065696
mentions {
  text {
    content: "lighting"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00022240592807065696
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00022214511409401894
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00022214511409401894
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.0002216887369286269
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.0002216887369286269
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.0002216887369286269
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00022148658172227442
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00022148658172227442
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00022148658172227442
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00022129854187369347
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets london"
type: OTHER
salience: 0.00022124176030047238
mentions {
  text {
    content: "streets london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "streets london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0002173562825191766
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plan"
type: OTHER
salience: 0.00021703900711145252
mentions {
  text {
    content: "plan"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "plan"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mrbs"
type: OTHER
salience: 0.0002167623897548765
mentions {
  text {
    content: "mrbs"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "mrbs"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "mrbs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "levanterman lumierelondon aichoketrust southbanklondon postcardslond1 lumiere london"
type: LOCATION
salience: 0.00021624098008032888
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "levanterman lumierelondon aichoketrust southbanklondon  postcardslond1 lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lighting installation"
type: OTHER
salience: 0.00020324552315287292
mentions {
  text {
    content: "lighting installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00020324552315287292
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00020324552315287292
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00020324552315287292
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00020324552315287292
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pubs"
type: LOCATION
salience: 0.0002028441522270441
mentions {
  text {
    content: "pubs"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "pubs"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "pubs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 0.0002022334811044857
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0002022334811044857
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0002022334811044857
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.000200965630938299
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.000200965630938299
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.000200965630938299
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00020051504543516785
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00020013486209791154
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0001998061197809875
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019951659487560391
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019925796368625015
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht installation"
type: OTHER
salience: 0.00019925796368625015
mentions {
  text {
    content: "waterlicht installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019925796368625015
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019925796368625015
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019902428903151304
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019902428903151304
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "name installation"
type: OTHER
salience: 0.00019902428903151304
mentions {
  text {
    content: "name installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "programme installations"
type: WORK_OF_ART
salience: 0.00019881120533682406
mentions {
  text {
    content: "programme installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019881120533682406
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019881120533682406
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019881120533682406
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019881120533682406
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019881120533682406
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019861538021359593
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019861538021359593
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019861538021359593
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.00019861538021359593
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "marquee lumiere installations"
type: OTHER
salience: 0.00019861538021359593
mentions {
  text {
    content: "marquee lumiere installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019843425252474844
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.00019843425252474844
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "duration dot installation"
type: OTHER
salience: 0.00019843425252474844
mentions {
  text {
    content: "duration dot installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.0001982657704502344
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.0001982657704502344
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0001982657704502344
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 0.00019810830417554826
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019810830417554826
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00019810830417554826
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thelightermankx"
type: OTHER
salience: 0.00019542562949936837
mentions {
  text {
    content: "thelightermankx"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: OTHER
salience: 0.0001944424002431333
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon visitlondon"
type: ORGANIZATION
salience: 0.0001944424002431333
mentions {
  text {
    content: "mayoroflondon  visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife"
type: OTHER
salience: 0.00019417773000895977
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightingale"
type: OTHER
salience: 0.00019417773000895977
mentions {
  text {
    content: "nightingale"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxo london nightlights"
type: ORGANIZATION
salience: 0.00019305736350361258
mentions {
  text {
    content: "oxo london nightlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sta planning visit"
type: EVENT
salience: 0.00019279013213235885
mentions {
  text {
    content: "sta planning visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00019105877436231822
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london town"
type: LOCATION
salience: 0.00018933467799797654
mentions {
  text {
    content: "london town"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00018888841441366822
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 0.00018841959536075592
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 0.00018664106028154492
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival sho"
type: OTHER
salience: 0.0001865727244876325
mentions {
  text {
    content: "festival sho"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival sho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "volunteers"
type: PERSON
salience: 0.00018644612282514572
mentions {
  text {
    content: "volunteers"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "volunteers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 0.0001863344805315137
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank amp"
type: ORGANIZATION
salience: 0.00018522398022469133
mentions {
  text {
    content: "south bank amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.000183016003575176
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa festival"
type: EVENT
salience: 0.00018296677444595844
mentions {
  text {
    content: "pa  festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hq"
type: LOCATION
salience: 0.00018235575407743454
mentions {
  text {
    content: "hq"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "hq"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00018205566448159516
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "projector screen pa lumiere festival"
type: EVENT
salience: 0.00018205566448159516
mentions {
  text {
    content: "projector screen pa lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00018205566448159516
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion highlights"
type: OTHER
salience: 0.0001819532917579636
mentions {
  text {
    content: "mickfusion  highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00018091425590682775
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.0001805086067179218
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00018016633111983538
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night train home sinoradiouk festival"
type: EVENT
salience: 0.00017987037426792085
mentions {
  text {
    content: "night train home  sinoradiouk  festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017937688971869648
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey light festival"
type: EVENT
salience: 0.00017937688971869648
mentions {
  text {
    content: "westminsterabbey light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017937688971869648
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.0001792624098015949
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumi\303\250re festival"
type: EVENT
salience: 0.00017916651268023998
mentions {
  text {
    content: "lumi\303\250re festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017897467478178442
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ospiti luminosi londra lumierelondon lumierelondon2018 leicestersquare"
type: PERSON
salience: 0.00017880489758681506
mentions {
  text {
    content: "ospiti luminosi londra  lumierelondon lumierelondon2018 leicestersquare"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london lumiere festival"
type: EVENT
salience: 0.00017879839288070798
mentions {
  text {
    content: "london lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chrisplant one"
type: PERSON
salience: 0.00017851816664915532
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017848364950623363
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon festival"
type: EVENT
salience: 0.00017848364950623363
mentions {
  text {
    content: "mayoroflondon festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon festival"
type: EVENT
salience: 0.00017848364950623363
mentions {
  text {
    content: "mayoroflondon festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017848364950623363
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017848364950623363
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere festival"
type: EVENT
salience: 0.00017834187019616365
mentions {
  text {
    content: "london lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 0.00017731101252138615
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 0.00017429023864679039
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross london"
type: LOCATION
salience: 0.00017213402315974236
mentions {
  text {
    content: "kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos"
type: WORK_OF_ART
salience: 0.00017211036174558103
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: PERSON
salience: 0.00017205784388352185
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon mayoroflondon"
type: OTHER
salience: 0.00017196143744513392
mentions {
  text {
    content: "visitlondon mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visitlondon  mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "world bubble"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.00017090750043280423
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: PERSON
salience: 0.0001704973547020927
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "floodlights king"
type: PERSON
salience: 0.00016964830865617841
mentions {
  text {
    content: "floodlights king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.00016960981884039938
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent"
type: ORGANIZATION
salience: 0.00016927396063692868
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light kings"
type: OTHER
salience: 0.0001690484641585499
mentions {
  text {
    content: "festival light kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 0.00016858465096447617
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 0.00016858465096447617
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 0.00016858465096447617
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "illumaphonium grosvenorsquare newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille"
type: PERSON
salience: 0.0001678833068581298
mentions {
  text {
    content: "thelondoneye   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "illumaphonium grosvenorsquare   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "benoit deseille"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nofilter kings"
type: OTHER
salience: 0.0001676118845352903
mentions {
  text {
    content: "nofilter kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square kings"
type: EVENT
salience: 0.0001676118845352903
mentions {
  text {
    content: "granary square kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 0.00016715200035832822
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "redevelopment kings"
type: OTHER
salience: 0.00016715200035832822
mentions {
  text {
    content: "redevelopment kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 0.00016715200035832822
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 0.00016715200035832822
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations kings"
type: OTHER
salience: 0.0001667772012297064
mentions {
  text {
    content: "installations kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aurora borealis kings"
type: PERSON
salience: 0.0001667772012297064
mentions {
  text {
    content: "aurora borealis kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 0.00016646095900796354
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 0.00016646095900796354
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 0.00016298206173814833
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night road closures"
type: EVENT
salience: 0.00016281017451547086
mentions {
  text {
    content: "night road closures"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "night road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guys"
type: PERSON
salience: 0.00016276440874207765
mentions {
  text {
    content: "guys"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster fitzrovia mayfair"
type: EVENT
metadata {
  key: "mid"
  value: "/m/0nbgf"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Mayfair"
}
salience: 0.0001619339018361643
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "kingscross fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "kingscross fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "kingscross fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "kingscross fitzrovia mayfair"
    begin_offset: -1
  }
  type: PROPER
}
, name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
type: PERSON
salience: 0.0001612865162314847
mentions {
  text {
    content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "amp"
type: OTHER
salience: 0.00015814551443327218
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 0.00015708708087913692
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nofilters"
type: PERSON
salience: 0.00015509076183661819
mentions {
  text {
    content: "nofilters"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnaby street joinin247 london"
type: ORGANIZATION
salience: 0.00015369955508504063
mentions {
  text {
    content: "carnaby street  joinin247 london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "marshalljulius london"
type: LOCATION
salience: 0.00015289821021724492
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "oxotowerwharf london"
type: LOCATION
salience: 0.00015281264495570213
mentions {
  text {
    content: "oxotowerwharf london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "leicestersquare london"
type: LOCATION
salience: 0.0001523933606222272
mentions {
  text {
    content: "leicestersquare london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "communities"
type: PERSON
salience: 0.00015210975834634155
mentions {
  text {
    content: "communities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere lumierelondon kingscross london"
type: PERSON
salience: 0.00015205162344500422
mentions {
  text {
    content: "lumiere  lumierelondon kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "abbey"
type: LOCATION
salience: 0.00015162646013777703
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 0.00015121042088139802
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 0.00015058525605127215
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 0.0001499253703514114
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: PERSON
salience: 0.00014949135947972536
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "andy popcornmedia_uk lumiere lumierelondon lumiere2018"
type: PERSON
salience: 0.0001473164593335241
mentions {
  text {
    content: "lumierelondon lumiere2018"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon lumiere2018"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "andy popcornmedia_uk lumiere  lumierelondon lumiere2018"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "colleague"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 0.0001473126030759886
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations amp"
type: PERSON
salience: 0.00014659097359981388
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 0.00014617929991800338
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "church abbey"
type: LOCATION
salience: 0.0001461276551708579
mentions {
  text {
    content: "church abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: OTHER
salience: 0.0001460060739191249
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "dot"
type: OTHER
salience: 0.00014574425586033612
mentions {
  text {
    content: "dot"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross granary square"
type: LOCATION
salience: 0.00014572215150110424
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 0.00014560652198269963
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "berkeley square"
type: LOCATION
salience: 0.0001440872874809429
mentions {
  text {
    content: "berkeley square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross granary square"
type: LOCATION
salience: 0.00014325580559670925
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: LOCATION
salience: 0.0001426951785106212
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "davekirwinphotography canon photography"
type: WORK_OF_ART
salience: 0.00014254597772378474
mentions {
  text {
    content: "davekirwinphotography  canon photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00014115516387391835
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "favourites"
type: PERSON
salience: 0.0001404155045747757
mentions {
  text {
    content: "favourites"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa"
type: OTHER
salience: 0.0001386212679790333
mentions {
  text {
    content: "pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa"
type: OTHER
salience: 0.00013813108671456575
mentions {
  text {
    content: "pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "berkeley square"
type: OTHER
salience: 0.00013711237988900393
mentions {
  text {
    content: "berkeley square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piccadilly lumierelondon"
type: OTHER
salience: 0.00013616099022328854
mentions {
  text {
    content: "piccadilly lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "capital city"
type: LOCATION
salience: 0.00013598677469417453
mentions {
  text {
    content: "capital city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: WORK_OF_ART
salience: 0.00013521530490834266
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canon photos"
type: WORK_OF_ART
salience: 0.00013484428927768022
mentions {
  text {
    content: "canon photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.00013484428927768022
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation dslrphotography city"
type: LOCATION
salience: 0.0001348310470348224
mentions {
  text {
    content: "installation dslrphotography city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.00013454190047923476
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon visitlondon lumierelondon london"
type: ORGANIZATION
salience: 0.00013422162737697363
mentions {
  text {
    content: "visitlondon visitlondon lumierelondon london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitlondon lumierelondon london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitlondon lumierelondon london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "weekend photos"
type: WORK_OF_ART
salience: 0.00013406614016275853
mentions {
  text {
    content: "weekend photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross london"
type: WORK_OF_ART
salience: 0.00013396443682722747
mentions {
  text {
    content: "kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "sketch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival photos"
type: WORK_OF_ART
salience: 0.00013387184299062937
mentions {
  text {
    content: "festival photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival photos"
type: WORK_OF_ART
salience: 0.00013387184299062937
mentions {
  text {
    content: "festival photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin photo"
type: WORK_OF_ART
salience: 0.00013369826774578542
mentions {
  text {
    content: "child hood collectif coin photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: WORK_OF_ART
salience: 0.00013369826774578542
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "citylights"
type: EVENT
salience: 0.00013368514191824943
mentions {
  text {
    content: "citylights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.0001329267252003774
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
type: OTHER
salience: 0.00013292551739141345
mentions {
  text {
    content: "human interaction"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "south bank"
type: ORGANIZATION
salience: 0.00013207287702243775
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 0.00013200059765949845
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.000131775057525374
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.000131775057525374
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 0.0001316205016337335
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 0.0001316205016337335
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.00013147955178283155
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.0001312302192673087
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.0001312302192673087
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 0.00013111878070048988
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00013021299673710018
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00013013843272347003
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012999906903132796
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012999906903132796
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012999906903132796
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.0001299337309319526
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.0001299337309319526
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.0001298709976254031
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.0001298709976254031
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.0001298709976254031
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 0.00012981065083295107
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.00012979617167729884
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "england"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/02jx1"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/England"
}
salience: 0.0001297385897487402
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "england"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "umbrella project regent st  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00012922374298796058
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "times"
type: OTHER
salience: 0.00012914551189169288
mentions {
  text {
    content: "times"
    begin_offset: -1
  }
  type: COMMON
}
, name: "times"
type: OTHER
salience: 0.00012856203829869628
mentions {
  text {
    content: "times"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 0.00012734536721836776
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus"
type: OTHER
salience: 0.00012659763160627335
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 0.00012655816681217402
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bye bye case"
type: OTHER
salience: 0.0001265198807232082
mentions {
  text {
    content: "bye bye  case"
    begin_offset: -1
  }
  type: COMMON
}
, name: "red telephone box"
type: CONSUMER_GOOD
salience: 0.00012632709695026278
mentions {
  text {
    content: "red telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall"
type: LOCATION
salience: 0.0001262984296772629
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city hall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "penny photo stream"
type: OTHER
salience: 0.00012615928426384926
mentions {
  text {
    content: "penny  photo stream"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streetlight"
type: OTHER
salience: 0.00012615928426384926
mentions {
  text {
    content: "streetlight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 0.0001258130942005664
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 0.00012490575318224728
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chandeliers"
type: OTHER
salience: 0.0001248967892024666
mentions {
  text {
    content: "chandeliers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chandeliers"
type: OTHER
salience: 0.00012445512402337044
mentions {
  text {
    content: "chandeliers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fitzrovia pas camden"
type: OTHER
salience: 0.00012426680768840015
mentions {
  text {
    content: "fitzrovia pas  camden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "bloomsbury amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fitzrovia pas  camden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "bloomsbury amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 0.00012419087579473853
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: PERSON
salience: 0.00012419087579473853
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 0.00012341213005129248
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 0.00012326736759860069
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00012316019274294376
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london ibipeople ibisocial lumierelondon lumiere lumierelondon2018"
type: PERSON
salience: 0.000123133126180619
mentions {
  text {
    content: "london ibipeople ibisocial lumierelondon  lumiere lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "display"
type: OTHER
salience: 0.00012309540761634707
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 0.0001230140624102205
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 0.00012290185259189457
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018 electricpedals"
type: OTHER
salience: 0.0001227466855198145
mentions {
  text {
    content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  electricpedals"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "human interaction"
    begin_offset: -1
  }
  type: COMMON
}
, name: "telephone box"
type: CONSUMER_GOOD
salience: 0.00012235487520229071
mentions {
  text {
    content: "telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video electricpedals"
type: OTHER
salience: 0.00012183767830720171
mentions {
  text {
    content: "video electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "iamgabrielluna yosoycordova lumierelondon lumierelondon2018"
type: PERSON
salience: 0.00012147855159128085
mentions {
  text {
    content: "iamgabrielluna yosoycordova lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere lumiere neon drolpets london"
type: LOCATION
salience: 0.00012145943765062839
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumiere lumiere neon drolpets london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon"
type: ORGANIZATION
salience: 0.00012087353388778865
mentions {
  text {
    content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
type: ORGANIZATION
salience: 0.00012071680976077914
mentions {
  text {
    content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust justin_venn lumierelondon2018 lumierelondon"
type: ORGANIZATION
salience: 0.00012071680976077914
mentions {
  text {
    content: "gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust  justin_venn  lumierelondon2018 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londonisopen lumiere justin_venn lumierelondon2018 lumierelondon"
type: PERSON
salience: 0.00012057521234964952
mentions {
  text {
    content: "londonisopen lumiere   justin_venn  lumierelondon2018 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "youtube"
type: OTHER
metadata {
  key: "mid"
  value: "/m/09jcvs"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/YouTube"
}
salience: 0.0001204180225613527
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube"
    begin_offset: -1
  }
  type: PROPER
}
, name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
type: ORGANIZATION
salience: 0.00012002015864709392
mentions {
  text {
    content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust lumieredub"
type: PERSON
salience: 0.00012000233255093917
mentions {
  text {
    content: "aichoketrust lumieredub"
    begin_offset: -1
  }
  type: COMMON
}
, name: "atnight streetsoflondon southbank instagood"
type: ORGANIZATION
salience: 0.00011906483996426687
mentions {
  text {
    content: "atnight streetsoflondon southbank instagood"
    begin_offset: -1
  }
  type: PROPER
}
, name: "brightnights gt lumierelondon igerslondon londonpop thisislondon london"
type: PERSON
salience: 0.00011904460552614182
mentions {
  text {
    content: "antonio ubeda en supercube de st\303\251phane masson lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "brightnights gt  lumierelondon igerslondon londonpop thisislondon london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon"
type: EVENT
salience: 0.00011861154052894562
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 0.00011861154052894562
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "insight"
type: OTHER
salience: 0.00011762086796807125
mentions {
  text {
    content: "insight"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "insight"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "insight"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "insight"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "insight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 0.00011740725312847644
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wildlife theme"
type: OTHER
salience: 0.0001167385998996906
mentions {
  text {
    content: "wildlife theme"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon king cross"
type: OTHER
salience: 0.00011525394074851647
mentions {
  text {
    content: "lumierelondon  king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank king cross"
type: OTHER
salience: 0.00011525394074851647
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross"
type: OTHER
salience: 0.00011525394074851647
mentions {
  text {
    content: "cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "destinations"
type: LOCATION
salience: 0.0001152013210230507
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 0.00011383001401554793
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey lumierelondon2018 visitlondon"
type: ORGANIZATION
salience: 0.0001136906721512787
mentions {
  text {
    content: "wabbey lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installation light spirit"
type: OTHER
salience: 0.00011351764987921342
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 0.00011326307139825076
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 0.00011304827057756484
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "things"
type: OTHER
salience: 0.00011299129255348817
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 0.00011286253720754758
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 0.00011255282879574224
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "battle bridge place granary"
type: OTHER
salience: 0.00011253052070969716
mentions {
  text {
    content: "battle bridge place granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 0.00011231218377361074
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.00011219953739782795
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pity uk"
type: OTHER
salience: 0.00011219841690035537
mentions {
  text {
    content: "pity uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "rain"
type: OTHER
salience: 0.00011214940604986623
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 0.00011200398876098916
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flower"
type: OTHER
salience: 0.00011156982509419322
mentions {
  text {
    content: "flower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "panership"
type: OTHER
salience: 0.00011111687490483746
mentions {
  text {
    content: "panership"
    begin_offset: -1
  }
  type: COMMON
}
, name: "op ed"
type: PERSON
salience: 0.00011111687490483746
mentions {
  text {
    content: "op ed"
    begin_offset: -1
  }
  type: COMMON
}
, name: "context"
type: OTHER
salience: 0.00011111687490483746
mentions {
  text {
    content: "context"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cosmoscope"
type: PERSON
salience: 0.00011111687490483746
mentions {
  text {
    content: "cosmoscope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ceo"
type: PERSON
salience: 0.00011111687490483746
mentions {
  text {
    content: "ceo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary"
type: OTHER
salience: 0.00011032220936613157
mentions {
  text {
    content: "granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cultureisgreat wabbey stas"
type: PERSON
salience: 0.00011026330321328714
mentions {
  text {
    content: "cultureisgreat  wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumiere   wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
, name: "people"
type: PERSON
salience: 0.00011006573913618922
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary"
type: OTHER
salience: 0.00010986604320351034
mentions {
  text {
    content: "granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary"
type: OTHER
salience: 0.00010986604320351034
mentions {
  text {
    content: "granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary"
type: OTHER
salience: 0.00010986604320351034
mentions {
  text {
    content: "granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "raina newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium marshalljulius london"
type: PERSON
salience: 0.00010957974882330745
mentions {
  text {
    content: "raina  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "londonevents fishtank phonebooth lightshow ig_l  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lights"
type: OTHER
salience: 0.00010944672976620495
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 0.00010938174091279507
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 0.00010937388287857175
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 0.00010917005420196801
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon rain"
type: OTHER
salience: 0.00010903408110607415
mentions {
  text {
    content: "lumierelondon rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 0.00010881791240535676
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival wavelength pa exhibition"
type: EVENT
salience: 0.00010770784865599126
mentions {
  text {
    content: "festival  wavelength pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: OTHER
salience: 0.00010736948752310127
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 0.00010625926370266825
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 0.0001058284324244596
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 0.00010536580521147698
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 0.00010521744115976617
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall projection"
type: OTHER
salience: 0.00010518263297853991
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa noordinarypark miss"
type: OTHER
salience: 0.00010518263297853991
mentions {
  text {
    content: "pa   noordinarypark miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon theladytravels"
type: OTHER
salience: 0.00010512447624932975
mentions {
  text {
    content: "lumierelondon  theladytravels"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumierelondon  theladytravels"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 0.00010504102829145268
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave"
type: EVENT
salience: 0.00010502947407076135
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 0.00010488300904398784
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting wearewaterloouk"
type: OTHER
salience: 0.00010481610661372542
mentions {
  text {
    content: "lighting   wearewaterloouk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish phone booth"
type: OTHER
salience: 0.00010481610661372542
mentions {
  text {
    content: "fish phone booth"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall projection"
type: OTHER
salience: 0.0001042886360664852
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall projection"
type: OTHER
salience: 0.0001042886360664852
mentions {
  text {
    content: "city hall projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon noordinarypark miss"
type: ORGANIZATION
salience: 0.00010391982505097985
mentions {
  text {
    content: "mayoroflondon  noordinarypark miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 0.00010329868382541463
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aiseverywhere aichoketrust"
type: OTHER
salience: 0.00010312162339687347
mentions {
  text {
    content: "aiseverywhere aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "repoer presenter freelancer miss"
type: WORK_OF_ART
salience: 0.00010311848018318415
mentions {
  text {
    content: "repoer presenter freelancer miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 0.00010303899762220681
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "style"
type: OTHER
salience: 0.00010268105688737705
mentions {
  text {
    content: "style"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "style"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "style"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 0.00010255382949253544
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 0.00010238532559014857
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn_culture loveldnlovecul aichoketrust"
type: PERSON
salience: 0.00010173587361350656
mentions {
  text {
    content: "ldn_culture loveldnlovecul aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "projector"
type: OTHER
salience: 0.00010073200974147767
mentions {
  text {
    content: "projector"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 0.00010070811549667269
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain exitmagazine maxcoopermax visitlondon"
type: ORGANIZATION
salience: 0.00010048043623100966
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "rain  exitmagazine  maxcoopermax  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "video"
type: WORK_OF_ART
salience: 0.00010004187060985714
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "computingdawn colour"
type: OTHER
salience: 9.989864338422194e-05
mentions {
  text {
    content: "computingdawn colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pics"
type: WORK_OF_ART
salience: 9.957629663404077e-05
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "events"
type: EVENT
salience: 9.903519094223157e-05
mentions {
  text {
    content: "events"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere"
type: OTHER
salience: 9.897547715809196e-05
mentions {
  text {
    content: "lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 9.858036355581135e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "interview harry qedproductions"
type: CONSUMER_GOOD
salience: 9.758859960129485e-05
mentions {
  text {
    content: "interview harry qedproductions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 9.753330232342705e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 9.722371032694355e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 9.704164403956383e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation london"
type: OTHER
salience: 9.68033418757841e-05
mentions {
  text {
    content: "installation london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: LOCATION
salience: 9.673890599515289e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation london"
type: LOCATION
salience: 9.673890599515289e-05
mentions {
  text {
    content: "installation london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work sroosegaarde lumiere london"
type: LOCATION
salience: 9.66778170550242e-05
mentions {
  text {
    content: "work sroosegaarde lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 9.661974763730541e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colouryourcity"
type: OTHER
salience: 9.652641892898828e-05
mentions {
  text {
    content: "colouryourcity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust team"
type: ORGANIZATION
salience: 9.65252474998124e-05
mentions {
  text {
    content: "aichoketrust  team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.65252474998124e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "zoomburst promise"
type: OTHER
salience: 9.6124094852712e-05
mentions {
  text {
    content: "zoomburst promise"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 9.588234388502315e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 lumierelondon southbanklondon"
type: PERSON
salience: 9.586702799424529e-05
mentions {
  text {
    content: "lumierelondon2018 lumierelondon  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london lumierelondon  sadiqkhan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.570481051923707e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.570481051923707e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 9.557012526784092e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "exhibition"
type: EVENT
salience: 9.536634752294049e-05
mentions {
  text {
    content: "exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wavelength pa exhibition"
type: EVENT
salience: 9.522812615614384e-05
mentions {
  text {
    content: "wavelength pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 9.510464587947354e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.499308362137526e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 9.491186210652813e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.489134390605614e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cube pa exhibition"
type: EVENT
salience: 9.489134390605614e-05
mentions {
  text {
    content: "cube pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.479785512667149e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "broadway team"
type: ORGANIZATION
salience: 9.455576218897477e-05
mentions {
  text {
    content: "broadway team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 9.455576218897477e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp lambethacademy students"
type: PERSON
salience: 9.45532665355131e-05
mentions {
  text {
    content: "cirquebijou amp lambethacademy students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 9.417688852408901e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: PERSON
salience: 9.410514030605555e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "postcardslond1 piccadillycircus"
type: EVENT
salience: 9.402634896105155e-05
mentions {
  text {
    content: "postcardslond1  piccadillycircus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "simon corder"
type: PERSON
metadata {
  key: "mid"
  value: "/m/0y7xjh2"
}
salience: 9.338735981145874e-05
mentions {
  text {
    content: "simon corder"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aist amp lighting designer"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "simon corder"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "check bough1"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 9.322896221419796e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "placemaking"
type: OTHER
salience: 9.237666381523013e-05
mentions {
  text {
    content: "placemaking"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 9.204996604239568e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 9.197612234856933e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "energy"
type: OTHER
salience: 9.194786980515346e-05
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 9.179735934594646e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ideas"
type: OTHER
salience: 9.179735934594646e-05
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 9.165084338746965e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 9.147702076006681e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 9.141777263721451e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 9.1326714027673e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa neon sculpture"
type: OTHER
salience: 9.125473297899589e-05
mentions {
  text {
    content: "pa  neon sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations aether dot waterlicht mystery entry"
type: OTHER
salience: 9.101710020331666e-05
mentions {
  text {
    content: "installations aether dot waterlicht mystery entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 9.101710020331666e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 9.092408436117694e-05
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp light"
type: OTHER
salience: 9.061695891432464e-05
mentions {
  text {
    content: "abi"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "placemaking"
type: OTHER
salience: 9.056375711224973e-05
mentions {
  text {
    content: "placemaking"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 9.01512466953136e-05
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitor experiences"
type: OTHER
salience: 8.970221097115427e-05
mentions {
  text {
    content: "visitor experiences"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey"
type: PERSON
salience: 8.926735608838499e-05
mentions {
  text {
    content: "wabbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 8.92330936039798e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 8.91419404069893e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance see"
type: OTHER
salience: 8.902968693291768e-05
mentions {
  text {
    content: "chance see"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon deeeeelicious meal"
type: OTHER
salience: 8.900102693587542e-05
mentions {
  text {
    content: "visitlondon deeeeelicious meal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "album"
type: WORK_OF_ART
salience: 8.900102693587542e-05
mentions {
  text {
    content: "album"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey"
type: OTHER
salience: 8.897939551388845e-05
mentions {
  text {
    content: "wabbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light show"
type: EVENT
salience: 8.87477581272833e-05
mentions {
  text {
    content: "light show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "return"
type: EVENT
salience: 8.865968266036361e-05
mentions {
  text {
    content: "return"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 8.85505141923204e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
type: PERSON
salience: 8.850181620800868e-05
mentions {
  text {
    content: "adventuresofjellie jellie lumiere  granarysquare kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 8.842048555379733e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videography musicvideo"
type: WORK_OF_ART
salience: 8.822906238492578e-05
mentions {
  text {
    content: "videography musicvideo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 8.820310176815838e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "newwestend"
type: PERSON
salience: 8.761647040955722e-05
mentions {
  text {
    content: "newwestend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion highlights"
type: OTHER
salience: 8.724327199161053e-05
mentions {
  text {
    content: "mickfusion  highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion highlights"
type: OTHER
salience: 8.724327199161053e-05
mentions {
  text {
    content: "mickfusion  highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion highlights"
type: OTHER
salience: 8.724327199161053e-05
mentions {
  text {
    content: "mickfusion  highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londoners"
type: PERSON
salience: 8.720729238120839e-05
mentions {
  text {
    content: "londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light transformations"
type: OTHER
salience: 8.693692507222295e-05
mentions {
  text {
    content: "light transformations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
type: ORGANIZATION
salience: 8.666590292705223e-05
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aworks"
type: OTHER
salience: 8.639606676297262e-05
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "daan roosegaarde granary square"
type: LOCATION
salience: 8.609291398897767e-05
mentions {
  text {
    content: "daan roosegaarde granary square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "closures"
type: EVENT
salience: 8.580370922572911e-05
mentions {
  text {
    content: "closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wrap"
type: OTHER
salience: 8.564213203499094e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon"
type: OTHER
salience: 8.550025813747197e-05
mentions {
  text {
    content: "neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey london westminster abbey"
type: LOCATION
salience: 8.547463221475482e-05
mentions {
  text {
    content: "westminsterabbey london westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey"
type: ORGANIZATION
salience: 8.547463221475482e-05
mentions {
  text {
    content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "someone"
type: PERSON
salience: 8.526562305632979e-05
mentions {
  text {
    content: "someone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "think"
type: PERSON
salience: 8.52551675052382e-05
mentions {
  text {
    content: "think"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 8.521787822246552e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 8.500753756379709e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 8.4961015090812e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shots"
type: WORK_OF_ART
salience: 8.474406058667228e-05
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank"
type: LOCATION
salience: 8.471582259517163e-05
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "handful installations"
type: OTHER
salience: 8.442311809631065e-05
mentions {
  text {
    content: "handful installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shopping guide"
type: WORK_OF_ART
salience: 8.424143743468449e-05
mentions {
  text {
    content: "shopping guide"
    begin_offset: -1
  }
  type: COMMON
}
, name: "someone"
type: PERSON
salience: 8.41912769828923e-05
mentions {
  text {
    content: "someone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets buildings"
type: LOCATION
salience: 8.40275315567851e-05
mentions {
  text {
    content: "streets buildings"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "streets buildings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 8.386150875594467e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.353068551514298e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 8.353068551514298e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light"
type: OTHER
salience: 8.34719103295356e-05
mentions {
  text {
    content: "festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 8.340177737409249e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.336367318406701e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check lights"
type: OTHER
salience: 8.336367318406701e-05
mentions {
  text {
    content: "check  lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.331359276780859e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust legacy"
type: OTHER
salience: 8.328088733833283e-05
mentions {
  text {
    content: "aichoketrust legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.326587703777477e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.322030771523714e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 8.322030771523714e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.322030771523714e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night lights"
type: OTHER
salience: 8.313489524880424e-05
mentions {
  text {
    content: "night  lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "residents"
type: PERSON
salience: 8.309887925861403e-05
mentions {
  text {
    content: "residents"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "residents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.309474651468918e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "victoriabid"
type: PERSON
salience: 8.304161747219041e-05
mentions {
  text {
    content: "victoriabid"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.301894558826461e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 8.301894558826461e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.301894558826461e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check lights"
type: OTHER
salience: 8.298307511722669e-05
mentions {
  text {
    content: "check  lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 8.298307511722669e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp light"
type: OTHER
salience: 8.294843428302556e-05
mentions {
  text {
    content: "amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.294843428302556e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp light"
type: OTHER
salience: 8.294843428302556e-05
mentions {
  text {
    content: "amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp light"
type: OTHER
salience: 8.294843428302556e-05
mentions {
  text {
    content: "amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound amp light"
type: OTHER
salience: 8.294843428302556e-05
mentions {
  text {
    content: "sound amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.291495032608509e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.291495032608509e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 8.28825359349139e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 8.28825359349139e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 8.276679000118747e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street check"
type: OTHER
salience: 8.248549420386553e-05
mentions {
  text {
    content: "regent street check"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "regent street check"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world"
type: OTHER
salience: 8.221692405641079e-05
mentions {
  text {
    content: "world"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 8.214192348532379e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 8.172392699634656e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spell stpancrasint planning"
type: OTHER
salience: 8.122133294818923e-05
mentions {
  text {
    content: "spell   stpancrasint planning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "care"
type: OTHER
salience: 8.090637857094407e-05
mentions {
  text {
    content: "care"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plan"
type: OTHER
salience: 8.081676787696779e-05
mentions {
  text {
    content: "plan"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stewards"
type: PERSON
salience: 8.019858069019392e-05
mentions {
  text {
    content: "stewards"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "stewards"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "stewards"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check pieces"
type: OTHER
salience: 8.012982289073989e-05
mentions {
  text {
    content: "check pieces"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 7.956555782584473e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light festival"
type: EVENT
salience: 7.952713349368423e-05
mentions {
  text {
    content: "light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check promenade south park"
type: LOCATION
salience: 7.916954200481996e-05
mentions {
  text {
    content: "check promenade south park"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 7.908207044238225e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 7.908207044238225e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "instillations"
type: OTHER
salience: 7.896927854744717e-05
mentions {
  text {
    content: "instillations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colour"
type: OTHER
salience: 7.894131704233587e-05
mentions {
  text {
    content: "colour"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canonukandie visitlondon aichoketrust southbanklondon"
type: ORGANIZATION
salience: 7.893941074144095e-05
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "chance feature gallery"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa neon sculpture"
type: OTHER
salience: 7.878057658672333e-05
mentions {
  text {
    content: "pa  neon sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa neon sculpture"
type: OTHER
salience: 7.871798152336851e-05
mentions {
  text {
    content: "pa  neon sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "image"
type: WORK_OF_ART
salience: 7.867304520914331e-05
mentions {
  text {
    content: "image"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tuesdaythoughts"
type: OTHER
salience: 7.846068911021575e-05
mentions {
  text {
    content: "tuesdaythoughts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si \303\250 conclusa ed \303\250 stata semplicemente meravigliosa ecco alcune foto di leicester square"
type: LOCATION
salience: 7.821863982826471e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si \303\250 conclusa ed \303\250 stata semplicemente meravigliosa ecco alcune foto di leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "human biology"
type: OTHER
salience: 7.816474681021646e-05
mentions {
  text {
    content: "human biology"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frogs amp toad"
type: OTHER
salience: 7.816474681021646e-05
mentions {
  text {
    content: "frogs amp toad"
    begin_offset: -1
  }
  type: COMMON
}
, name: "freedom panorama"
type: OTHER
salience: 7.816474681021646e-05
mentions {
  text {
    content: "freedom panorama"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shitshow"
type: EVENT
salience: 7.816474681021646e-05
mentions {
  text {
    content: "shitshow"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aist daan roosegaarde"
type: PERSON
salience: 7.803994958521798e-05
mentions {
  text {
    content: "aist daan roosegaarde"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "daan roosegaarde"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "daan roosegaarde"
    begin_offset: -1
  }
  type: PROPER
}
, name: "light"
type: OTHER
salience: 7.796330464771017e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check promenade south park"
type: LOCATION
salience: 7.76157685322687e-05
mentions {
  text {
    content: "check promenade south park"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 7.742268644506112e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park"
type: LOCATION
salience: 7.724334136582911e-05
mentions {
  text {
    content: "park"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light"
type: OTHER
salience: 7.714016828685999e-05
mentions {
  text {
    content: "festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hope"
type: OTHER
salience: 7.705643656663597e-05
mentions {
  text {
    content: "hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 7.704009476583451e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: OTHER
salience: 7.697518594795838e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "redbridge"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0nd94"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/London_Borough_of_Redbridge"
}
salience: 7.672298670513555e-05
mentions {
  text {
    content: "redbridge"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "redbridge"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "redbridge"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "redbridge"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londongramer"
type: PERSON
salience: 7.654989167349413e-05
mentions {
  text {
    content: "londongramer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas"
type: OTHER
salience: 7.619177631568164e-05
mentions {
  text {
    content: "umbrellas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fun"
type: OTHER
salience: 7.594149064971134e-05
mentions {
  text {
    content: "fun"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fun"
    begin_offset: -1
  }
  type: COMMON
}
, name: "violets"
type: OTHER
salience: 7.593997725052759e-05
mentions {
  text {
    content: "violets"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "violets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "windows"
type: OTHER
salience: 7.5752024713438e-05
mentions {
  text {
    content: "windows"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbanklondon"
type: PERSON
salience: 7.561121310573071e-05
mentions {
  text {
    content: "southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 7.554829790024087e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas"
type: CONSUMER_GOOD
salience: 7.537469355156645e-05
mentions {
  text {
    content: "umbrellas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.483390800189227e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.473146979464218e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.459666085196659e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.451677083736286e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 7.444334914907813e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.437543536070734e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.437543536070734e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 7.43432974559255e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light show"
type: WORK_OF_ART
salience: 7.433823338942602e-05
mentions {
  text {
    content: "light show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 7.433588325511664e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.4312265496701e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank installation"
type: OTHER
salience: 7.428225944750011e-05
mentions {
  text {
    content: "south bank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 7.42592237656936e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.42532211006619e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 7.42532211006619e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gin cocktails"
type: CONSUMER_GOOD
salience: 7.372828986262903e-05
mentions {
  text {
    content: "gin cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 7.362983888015151e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey lumierelondon2018 visitlondon jakubkrupa"
type: OTHER
salience: 7.344094046857208e-05
mentions {
  text {
    content: "wabbey lumierelondon2018  visitlondon  jakubkrupa"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon visitgreatbritain travelgram brandgreatbritain thelondonguidee"
type: ORGANIZATION
salience: 7.341568561969325e-05
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
    begin_offset: -1
  }
  type: PROPER
}
, name: "shots"
type: OTHER
salience: 7.336104317801073e-05
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 7.319268479477614e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "catch shots"
type: OTHER
salience: 7.310158252948895e-05
mentions {
  text {
    content: "catch shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shots"
type: WORK_OF_ART
salience: 7.310158252948895e-05
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glory"
type: OTHER
salience: 7.303149322979152e-05
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "glory"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon fun"
type: OTHER
salience: 7.290096255019307e-05
mentions {
  text {
    content: "lumierelondon  fun"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 7.281544094439596e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sight"
type: OTHER
salience: 7.259949779836461e-05
mentions {
  text {
    content: "sight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 7.259949779836461e-05
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "veigo visitlondon"
type: PERSON
salience: 7.242170249810442e-05
mentions {
  text {
    content: "veigo   visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere visitlondon"
type: ORGANIZATION
salience: 7.225926674436778e-05
mentions {
  text {
    content: "lumiere  visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: ORGANIZATION
salience: 7.212221680674702e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp community"
type: LOCATION
salience: 7.211240153992549e-05
mentions {
  text {
    content: "amp community"
    begin_offset: -1
  }
  type: COMMON
}
, name: "communities"
type: PERSON
salience: 7.195065700216219e-05
mentions {
  text {
    content: "communities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jopocock nightlife"
type: OTHER
salience: 7.186246511992067e-05
mentions {
  text {
    content: "jopocock nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "look"
type: OTHER
salience: 7.177283259807155e-05
mentions {
  text {
    content: "look"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 7.143907714635134e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canon"
type: WORK_OF_ART
salience: 7.143907714635134e-05
mentions {
  text {
    content: "canon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 7.141689275158569e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trip"
type: EVENT
salience: 7.11017637513578e-05
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.108723366400227e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "worry head"
type: OTHER
salience: 7.083182572387159e-05
mentions {
  text {
    content: "worry head"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canon"
type: PERSON
salience: 7.083182572387159e-05
mentions {
  text {
    content: "canon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: EVENT
salience: 7.036744500510395e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.027843093965203e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.018729957053438e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.014513539616019e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.010495755821466e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 7.006659143371508e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "areas"
type: LOCATION
salience: 7.003699283814058e-05
mentions {
  text {
    content: "areas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 6.999467586865649e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 6.999467586865649e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 6.996087176958099e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 6.992836279096082e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fitzrovia area"
type: LOCATION
salience: 6.987990491325036e-05
mentions {
  text {
    content: "fitzrovia area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus visit website"
type: OTHER
salience: 6.987813685555011e-05
mentions {
  text {
    content: "circus visit website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world bubble"
type: OTHER
salience: 6.987813685555011e-05
mentions {
  text {
    content: "world bubble"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weekend festival"
type: EVENT
salience: 6.985137588344514e-05
mentions {
  text {
    content: "weekend  festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust amp"
type: PERSON
salience: 6.964720523683354e-05
mentions {
  text {
    content: "aichoketrust amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp"
type: OTHER
salience: 6.964720523683354e-05
mentions {
  text {
    content: "cirquebijou amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 6.956550350878388e-05
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 6.952742842258886e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 6.952742842258886e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp"
type: PERSON
salience: 6.952742842258886e-05
mentions {
  text {
    content: "cirquebijou amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 6.942252366570756e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 6.939236482139677e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: CONSUMER_GOOD
salience: 6.93591937306337e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 6.932922406122088e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 6.930133531568572e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 6.927230424480513e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp"
type: OTHER
salience: 6.927230424480513e-05
mentions {
  text {
    content: "cirquebijou amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp"
type: OTHER
salience: 6.927230424480513e-05
mentions {
  text {
    content: "cirquebijou amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp"
type: OTHER
salience: 6.927230424480513e-05
mentions {
  text {
    content: "cirquebijou amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "purple rain amp"
type: OTHER
salience: 6.924522313056514e-05
mentions {
  text {
    content: "purple rain amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 6.918319559190422e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey"
type: PERSON
salience: 6.880988803459331e-05
mentions {
  text {
    content: "wabbey westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "evening lots"
type: LOCATION
salience: 6.8633773480542e-05
mentions {
  text {
    content: "evening  lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: OTHER
salience: 6.8633773480542e-05
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video website"
type: OTHER
salience: 6.850668432889506e-05
mentions {
  text {
    content: "video website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "instagram sneequaye london"
type: ORGANIZATION
salience: 6.833217048551887e-05
mentions {
  text {
    content: "instagram sneequaye london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram sneequaye london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "instagram sneequaye london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lightinstallation landscape"
type: OTHER
salience: 6.82394384057261e-05
mentions {
  text {
    content: "lightinstallation landscape"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon dot"
type: OTHER
salience: 6.811127968830988e-05
mentions {
  text {
    content: "visitlondon dot"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: LOCATION
salience: 6.80423472658731e-05
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flower"
type: OTHER
salience: 6.789952021790668e-05
mentions {
  text {
    content: "flower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey"
type: PERSON
salience: 6.772725464543328e-05
mentions {
  text {
    content: "wabbey westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos festival"
type: EVENT
salience: 6.73176473355852e-05
mentions {
  text {
    content: "photos festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.727283471263945e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "qpark_uk light festival"
type: EVENT
salience: 6.718996883137152e-05
mentions {
  text {
    content: "qpark_uk  light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light festival"
type: EVENT
salience: 6.718996883137152e-05
mentions {
  text {
    content: "light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinese lantern festival"
type: EVENT
salience: 6.718996883137152e-05
mentions {
  text {
    content: "chinese lantern festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting festival"
type: EVENT
salience: 6.718996883137152e-05
mentions {
  text {
    content: "lighting festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.718996883137152e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.715147901559249e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.707955617457628e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.707955617457628e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blog post"
type: WORK_OF_ART
salience: 6.698700599372387e-05
mentions {
  text {
    content: "blog post"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blog post"
type: WORK_OF_ART
salience: 6.698700599372387e-05
mentions {
  text {
    content: "blog post"
    begin_offset: -1
  }
  type: COMMON
}
, name: "henley festival"
type: EVENT
salience: 6.695232877973467e-05
mentions {
  text {
    content: "henley festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.695232877973467e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.695232877973467e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.692339957226068e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.692339957226068e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "la la land"
type: LOCATION
salience: 6.690013833576813e-05
mentions {
  text {
    content: "la la land"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.689545989502221e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.689545989502221e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.686845154035836e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.686845154035836e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "life"
type: OTHER
salience: 6.662348459940404e-05
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sounds"
type: OTHER
salience: 6.651264266110957e-05
mentions {
  text {
    content: "sounds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 6.651264266110957e-05
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "order prints"
type: OTHER
salience: 6.651264266110957e-05
mentions {
  text {
    content: "order prints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cou use"
type: OTHER
salience: 6.618133193114772e-05
mentions {
  text {
    content: "cou use"
    begin_offset: -1
  }
  type: COMMON
}
, name: "centre"
type: OTHER
salience: 6.617612234549597e-05
mentions {
  text {
    content: "centre"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "centre"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 6.594725709874183e-05
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp space"
type: OTHER
salience: 6.561876216437668e-05
mentions {
  text {
    content: "amp space"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flower"
type: OTHER
salience: 6.543657946167514e-05
mentions {
  text {
    content: "flower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: PERSON
salience: 6.538668094435707e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check promenade"
type: OTHER
salience: 6.538668094435707e-05
mentions {
  text {
    content: "check promenade"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spaces"
type: LOCATION
salience: 6.538668094435707e-05
mentions {
  text {
    content: "spaces"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound"
type: OTHER
salience: 6.538668094435707e-05
mentions {
  text {
    content: "sound"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ladder"
type: OTHER
salience: 6.538668094435707e-05
mentions {
  text {
    content: "ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kids"
type: PERSON
salience: 6.535153806908056e-05
mentions {
  text {
    content: "kids"
    begin_offset: -1
  }
  type: COMMON
}
, name: "justice"
type: OTHER
salience: 6.52918970445171e-05
mentions {
  text {
    content: "justice"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love london lumiere london"
type: LOCATION
salience: 6.520939496112987e-05
mentions {
  text {
    content: "love london  lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londoners"
type: PERSON
salience: 6.517965084640309e-05
mentions {
  text {
    content: "londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "producer director cameraman promo coaching music video london"
type: PERSON
salience: 6.517965084640309e-05
mentions {
  text {
    content: "producer director cameraman promo coaching music video london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon london"
type: LOCATION
salience: 6.51651862426661e-05
mentions {
  text {
    content: "lumierelondon  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 6.515098357340321e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorways"
type: OTHER
salience: 6.514555570902303e-05
mentions {
  text {
    content: "doorways"
    begin_offset: -1
  }
  type: COMMON
}
, name: "subject methinks london"
type: ORGANIZATION
salience: 6.512332038255408e-05
mentions {
  text {
    content: "subject methinks london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "evening london"
type: LOCATION
salience: 6.5109838033095e-05
mentions {
  text {
    content: "evening london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "candy floss candyfloss london"
type: LOCATION
salience: 6.5109838033095e-05
mentions {
  text {
    content: "candy floss candyfloss london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work light"
type: OTHER
salience: 6.507118814624846e-05
mentions {
  text {
    content: "work light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets london"
type: LOCATION
salience: 6.507072976091877e-05
mentions {
  text {
    content: "streets london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "success aichoketrust"
type: OTHER
salience: 6.49449648335576e-05
mentions {
  text {
    content: "success  aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "montage"
type: OTHER
salience: 6.49375724606216e-05
mentions {
  text {
    content: "montage"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere"
type: PERSON
salience: 6.48986897431314e-05
mentions {
  text {
    content: "london lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion"
type: OTHER
salience: 6.488242070190609e-05
mentions {
  text {
    content: "mickfusion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonisopen"
type: PERSON
salience: 6.48127097520046e-05
mentions {
  text {
    content: "londonisopen"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross london"
type: LOCATION
salience: 6.467567436629906e-05
mentions {
  text {
    content: "king cross london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross london"
type: LOCATION
salience: 6.467567436629906e-05
mentions {
  text {
    content: "king cross london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "producer director cameraman promo coaching music video london"
type: PERSON
salience: 6.463483441621065e-05
mentions {
  text {
    content: "producer director cameraman promo coaching music video london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video lumiere london"
type: OTHER
salience: 6.459600263042375e-05
mentions {
  text {
    content: "video lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: PERSON
salience: 6.456461414927617e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 6.452778325183317e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 6.446891347877681e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 6.441415462177247e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 6.414420204237103e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 6.390213093254715e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "parking event"
type: EVENT
salience: 6.373604264808819e-05
mentions {
  text {
    content: "parking event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "performance event"
type: EVENT
salience: 6.373604264808819e-05
mentions {
  text {
    content: "performance event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rates"
type: OTHER
salience: 6.368164758896455e-05
mentions {
  text {
    content: "rates"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting london londonisopen"
type: ORGANIZATION
salience: 6.36377080809325e-05
mentions {
  text {
    content: "lighting london londonisopen"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buildings"
type: LOCATION
salience: 6.359000690281391e-05
mentions {
  text {
    content: "buildings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets buildings"
type: LOCATION
salience: 6.359000690281391e-05
mentions {
  text {
    content: "streets buildings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 6.341548578348011e-05
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterloo"
type: LOCATION
metadata {
  key: "mid"
  value: "/g/11b6bmjzqh"
}
metadata {
  key: "wikipedia_url"
  value: "https://fr.wikipedia.org/wiki/Waterloo_Place"
}
salience: 6.323990965029225e-05
mentions {
  text {
    content: "waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly waterloo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "video amp"
type: PERSON
salience: 6.303568807197735e-05
mentions {
  text {
    content: "video amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bottom"
type: OTHER
salience: 6.300731911323965e-05
mentions {
  text {
    content: "bottom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion"
type: OTHER
salience: 6.254037725739181e-05
mentions {
  text {
    content: "mickfusion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colours rainbow amp"
type: WORK_OF_ART
salience: 6.246467091841623e-05
mentions {
  text {
    content: "colours rainbow amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 6.236114859348163e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 6.234047032194212e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 6.21449071331881e-05
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 6.16729084867984e-05
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "saints"
type: PERSON
salience: 6.162616773508489e-05
mentions {
  text {
    content: "saints"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "saints"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "saints"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "saints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 6.145546649349853e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "extravaganza magic"
type: OTHER
salience: 6.143713108031079e-05
mentions {
  text {
    content: "extravaganza magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mvpicsss"
type: PERSON
salience: 6.142771599115804e-05
mentions {
  text {
    content: "mvpicsss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "valeria_amodeo biuk"
type: OTHER
salience: 6.142351048765704e-05
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "valeria_amodeo  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "blog"
type: OTHER
salience: 6.137132731964812e-05
mentions {
  text {
    content: "blog"
    begin_offset: -1
  }
  type: COMMON
}
, name: "extravaganza magic"
type: OTHER
salience: 6.131085683591664e-05
mentions {
  text {
    content: "extravaganza magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 6.12549192737788e-05
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light bulbs"
type: CONSUMER_GOOD
salience: 6.115426367614418e-05
mentions {
  text {
    content: "light bulbs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "story"
type: OTHER
salience: 6.113982817623764e-05
mentions {
  text {
    content: "story"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon"
type: ORGANIZATION
salience: 6.110576941864565e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
    begin_offset: -1
  }
  type: PROPER
}
, name: "voyage installation aichoketrust piece"
type: WORK_OF_ART
salience: 6.088106965762563e-05
mentions {
  text {
    content: "voyage  installation aichoketrust piece"
    begin_offset: -1
  }
  type: COMMON
}
, name: "prank calls lights"
type: OTHER
salience: 6.041204687790014e-05
mentions {
  text {
    content: "prank calls  lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival public"
type: PERSON
salience: 5.997853440931067e-05
mentions {
  text {
    content: "festival public"
    begin_offset: -1
  }
  type: COMMON
}
, name: "violence"
type: OTHER
salience: 5.9730497014243156e-05
mentions {
  text {
    content: "violence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonwhispers"
type: PERSON
salience: 5.968428376945667e-05
mentions {
  text {
    content: "londonwhispers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 5.967288961983286e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "camillachild london"
type: PERSON
salience: 5.963973671896383e-05
mentions {
  text {
    content: "camillachild london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: OTHER
salience: 5.962901559541933e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londoners"
type: PERSON
salience: 5.9608035371638834e-05
mentions {
  text {
    content: "londoners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 5.959776899544522e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 5.959776899544522e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: OTHER
salience: 5.956781023996882e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit london"
type: OTHER
salience: 5.956781023996882e-05
mentions {
  text {
    content: "installation light spirit  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting london"
type: OTHER
salience: 5.954850712441839e-05
mentions {
  text {
    content: "lighting london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit london"
type: LOCATION
salience: 5.954850712441839e-05
mentions {
  text {
    content: "installation light spirit  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: LOCATION
salience: 5.953904474154115e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: LOCATION
salience: 5.953904474154115e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit london"
type: OTHER
salience: 5.9529702411964536e-05
mentions {
  text {
    content: "installation light spirit  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 5.952048013568856e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit london"
type: OTHER
salience: 5.952048013568856e-05
mentions {
  text {
    content: "installation light spirit  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 5.9468682593433186e-05
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 5.9468682593433186e-05
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "destinations"
type: LOCATION
salience: 5.939891707384959e-05
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 5.9276833781041205e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piccadilly circus"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01hc6q"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Piccadilly_Circus"
}
salience: 5.9190584579482675e-05
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon regent street"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "picadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "snaaaake  london piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "voyage"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "voyage"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 5.917245289310813e-05
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "human interaction"
type: OTHER
salience: 5.9125435655005276e-05
mentions {
  text {
    content: "human interaction"
    begin_offset: -1
  }
  type: COMMON
}
, name: "human interaction"
type: OTHER
salience: 5.9125435655005276e-05
mentions {
  text {
    content: "human interaction"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.9095742471981794e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video electricpedals"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "video electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video electricpedals"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "video electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "front"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "front"
    begin_offset: -1
  }
  type: COMMON
}
, name: "front"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "front"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video electricpedals"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "video electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video electricpedals"
type: OTHER
salience: 5.841399251949042e-05
mentions {
  text {
    content: "video electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "director"
type: PERSON
salience: 5.838119614054449e-05
mentions {
  text {
    content: "director"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "director"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thousands"
type: PERSON
salience: 5.8123016060562804e-05
mentions {
  text {
    content: "thousands"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dismantling thousands"
type: PERSON
salience: 5.8123016060562804e-05
mentions {
  text {
    content: "dismantling thousands"
    begin_offset: -1
  }
  type: COMMON
}
, name: "estate"
type: LOCATION
salience: 5.8123016060562804e-05
mentions {
  text {
    content: "estate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "priorconstruct lumiere london"
type: ORGANIZATION
salience: 5.7964549341704696e-05
mentions {
  text {
    content: "priorconstruct lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "priorconstruct lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "canonukandie visitlondon aichoketrust southbanklondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
type: ORGANIZATION
salience: 5.795671313535422e-05
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wildlife"
type: OTHER
salience: 5.7628934882814065e-05
mentions {
  text {
    content: "wildlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "conditions"
type: OTHER
salience: 5.7467255828669295e-05
mentions {
  text {
    content: "conditions"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "conditions"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "conditions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere"
type: OTHER
salience: 5.744572990806773e-05
mentions {
  text {
    content: "lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "field lumierelondon"
type: PERSON
salience: 5.7404518884141e-05
mentions {
  text {
    content: "field  lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nursecommunity lumiere lumierelondon"
type: PERSON
salience: 5.739130574511364e-05
mentions {
  text {
    content: "nursecommunity lumiere lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 5.7365607062820345e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon lumierelondon"
type: PERSON
salience: 5.735310332966037e-05
mentions {
  text {
    content: "neon lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: OTHER
salience: 5.734081787522882e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon"
type: PERSON
salience: 5.731687997467816e-05
mentions {
  text {
    content: "london lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights darkness visitlondon london london lumiere"
type: ORGANIZATION
salience: 5.729373879148625e-05
mentions {
  text {
    content: "lights darkness  visitlondon london  london lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london"
type: PERSON
salience: 5.7228771765949205e-05
mentions {
  text {
    content: "londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature westminsterabbey london londonlife lovelondon londoners"
type: PERSON
salience: 5.7228771765949205e-05
mentions {
  text {
    content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  westminsterabbey london londonlife lovelondon londoners"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon londontheinside"
type: OTHER
salience: 5.7150427892338485e-05
mentions {
  text {
    content: "lumierelondon  londontheinside"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london"
type: LOCATION
salience: 5.7080025726463646e-05
mentions {
  text {
    content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "song"
type: WORK_OF_ART
salience: 5.7030676543945447e-05
mentions {
  text {
    content: "song"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 5.699236862710677e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "presenter freelancer"
type: OTHER
salience: 5.698223685612902e-05
mentions {
  text {
    content: "presenter freelancer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london"
type: ORGANIZATION
salience: 5.695758591173217e-05
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon timeoutlondon londonist london ldn londoneye"
type: ORGANIZATION
salience: 5.695758591173217e-05
mentions {
  text {
    content: "visitlondon timeoutlondon londonist london ldn londoneye"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thousands"
type: PERSON
salience: 5.6936962209874764e-05
mentions {
  text {
    content: "thousands"
    begin_offset: -1
  }
  type: COMMON
}
, name: "electricpedals"
type: OTHER
salience: 5.6936962209874764e-05
mentions {
  text {
    content: "electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon londonlife"
type: OTHER
salience: 5.6930079153971747e-05
mentions {
  text {
    content: "lumierelondon londonlife"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installation lumiere"
type: OTHER
salience: 5.688141391146928e-05
mentions {
  text {
    content: "installation  lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: ORGANIZATION
salience: 5.686453732778318e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
type: LOCATION
salience: 5.682983100996353e-05
mentions {
  text {
    content: "adventuresofjellie jellie lumiere  granarysquare kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere adventuresofjellie jellie lumiere granarysquare kingscross london lumiere adventuresofjellie jellie lumiere granarysquare kingscross london"
type: ORGANIZATION
salience: 5.680688263964839e-05
mentions {
  text {
    content: "lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon visitlondon london"
type: LOCATION
salience: 5.6784676417009905e-05
mentions {
  text {
    content: "lumierelondon  visitlondon london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photograph fish phone box badger lumierelondon"
type: CONSUMER_GOOD
salience: 5.6771092204144225e-05
mentions {
  text {
    content: "photograph fish phone box  badger  lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "expectations"
type: OTHER
salience: 5.657404472003691e-05
mentions {
  text {
    content: "expectations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 lights"
type: OTHER
salience: 5.621536911348812e-05
mentions {
  text {
    content: "lumierelondon2018 lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank lights"
type: OTHER
salience: 5.621536911348812e-05
mentions {
  text {
    content: "southbank lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.620266529149376e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selfie hatmanoflondon wave pa lighting"
type: WORK_OF_ART
salience: 5.620266529149376e-05
mentions {
  text {
    content: "selfie hatmanoflondon wave pa  lighting"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank lights"
type: OTHER
salience: 5.620266529149376e-05
mentions {
  text {
    content: "southbank lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "image lights"
type: OTHER
salience: 5.619019430014305e-05
mentions {
  text {
    content: "image lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.619019430014305e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "estates"
type: LOCATION
salience: 5.6185348512372e-05
mentions {
  text {
    content: "estates"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "estates"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.6165918067563325e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.6165918067563325e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.615409099846147e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.615409099846147e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit festival lights"
type: OTHER
salience: 5.615409099846147e-05
mentions {
  text {
    content: "spirit festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.614247129415162e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting"
type: OTHER
salience: 5.613104076473974e-05
mentions {
  text {
    content: "lighting"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon lights"
type: OTHER
salience: 5.611980304820463e-05
mentions {
  text {
    content: "neon lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nohern lights"
type: OTHER
salience: 5.611980304820463e-05
mentions {
  text {
    content: "nohern lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.611980304820463e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mattcooperphoto letsyogalondon regram southbanklondon"
type: ORGANIZATION
salience: 5.6070952268783e-05
mentions {
  text {
    content: "mattcooperphoto letsyogalondon regram  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "night aichoketrust"
type: PERSON
salience: 5.599356154561974e-05
mentions {
  text {
    content: "night aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gallery"
type: LOCATION
salience: 5.596888513537124e-05
mentions {
  text {
    content: "gallery"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust timeouta londongramer timeoutlondon"
type: PERSON
salience: 5.587263876805082e-05
mentions {
  text {
    content: "aichoketrust timeouta londongramer timeoutlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "blue light"
type: OTHER
salience: 5.5865075410110876e-05
mentions {
  text {
    content: "blue light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blue light"
type: OTHER
salience: 5.5865075410110876e-05
mentions {
  text {
    content: "blue light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.582460653386079e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.582460653386079e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "estate"
type: LOCATION
salience: 5.581652658293024e-05
mentions {
  text {
    content: "estate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "estate"
type: LOCATION
salience: 5.581652658293024e-05
mentions {
  text {
    content: "estate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.580524157267064e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.575025352300145e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.573287126026116e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.573287126026116e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon lights"
type: OTHER
salience: 5.571592555497773e-05
mentions {
  text {
    content: "neon lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.571592555497773e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightning"
type: OTHER
salience: 5.571592555497773e-05
mentions {
  text {
    content: "lightning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "eye"
type: OTHER
salience: 5.569008499151096e-05
mentions {
  text {
    content: "eye"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank lights"
type: OTHER
salience: 5.568325286731124e-05
mentions {
  text {
    content: "southbank lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 lights"
type: OTHER
salience: 5.568325286731124e-05
mentions {
  text {
    content: "lumierelondon2018 lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightbulbs"
type: OTHER
salience: 5.568325286731124e-05
mentions {
  text {
    content: "lightbulbs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.568325286731124e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "heaven light"
type: OTHER
salience: 5.568325286731124e-05
mentions {
  text {
    content: "heaven light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.5667485867161304e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.562228398048319e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poion lumierelondon lights"
type: OTHER
salience: 5.562228398048319e-05
mentions {
  text {
    content: "poion  lumierelondon lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "timeoutlondon gin"
type: OTHER
salience: 5.549311390495859e-05
mentions {
  text {
    content: "timeoutlondon gin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival engcathedrals"
type: PERSON
salience: 5.5420354328816757e-05
mentions {
  text {
    content: "festival  engcathedrals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: CONSUMER_GOOD
salience: 5.5291351600317284e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: PERSON
salience: 5.5291351600317284e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "barkingsideac"
type: OTHER
salience: 5.494162905961275e-05
mentions {
  text {
    content: "barkingsideac"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dials"
type: OTHER
salience: 5.494162905961275e-05
mentions {
  text {
    content: "dials"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.484756184159778e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 5.4830470617162064e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "polychrome"
type: OTHER
salience: 5.480600884766318e-05
mentions {
  text {
    content: "polychrome"
    begin_offset: -1
  }
  type: COMMON
}
, name: "anyone"
type: PERSON
salience: 5.474730642163195e-05
mentions {
  text {
    content: "anyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "barkingsideac"
type: OTHER
salience: 5.474730642163195e-05
mentions {
  text {
    content: "barkingsideac"
    begin_offset: -1
  }
  type: COMMON
}
, name: "anyone"
type: PERSON
salience: 5.474730642163195e-05
mentions {
  text {
    content: "anyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fill light"
type: OTHER
salience: 5.4702039051335305e-05
mentions {
  text {
    content: "fill light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "round"
type: EVENT
salience: 5.469336247188039e-05
mentions {
  text {
    content: "round"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hurry"
type: OTHER
salience: 5.464346395456232e-05
mentions {
  text {
    content: "hurry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "river quality"
type: OTHER
salience: 5.462670742417686e-05
mentions {
  text {
    content: "river quality"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "river quality"
    begin_offset: -1
  }
  type: COMMON
}
, name: "repoer presenter freelancer repo"
type: OTHER
salience: 5.4597050620941445e-05
mentions {
  text {
    content: "repoer presenter freelancer repo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "repo"
type: OTHER
salience: 5.4597050620941445e-05
mentions {
  text {
    content: "repo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses cars"
type: OTHER
salience: 5.4553671361645684e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gift"
type: OTHER
salience: 5.4553671361645684e-05
mentions {
  text {
    content: "gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon"
type: ORGANIZATION
salience: 5.414953193394467e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon launches"
type: OTHER
salience: 5.3751293307868764e-05
mentions {
  text {
    content: "lumierelondon launches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 5.367443009163253e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 5.3552448662230745e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bloomberg"
type: ORGANIZATION
metadata {
  key: "mid"
  value: "/m/027sm6"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Bloomberg_L.P."
}
salience: 5.345035970094614e-05
mentions {
  text {
    content: "bloomberg"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "bloomberg"
    begin_offset: -1
  }
  type: PROPER
}
, name: "chill zone"
type: OTHER
salience: 5.306795355863869e-05
mentions {
  text {
    content: "chill zone"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chill zone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case study events management"
type: OTHER
salience: 5.300782140693627e-05
mentions {
  text {
    content: "case study events management"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 5.28336749994196e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "solidarity"
type: OTHER
salience: 5.28203381691128e-05
mentions {
  text {
    content: "solidarity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pancras ipa thebetjemanarms suzystories"
type: PERSON
salience: 5.28203381691128e-05
mentions {
  text {
    content: "pancras ipa thebetjemanarms  suzystories"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flickr"
type: OTHER
metadata {
  key: "mid"
  value: "/m/04dtx9"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Flickr"
}
salience: 5.277778109302744e-05
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: PROPER
}
, name: "facebook page"
type: OTHER
salience: 5.272555790725164e-05
mentions {
  text {
    content: "facebook page"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank"
type: LOCATION
salience: 5.2697094361064956e-05
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: PROPER
}
, name: "event"
type: EVENT
salience: 5.268604218144901e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ceo"
type: PERSON
salience: 5.267537198960781e-05
mentions {
  text {
    content: "ceo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "steps"
type: OTHER
salience: 5.267537198960781e-05
mentions {
  text {
    content: "steps"
    begin_offset: -1
  }
  type: COMMON
}
, name: "op ed"
type: PERSON
salience: 5.267537198960781e-05
mentions {
  text {
    content: "op ed"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work room"
type: LOCATION
salience: 5.2557217713911086e-05
mentions {
  text {
    content: "work room"
    begin_offset: -1
  }
  type: COMMON
}
, name: "applause lumierelondon"
type: PERSON
salience: 5.251097900327295e-05
mentions {
  text {
    content: "applause lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 5.251097900327295e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bum lumierefestival"
type: PERSON
salience: 5.251097900327295e-05
mentions {
  text {
    content: "bum lumierefestival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "song lumierelondon"
type: PERSON
salience: 5.250139656709507e-05
mentions {
  text {
    content: "song lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere lumierelondon"
type: PERSON
salience: 5.2491959650069475e-05
mentions {
  text {
    content: "lumiere lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust lumieredub"
type: PERSON
salience: 5.246444925433025e-05
mentions {
  text {
    content: "aichoketrust lumieredub"
    begin_offset: -1
  }
  type: COMMON
}
, name: "solidarity"
type: OTHER
salience: 5.245752981863916e-05
mentions {
  text {
    content: "solidarity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "solidarity"
type: OTHER
salience: 5.245752981863916e-05
mentions {
  text {
    content: "solidarity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "survivors"
type: PERSON
salience: 5.245752981863916e-05
mentions {
  text {
    content: "survivors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "survivors"
type: PERSON
salience: 5.245752981863916e-05
mentions {
  text {
    content: "survivors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: ORGANIZATION
salience: 5.2446750487433746e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere"
type: PERSON
salience: 5.2446750487433746e-05
mentions {
  text {
    content: "london lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 5.242952465778217e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "julian crowe"
type: PERSON
salience: 5.2202587539795786e-05
mentions {
  text {
    content: "julian crowe"
    begin_offset: -1
  }
  type: PROPER
}
, name: "solidarity"
type: OTHER
salience: 5.2059098379686475e-05
mentions {
  text {
    content: "solidarity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "engcathedrals"
type: PERSON
salience: 5.2059098379686475e-05
mentions {
  text {
    content: "engcathedrals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "solidarity"
type: OTHER
salience: 5.2059098379686475e-05
mentions {
  text {
    content: "solidarity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktail privacy cub room"
type: LOCATION
salience: 5.201160456635989e-05
mentions {
  text {
    content: "cocktail privacy cub room"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case study events management"
type: OTHER
salience: 5.196742495172657e-05
mentions {
  text {
    content: "case study events management"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poland"
type: LOCATION
metadata {
  key: "mid"
  value: "/g/11cnc90hx3"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Poland_Street"
}
salience: 5.189178773434833e-05
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gloves amp scarf"
type: OTHER
salience: 5.183439498068765e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rambedance couauldgall davidward aichoketrust"
type: ORGANIZATION
salience: 5.1774142775684595e-05
mentions {
  text {
    content: "rambedance couauldgall davidward aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "rambedance couauldgall davidward aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gloves amp scarf"
type: OTHER
salience: 5.17492153448984e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thanks"
type: OTHER
salience: 5.157283158041537e-05
mentions {
  text {
    content: "thanks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.146405237610452e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blue light"
type: OTHER
salience: 5.1454226195346564e-05
mentions {
  text {
    content: "blue light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.1454226195346564e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound amp light"
type: OTHER
salience: 5.144455280969851e-05
mentions {
  text {
    content: "sound amp light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights darkness light light"
type: OTHER
salience: 5.144455280969851e-05
mentions {
  text {
    content: "lights darkness light light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.144455280969851e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.144455280969851e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light"
type: OTHER
salience: 5.144455280969851e-05
mentions {
  text {
    content: "festival light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.1435024943202734e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights lights"
type: OTHER
salience: 5.1425642595859244e-05
mentions {
  text {
    content: "festival lights lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.141639485373162e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.141639485373162e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.141639485373162e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wrap"
type: OTHER
salience: 5.1407580031082034e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighta gavriiluxwarm light"
type: OTHER
salience: 5.140728535479866e-05
mentions {
  text {
    content: "lighta gavriiluxwarm light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.139830318512395e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.139830318512395e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.139830318512395e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.1389451982686296e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.1389451982686296e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights"
type: OTHER
salience: 5.1389451982686296e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.1380720833549276e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "venture question lights"
type: OTHER
salience: 5.13721133756917e-05
mentions {
  text {
    content: "venture  question lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "venture question lights"
type: OTHER
salience: 5.13721133756917e-05
mentions {
  text {
    content: "venture  question lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss lights"
type: OTHER
salience: 5.13721133756917e-05
mentions {
  text {
    content: "miss  lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon thedroidlife ray catcher"
type: PERSON
salience: 5.1359158533159643e-05
mentions {
  text {
    content: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  thedroidlife ray catcher"
    begin_offset: -1
  }
  type: PROPER
}
, name: "festival lights"
type: OTHER
salience: 5.134697494213469e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 5.1330760470591486e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting"
type: OTHER
salience: 5.1330760470591486e-05
mentions {
  text {
    content: "lighting"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lighting lights"
type: OTHER
salience: 5.132280784891918e-05
mentions {
  text {
    content: "lumierelondon lighting lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 5.132280784891918e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 5.124398376210593e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "names"
type: OTHER
salience: 5.0683695008046925e-05
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
type: ORGANIZATION
salience: 5.063130083726719e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
    begin_offset: -1
  }
  type: PROPER
}
, name: "light installations"
type: OTHER
salience: 5.039759707869962e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.039759707869962e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.039759707869962e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.038554809289053e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp installations"
type: WORK_OF_ART
salience: 5.038554809289053e-05
mentions {
  text {
    content: "amp installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.037372829974629e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.037372829974629e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.037372829974629e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.036213042330928e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.036213042330928e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.036213042330928e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross installations"
type: OTHER
salience: 5.036213042330928e-05
mentions {
  text {
    content: "kingscross installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jokes"
type: OTHER
salience: 5.036127186031081e-05
mentions {
  text {
    content: "jokes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.03507508256007e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.03507508256007e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.03507508256007e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "events"
type: EVENT
salience: 5.034780042478815e-05
mentions {
  text {
    content: "events"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound installation"
type: OTHER
salience: 5.032860644860193e-05
mentions {
  text {
    content: "sound installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.032860644860193e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.032860644860193e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.032860644860193e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.031782711739652e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.031782711739652e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.030723332311027e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp installations"
type: WORK_OF_ART
salience: 5.030723332311027e-05
mentions {
  text {
    content: "amp installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.030723332311027e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.029682142776437e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.029682142776437e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.0286584155401215e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.0276514230063185e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 5.025685823056847e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.025685823056847e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlife sessions"
type: EVENT
salience: 5.0251946959178895e-05
mentions {
  text {
    content: "londonlife sessions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selection photos"
type: WORK_OF_ART
salience: 5.013783083995804e-05
mentions {
  text {
    content: "selection photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 5.0106165872421116e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.004830745747313e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 5.004830745747313e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas photos"
type: WORK_OF_ART
salience: 5.004737977287732e-05
mentions {
  text {
    content: "umbrellas photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.002990656066686e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 5.002861507819034e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 5.001998943043873e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 5.0012047722702846e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit chapter"
type: OTHER
salience: 5.000162127544172e-05
mentions {
  text {
    content: "spirit chapter"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.9994698201771826e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "print map list installations"
type: WORK_OF_ART
salience: 4.9945436330745e-05
mentions {
  text {
    content: "print map list installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.993372203898616e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.9929865781450644e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.9929865781450644e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon city"
type: LOCATION
salience: 4.9905120249604806e-05
mentions {
  text {
    content: "lumierelondon city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.989987064618617e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.9885409680427983e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.9885409680427983e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.987128704669885e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photograph"
type: WORK_OF_ART
salience: 4.985656414646655e-05
mentions {
  text {
    content: "photograph"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photograph"
type: WORK_OF_ART
salience: 4.985656414646655e-05
mentions {
  text {
    content: "photograph"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.9843991291709244e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sroosegaarde installation"
type: OTHER
salience: 4.9830792704597116e-05
mentions {
  text {
    content: "sroosegaarde installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 4.981695019523613e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.973560862708837e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.973560862708837e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.9714846682036296e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.9714846682036296e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.9694772314978763e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 4.9675345508148894e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "meetup"
type: EVENT
salience: 4.957657074555755e-05
mentions {
  text {
    content: "meetup"
    begin_offset: -1
  }
  type: COMMON
}
, name: "get"
type: OTHER
salience: 4.948253263137303e-05
mentions {
  text {
    content: "get"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.941645238432102e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 4.938524216413498e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.9355574446963146e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.932730371365324e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.9274469347437844e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.9274469347437844e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thesavoylondon"
type: WORK_OF_ART
salience: 4.9265636334894225e-05
mentions {
  text {
    content: "thesavoylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 4.924970198771916e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.924970198771916e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.92259168822784e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 4.92259168822784e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.92259168822784e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london"
type: OTHER
metadata {
  key: "mid"
  value: "/g/11f1x94f51"
}
salience: 4.916833495371975e-05
mentions {
  text {
    content: "lumiere london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "works"
type: WORK_OF_ART
salience: 4.915975659969263e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.915975659969263e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 4.915975659969263e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 4.915975659969263e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
type: PERSON
salience: 4.9139496695715934e-05
mentions {
  text {
    content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installations"
type: OTHER
salience: 4.910401185043156e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.897992039332166e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roosegaarde kings"
type: OTHER
salience: 4.889012416242622e-05
mentions {
  text {
    content: "roosegaarde kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "x ray vision"
type: OTHER
salience: 4.8772970330901444e-05
mentions {
  text {
    content: "x ray vision"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.8761772632133216e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain visitlondon"
type: ORGANIZATION
salience: 4.8743673687567934e-05
mentions {
  text {
    content: "rain  visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlights"
type: OTHER
salience: 4.8628015065332875e-05
mentions {
  text {
    content: "nightlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "eluminate2018"
type: OTHER
salience: 4.853441350860521e-05
mentions {
  text {
    content: "eluminate2018"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbanklondon"
type: ORGANIZATION
salience: 4.839895336772315e-05
mentions {
  text {
    content: "southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: PERSON
salience: 4.837402593693696e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorstep nightlife"
type: ORGANIZATION
salience: 4.833941056858748e-05
mentions {
  text {
    content: "doorstep  nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitors"
type: PERSON
salience: 4.833385901292786e-05
mentions {
  text {
    content: "visitors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nights"
type: EVENT
salience: 4.8322155635105446e-05
mentions {
  text {
    content: "nights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 4.8310710553778335e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon festival"
type: EVENT
salience: 4.821503534913063e-05
mentions {
  text {
    content: "visitlondon  festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.8122939915629104e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "searcystpancras"
type: OTHER
salience: 4.812183033209294e-05
mentions {
  text {
    content: "searcystpancras"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon visitlondon"
type: EVENT
salience: 4.8048372264020145e-05
mentions {
  text {
    content: "lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "therose pedalpower petalpower lumiere"
type: OTHER
salience: 4.787401121575385e-05
mentions {
  text {
    content: "therose pedalpower petalpower lumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installation trafalgarsquare"
type: OTHER
salience: 4.747545244754292e-05
mentions {
  text {
    content: "installation trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photograph fish phone box"
type: OTHER
salience: 4.7379089664900675e-05
mentions {
  text {
    content: "photograph fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation trafalgarsquare"
type: OTHER
salience: 4.736056871479377e-05
mentions {
  text {
    content: "installation trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation trafalgarsquare"
type: OTHER
salience: 4.734010508400388e-05
mentions {
  text {
    content: "installation trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.699833152699284e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.699292912846431e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weekend lumierelondon photos"
type: WORK_OF_ART
salience: 4.6961602492956445e-05
mentions {
  text {
    content: "weekend lumierelondon photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.694422386819497e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mischiefmovienight amp"
type: PERSON
salience: 4.690435162046924e-05
mentions {
  text {
    content: "mischiefmovienight amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank amp"
type: ORGANIZATION
salience: 4.686708052759059e-05
mentions {
  text {
    content: "south bank amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "edgillwhl lumierelondon leicestersquare"
type: OTHER
salience: 4.6848719648551196e-05
mentions {
  text {
    content: "friends experiences"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "edgillwhl lumierelondon leicestersquare"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lighting inspiration"
type: OTHER
salience: 4.67863937956281e-05
mentions {
  text {
    content: "lighting inspiration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blue sky"
type: OTHER
salience: 4.67863937956281e-05
mentions {
  text {
    content: "blue sky"
    begin_offset: -1
  }
  type: COMMON
}
, name: "balloons amp"
type: OTHER
salience: 4.667259781854227e-05
mentions {
  text {
    content: "balloons amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou streets"
type: LOCATION
salience: 4.666918539442122e-05
mentions {
  text {
    content: "cirquebijou streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city streets"
type: LOCATION
salience: 4.666918539442122e-05
mentions {
  text {
    content: "city streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: PERSON
salience: 4.665543747250922e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.665543747250922e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city mayorofldn amp"
type: ORGANIZATION
salience: 4.662260471377522e-05
mentions {
  text {
    content: "city mayorofldn amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnaby"
type: EVENT
metadata {
  key: "mid"
  value: "/m/027g2z"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Carnaby_Street"
}
salience: 4.662236460717395e-05
mentions {
  text {
    content: "carnaby"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "carnaby street"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "carnaby street"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "carnaby"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "fixture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 4.6621280489489436e-05
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 4.660687409341335e-05
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city streets"
type: LOCATION
salience: 4.6598765038652346e-05
mentions {
  text {
    content: "city streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: CONSUMER_GOOD
salience: 4.659156911657192e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations amp"
type: OTHER
salience: 4.659156911657192e-05
mentions {
  text {
    content: "light installations amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jubilee line baker street"
type: LOCATION
salience: 4.6536133595509455e-05
mentions {
  text {
    content: "jubilee line baker street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.650751725421287e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.650751725421287e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 4.6496053982991725e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.649464608519338e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.649464608519338e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.649464608519338e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "btpvolunteers"
type: PERSON
salience: 4.638866812456399e-05
mentions {
  text {
    content: "btpvolunteers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 4.6376106183743104e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon"
type: ORGANIZATION
salience: 4.631448973668739e-05
mentions {
  text {
    content: "aichoketrust visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "chance feature gallery"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.62504212919157e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.62504212919157e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.62504212919157e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 4.622263440978713e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 4.622263440978713e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 4.619615720002912e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon latergram"
type: OTHER
salience: 4.6176424802979454e-05
mentions {
  text {
    content: "lumierelondon latergram"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wikicommons"
type: OTHER
metadata {
  key: "mid"
  value: "/m/04f_qd"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Wikimedia_Commons"
}
salience: 4.6176424802979454e-05
mentions {
  text {
    content: "wikicommons"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lights"
type: OTHER
salience: 4.6150231355568394e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.6146677050273865e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.6096665755612776e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin favourite installation"
type: OTHER
salience: 4.6096665755612776e-05
mentions {
  text {
    content: "child hood collectif coin favourite installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.608800009009428e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.607946175383404e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "benefits"
type: OTHER
salience: 4.607003211276606e-05
mentions {
  text {
    content: "benefits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "btpvolunteers"
type: PERSON
salience: 4.607003211276606e-05
mentions {
  text {
    content: "btpvolunteers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "btpvolunteers"
type: PERSON
salience: 4.607003211276606e-05
mentions {
  text {
    content: "btpvolunteers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.606277434504591e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.606277434504591e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.606277434504591e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.605914728017524e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.6054610720602795e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.604656351148151e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.603924389812164e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light installations"
type: OTHER
salience: 4.60308110632468e-05
mentions {
  text {
    content: "light installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.602309854817577e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 4.602309854817577e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.601549153449014e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.600144166033715e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 4.600144166033715e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cain_int badgerust fox amp badger stars"
type: ORGANIZATION
salience: 4.600144166033715e-05
mentions {
  text {
    content: "cain_int  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 4.600144166033715e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 4.600144166033715e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.5993267121957615e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.5993267121957615e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.5993267121957615e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: CONSUMER_GOOD
salience: 4.5983459131093696e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlife dslr nightmoves 2"
type: CONSUMER_GOOD
salience: 4.5882148697273806e-05
mentions {
  text {
    content: "londonlife dslr nightmoves 2"
    begin_offset: -1
  }
  type: PROPER
}
, name: "display"
type: OTHER
salience: 4.5831187890144065e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp witchcraft"
type: OTHER
salience: 4.58142785646487e-05
mentions {
  text {
    content: "amp witchcraft"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spoonsontrays"
type: CONSUMER_GOOD
salience: 4.58142785646487e-05
mentions {
  text {
    content: "spoonsontrays"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp witchcraft"
type: OTHER
salience: 4.5720109483227134e-05
mentions {
  text {
    content: "amp witchcraft"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 4.571206227410585e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 4.571206227410585e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 4.571206227410585e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "props"
type: OTHER
salience: 4.567840005620383e-05
mentions {
  text {
    content: "props"
    begin_offset: -1
  }
  type: COMMON
}
, name: "playlondongame"
type: OTHER
salience: 4.567840005620383e-05
mentions {
  text {
    content: "playlondongame"
    begin_offset: -1
  }
  type: COMMON
}
, name: "addition"
type: OTHER
salience: 4.567840005620383e-05
mentions {
  text {
    content: "addition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bar"
type: LOCATION
salience: 4.567840005620383e-05
mentions {
  text {
    content: "bar"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beasts"
type: OTHER
salience: 4.5657827286049724e-05
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "decorations"
type: OTHER
salience: 4.5639601012226194e-05
mentions {
  text {
    content: "decorations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "creativity amp inspiration"
type: OTHER
salience: 4.56033340014983e-05
mentions {
  text {
    content: "creativity amp inspiration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.5367327402345836e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.535647894954309e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon zebraprodunique"
type: ORGANIZATION
salience: 4.5330751163419336e-05
mentions {
  text {
    content: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  zebraprodunique"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fish phone box"
type: OTHER
salience: 4.532122693490237e-05
mentions {
  text {
    content: "fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "50 aists justin_venn lumierelondon2018 lumierelondon"
type: PERSON
salience: 4.529884972725995e-05
mentions {
  text {
    content: "50 aists  justin_venn  lumierelondon2018 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayfair grosvenor_ldn grosvenor_gbi justin_venn lumierelondon2018 lumierelondon"
type: ORGANIZATION
salience: 4.529884972725995e-05
mentions {
  text {
    content: "mayfair grosvenor_ldn grosvenor_gbi  justin_venn  lumierelondon2018 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "chinatown pa festival"
type: EVENT
salience: 4.529551733867265e-05
mentions {
  text {
    content: "chinatown pa festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere festival"
type: EVENT
salience: 4.529551733867265e-05
mentions {
  text {
    content: "lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown pa festival"
type: EVENT
salience: 4.529551733867265e-05
mentions {
  text {
    content: "chinatown pa festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown pa festival"
type: EVENT
salience: 4.5285982196219265e-05
mentions {
  text {
    content: "chinatown pa festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown pa festival"
type: EVENT
salience: 4.5285982196219265e-05
mentions {
  text {
    content: "chinatown pa festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fairies"
type: OTHER
salience: 4.527135388343595e-05
mentions {
  text {
    content: "fairies"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "fairies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festivals"
type: EVENT
salience: 4.5258326281327754e-05
mentions {
  text {
    content: "festivals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.524940959527157e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitors city bottle festoon"
type: EVENT
salience: 4.524940959527157e-05
mentions {
  text {
    content: "visitors city bottle festoon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon justin_venn lumierelondon2018 lumierelondon"
type: PERSON
salience: 4.524010364548303e-05
mentions {
  text {
    content: "mayoroflondon  justin_venn  lumierelondon2018 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "streets"
type: LOCATION
salience: 4.5146545744501054e-05
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists"
type: PERSON
salience: 4.508739584707655e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.500463910517283e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nights"
type: EVENT
salience: 4.500345676206052e-05
mentions {
  text {
    content: "nights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tag"
type: OTHER
salience: 4.498982889344916e-05
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlumiere london leceistersquare lumiere"
type: ORGANIZATION
salience: 4.4978973164688796e-05
mentions {
  text {
    content: "londonlumiere london leceistersquare  lumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "festival"
type: EVENT
salience: 4.4946275011170655e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey light festival"
type: EVENT
salience: 4.4946275011170655e-05
mentions {
  text {
    content: "westminsterabbey light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 4.4938446080777794e-05
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere festival"
type: EVENT
salience: 4.493260712479241e-05
mentions {
  text {
    content: "lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.491927393246442e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 4.491077925194986e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere festival"
type: EVENT
salience: 4.490625724429265e-05
mentions {
  text {
    content: "lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.489354250836186e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey"
type: ORGANIZATION
salience: 4.489352068048902e-05
mentions {
  text {
    content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye"
    begin_offset: -1
  }
  type: PROPER
}
, name: "saints"
type: PERSON
salience: 4.486549732973799e-05
mentions {
  text {
    content: "saints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 4.4667187466984615e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 4.4667187466984615e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: OTHER
salience: 4.465927122510038e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: EVENT
salience: 4.465147139853798e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitors"
type: PERSON
salience: 4.464378071133979e-05
mentions {
  text {
    content: "visitors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.463095683604479e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 4.462133802007884e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit"
type: EVENT
salience: 4.462133802007884e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife"
type: EVENT
salience: 4.454755980987102e-05
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon kingscrossn1c roamingrequired southbanklondon"
type: ORGANIZATION
salience: 4.454518420970999e-05
mentions {
  text {
    content: "visitlondon kingscrossn1c roamingrequired  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "nightlife"
type: OTHER
salience: 4.453905421542004e-05
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bhawnasaini_yml"
type: OTHER
metadata {
  key: "mid"
  value: "/m/01w6k2"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/YAML"
}
salience: 4.4455497118178755e-05
mentions {
  text {
    content: "childhood"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "bhawnasaini_yml"
    begin_offset: -1
  }
  type: PROPER
}
, name: "animal nightlife"
type: ORGANIZATION
salience: 4.444621299626306e-05
mentions {
  text {
    content: "animal nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife"
type: EVENT
salience: 4.444621299626306e-05
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists amp employment oppounities tourism amp fitness"
type: OTHER
salience: 4.4320549932308495e-05
mentions {
  text {
    content: "aists amp employment oppounities tourism amp fitness"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selfie london visitlondon"
type: ORGANIZATION
salience: 4.428498141351156e-05
mentions {
  text {
    content: "selfie london  visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierefestival2018 aichoke trafalgarsquare london"
type: PERSON
salience: 4.423821155796759e-05
mentions {
  text {
    content: "lumierefestival2018 aichoke trafalgarsquare london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lights"
type: OTHER
salience: 4.410432302393019e-05
mentions {
  text {
    content: "lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "iesphotos cityatnight london"
type: OTHER
salience: 4.41006341134198e-05
mentions {
  text {
    content: "iesphotos cityatnight  london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: OTHER
salience: 4.3800911953439936e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "squirrel mouse aichoketrust"
type: ORGANIZATION
salience: 4.378979065222666e-05
mentions {
  text {
    content: "squirrel mouse aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: PERSON
salience: 4.37682174379006e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: OTHER
salience: 4.365445420262404e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: OTHER
salience: 4.365445420262404e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aist"
type: PERSON
salience: 4.3620369979180396e-05
mentions {
  text {
    content: "aist"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon london"
type: OTHER
salience: 4.350421659182757e-05
mentions {
  text {
    content: "lumierelondon london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "king cross"
type: OTHER
salience: 4.337179780122824e-05
mentions {
  text {
    content: "king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists"
type: PERSON
salience: 4.336488927947357e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "2018 trafalgarsquare kingscross carnabystreet regentstreet"
type: PERSON
salience: 4.335075936978683e-05
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aists"
type: PERSON
salience: 4.3346786696929485e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: PERSON
salience: 4.328742579673417e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ilyasayub_photo"
type: WORK_OF_ART
metadata {
  key: "mid"
  value: "/m/068jd"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Photograph"
}
salience: 4.316430931794457e-05
mentions {
  text {
    content: "ilyasayub_photo"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ilyasayub_photo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "polychrome"
type: OTHER
salience: 4.315278783906251e-05
mentions {
  text {
    content: "polychrome"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "polychrome"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 4.3118045141454786e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "head"
type: OTHER
salience: 4.307123526814394e-05
mentions {
  text {
    content: "head"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "head"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 4.305628317524679e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 4.302478191675618e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 4.302478191675618e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 4.301469016354531e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "events"
type: EVENT
salience: 4.294027530704625e-05
mentions {
  text {
    content: "events"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank amp"
type: OTHER
salience: 4.2911760829156265e-05
mentions {
  text {
    content: "south bank amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.289785283617675e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 4.289103526389226e-05
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 4.2884305003099144e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "croydon"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/02gw_w"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Croydon"
}
salience: 4.286038893042132e-05
mentions {
  text {
    content: "croydon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "croydon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "croydon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "check light"
type: OTHER
salience: 4.26923215854913e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 4.267196709406562e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 4.26704682467971e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: OTHER
salience: 4.26704682467971e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 4.2665356886573136e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 4.2665356886573136e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 4.261004869476892e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winterlights canarywharf"
type: LOCATION
salience: 4.2584175389492884e-05
mentions {
  text {
    content: "winterlights canarywharf"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "winterlights canarywharf"
    begin_offset: -1
  }
  type: PROPER
}
, name: "event"
type: EVENT
salience: 4.257385808159597e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "arrival"
type: EVENT
salience: 4.245622403686866e-05
mentions {
  text {
    content: "arrival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "book cou"
type: OTHER
salience: 4.245622403686866e-05
mentions {
  text {
    content: "book cou"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pint"
type: OTHER
salience: 4.230605554766953e-05
mentions {
  text {
    content: "pint"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thelondoneye westminsterabbey"
type: ORGANIZATION
salience: 4.226916280458681e-05
mentions {
  text {
    content: "thelondoneye westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "thelondoneye westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "light lumiere king"
type: OTHER
salience: 4.2254388972651213e-05
mentions {
  text {
    content: "light lumiere  king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 4.224466465529986e-05
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.223511496093124e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross"
type: OTHER
salience: 4.223511496093124e-05
mentions {
  text {
    content: "kingscross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 4.222574352752417e-05
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.221653944114223e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: EVENT
salience: 4.220749906380661e-05
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: EVENT
salience: 4.220749906380661e-05
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 4.219861148158088e-05
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: PERSON
salience: 4.219861148158088e-05
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: PERSON
salience: 4.2189876694465056e-05
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park kings"
type: EVENT
salience: 4.2189876694465056e-05
mentions {
  text {
    content: "park kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roosegaarde kings"
type: PERSON
salience: 4.217284367769025e-05
mentions {
  text {
    content: "roosegaarde kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.217284367769025e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.216453089611605e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.216453089611605e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.216453089611605e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.216453089611605e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht lumiere kings"
type: PERSON
salience: 4.215635635773651e-05
mentions {
  text {
    content: "waterlicht lumiere kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city waterlicht lumiere kings"
type: LOCATION
salience: 4.215635635773651e-05
mentions {
  text {
    content: "city waterlicht lumiere kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere kings"
type: OTHER
salience: 4.215635635773651e-05
mentions {
  text {
    content: "lumiere kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.215635635773651e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scene boulevard"
type: LOCATION
salience: 4.209530743537471e-05
mentions {
  text {
    content: "scene boulevard"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather cold"
type: OTHER
salience: 4.209530743537471e-05
mentions {
  text {
    content: "weather cold"
    begin_offset: -1
  }
  type: COMMON
}
, name: "charsuibuns light spirit"
type: OTHER
salience: 4.20055293943733e-05
mentions {
  text {
    content: "charsuibuns light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london rain"
type: OTHER
salience: 4.2000778194051236e-05
mentions {
  text {
    content: "london rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightinstallation landscape colour longexposure canon kings"
type: WORK_OF_ART
salience: 4.198141323286109e-05
mentions {
  text {
    content: "lightinstallation landscape  colour longexposure canon kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.19509997300338e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jakubkrupa"
type: OTHER
salience: 4.1946415876736864e-05
mentions {
  text {
    content: "jakubkrupa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shaida"
type: PERSON
salience: 4.1946415876736864e-05
mentions {
  text {
    content: "shaida"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 4.185690340818837e-05
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 4.179895404377021e-05
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poraits"
type: PERSON
salience: 4.178221206529997e-05
mentions {
  text {
    content: "poraits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey"
type: OTHER
salience: 4.177098526270129e-05
mentions {
  text {
    content: "westminsterabbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival walk"
type: EVENT
salience: 4.168165833107196e-05
mentions {
  text {
    content: "festival walk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rarebear"
type: PERSON
salience: 4.160687603871338e-05
mentions {
  text {
    content: "rarebear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ukinargentina es un festival de luces en londres con 50 obras de ae en exhibici\303\263n ayer fue la primera de las 4"
type: LOCATION
salience: 4.1556682845111936e-05
mentions {
  text {
    content: "ukinargentina  es un festival de luces en londres con 50 obras de ae en exhibici\303\263n ayer fue la primera de las 4"
    begin_offset: -1
  }
  type: PROPER
}
, name: "citywestminster festival"
type: EVENT
salience: 4.1480143408989534e-05
mentions {
  text {
    content: "citywestminster  festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cast commentary"
type: WORK_OF_ART
salience: 4.147968138568103e-05
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.147257641307078e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.146512219449505e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "youtube london light festival"
type: EVENT
salience: 4.146512219449505e-05
mentions {
  text {
    content: "youtube london light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa lumiere festival"
type: EVENT
salience: 4.145777347730473e-05
mentions {
  text {
    content: "pa lumiere festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.1443388909101486e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.1443388909101486e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light festival"
type: EVENT
salience: 4.142255784245208e-05
mentions {
  text {
    content: "light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.142255784245208e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.140913370065391e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.140913370065391e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.140913370065391e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.139605880482122e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.139605880482122e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 4.139605880482122e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.139605880482122e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 4.138964504818432e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granarysquare"
type: OTHER
salience: 4.1251139919040725e-05
mentions {
  text {
    content: "granarysquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.122991958865896e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 4.1198287362931296e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.0965147491078824e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.093787356396206e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kathak dance styles"
type: OTHER
salience: 4.0930910472525284e-05
mentions {
  text {
    content: "kathak dance styles"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.0887440263759345e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "power"
type: OTHER
salience: 4.0769340557744727e-05
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
, name: "snow amp rain"
type: OTHER
salience: 4.0732451452640817e-05
mentions {
  text {
    content: "snow amp rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 4.072521551279351e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster cathedral"
type: LOCATION
salience: 4.068050839123316e-05
mentions {
  text {
    content: "westminster cathedral"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster cathedral"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster cathedral"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust biggsytravels"
type: PERSON
salience: 4.064860331709497e-05
mentions {
  text {
    content: "aichoketrust biggsytravels"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pics"
type: WORK_OF_ART
salience: 4.062797597725876e-05
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "toevho"
type: OTHER
salience: 4.0610113501315936e-05
mentions {
  text {
    content: "toevho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust biggsytravels"
type: CONSUMER_GOOD
salience: 4.058180275023915e-05
mentions {
  text {
    content: "aichoketrust biggsytravels"
    begin_offset: -1
  }
  type: PROPER
}
, name: "festival"
type: EVENT
salience: 4.047832408105023e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists"
type: PERSON
salience: 4.0436203562421724e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1"
type: ORGANIZATION
salience: 4.042293949169107e-05
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminster westminsterabby"
type: ORGANIZATION
salience: 4.04101301683113e-05
mentions {
  text {
    content: "westminster westminsterabby"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster westminsterabby"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster westminsterabby"
    begin_offset: -1
  }
  type: PROPER
}
, name: "landmarks streets"
type: LOCATION
salience: 4.0093604184221476e-05
mentions {
  text {
    content: "landmarks streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city aichoketrust"
type: ORGANIZATION
salience: 4.001803608844057e-05
mentions {
  text {
    content: "city aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: OTHER
salience: 3.996908344561234e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust"
type: PERSON
salience: 3.9955957618076354e-05
mentions {
  text {
    content: "aichoketrust"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: PERSON
salience: 3.993042264482938e-05
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: PERSON
salience: 3.991035191575065e-05
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flickr biuk"
type: OTHER
salience: 3.991035191575065e-05
mentions {
  text {
    content: "flickr  biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thanks"
type: OTHER
salience: 3.981292320531793e-05
mentions {
  text {
    content: "thanks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross raindropskeepfallingonmyhead dslr nightmoves 1"
type: ORGANIZATION
salience: 3.963005292462185e-05
mentions {
  text {
    content: "kingscross raindropskeepfallingonmyhead dslr nightmoves 1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "event"
type: EVENT
salience: 3.9362392271868885e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "events"
type: EVENT
salience: 3.935499262297526e-05
mentions {
  text {
    content: "events"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 3.9319609641097486e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 3.930616003344767e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 3.928034129785374e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 3.9267935790121555e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend"
type: LOCATION
salience: 3.917532376362942e-05
mentions {
  text {
    content: "westend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: OTHER
salience: 3.913139516953379e-05
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.867402483592741e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.867402483592741e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.867402483592741e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lampounette lumiere kings"
type: PERSON
salience: 3.8666639738949016e-05
mentions {
  text {
    content: "lampounette lumiere kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.8666639738949016e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "taste rainbow king"
type: OTHER
salience: 3.8659371057292446e-05
mentions {
  text {
    content: "taste rainbow king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "passing kings"
type: PERSON
salience: 3.865221151500009e-05
mentions {
  text {
    content: "passing kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.865221151500009e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 3.8638208934571594e-05
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sliceofthecity visitlondon londonlumiere"
type: ORGANIZATION
salience: 3.86294414056465e-05
mentions {
  text {
    content: "sliceofthecity visitlondon londonlumiere"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "sliceofthecity visitlondon londonlumiere"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "sliceofthecity visitlondon londonlumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "delays fi king"
type: PERSON
salience: 3.861796358251013e-05
mentions {
  text {
    content: "delays fi  king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster london"
type: LOCATION
salience: 3.8569443859159946e-05
mentions {
  text {
    content: "westminster london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "piccadilly stjames jermynstreet london"
type: LOCATION
salience: 3.854065653285943e-05
mentions {
  text {
    content: "piccadilly stjames jermynstreet london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "charlie lumiere lumierelondon leicestersquare london"
type: PERSON
salience: 3.850482971756719e-05
mentions {
  text {
    content: "charlie lumiere  lumierelondon leicestersquare london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london thisislondon londonatnight londonlife"
type: ORGANIZATION
salience: 3.848789128824137e-05
mentions {
  text {
    content: "london thisislondon londonatnight londonlife"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon kingscross granarysquare visitlondon"
type: ORGANIZATION
salience: 3.842756268568337e-05
mentions {
  text {
    content: "lumierelondon kingscross granarysquare visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "south bank king cross"
type: OTHER
salience: 3.836937321466394e-05
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "deputy mayor"
type: PERSON
salience: 3.836896939901635e-05
mentions {
  text {
    content: "deputy mayor"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gt mondaymotivation aichoketrust"
type: PERSON
salience: 3.829340130323544e-05
mentions {
  text {
    content: "gt mondaymotivation  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "flickr iesphotos cityatnight london"
type: ORGANIZATION
salience: 3.8273530662991107e-05
mentions {
  text {
    content: "flickr iesphotos cityatnight  london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london southbank london"
type: LOCATION
salience: 3.824580562650226e-05
mentions {
  text {
    content: "london southbank  london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mondaymotivation ginoclock ginuary grosvenor_gbi mayfair london"
type: LOCATION
salience: 3.81485624529887e-05
mentions {
  text {
    content: "mondaymotivation ginoclock  ginuary  grosvenor_gbi mayfair london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon aichoketrust"
type: ORGANIZATION
salience: 3.809525151154958e-05
mentions {
  text {
    content: "visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "european"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/02j9z"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Europe"
}
salience: 3.800869671977125e-05
mentions {
  text {
    content: "european"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "european"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "european"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visit"
type: EVENT
salience: 3.8000973290763795e-05
mentions {
  text {
    content: "visit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.7960246118018404e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.790724076679908e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.7888243241468444e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.7888243241468444e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.785606168094091e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.785606168094091e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight hope"
type: OTHER
salience: 3.784077489399351e-05
mentions {
  text {
    content: "highlight  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hope"
type: OTHER
salience: 3.784077489399351e-05
mentions {
  text {
    content: "hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "swing"
type: OTHER
salience: 3.7816378608113155e-05
mentions {
  text {
    content: "swing"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "swing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.763966742553748e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.763966742553748e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.763966742553748e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tmnikonian aichoketrust"
type: PERSON
salience: 3.760082836379297e-05
mentions {
  text {
    content: "tmnikonian  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "abbey"
type: LOCATION
salience: 3.7588139093713835e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.7588139093713835e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.7564397644018754e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.7541831261478364e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 3.7541831261478364e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "foodie domesticgoddess"
type: OTHER
salience: 3.753186683752574e-05
mentions {
  text {
    content: "foodie domesticgoddess"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "foodie domesticgoddess"
    begin_offset: -1
  }
  type: COMMON
}
, name: "covent garden"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/015g2s"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Covent_Garden"
}
salience: 3.7511221307795495e-05
mentions {
  text {
    content: "covent garden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "covent garden"
    begin_offset: -1
  }
  type: PROPER
}
, name: "urbana lovemesomelights postcardslond1"
type: ORGANIZATION
salience: 3.7511221307795495e-05
mentions {
  text {
    content: "urbana lovemesomelights  postcardslond1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "levanterman lumierelondon aichoketrust southbanklondon"
type: PERSON
salience: 3.748983726836741e-05
mentions {
  text {
    content: "levanterman lumierelondon aichoketrust southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pyramids"
type: LOCATION
salience: 3.7473091651918367e-05
mentions {
  text {
    content: "pyramids"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 3.741580439964309e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 3.7340822018450126e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.726966679096222e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey postcardslond1"
type: ORGANIZATION
salience: 3.724633279489353e-05
mentions {
  text {
    content: "wabbey westminsterabbey  postcardslond1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "momento"
type: OTHER
salience: 3.716669380082749e-05
mentions {
  text {
    content: "momento"
    begin_offset: -1
  }
  type: COMMON
}
, name: "teacupheaven"
type: OTHER
salience: 3.715453203767538e-05
mentions {
  text {
    content: "teacupheaven"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop dinner champagne"
type: OTHER
salience: 3.715453203767538e-05
mentions {
  text {
    content: "pop dinner champagne"
    begin_offset: -1
  }
  type: COMMON
}
, name: "terrace"
type: LOCATION
salience: 3.715453203767538e-05
mentions {
  text {
    content: "terrace"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 3.7067726225359365e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shadow puppets"
type: OTHER
salience: 3.705255585373379e-05
mentions {
  text {
    content: "shadow puppets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 3.705142080434598e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bloom westminstercath"
type: LOCATION
salience: 3.692231621243991e-05
mentions {
  text {
    content: "bloom westminstercath"
    begin_offset: -1
  }
  type: COMMON
}
, name: "avweekjuliet"
type: OTHER
salience: 3.6899316910421476e-05
mentions {
  text {
    content: "avweekjuliet"
    begin_offset: -1
  }
  type: COMMON
}
, name: "marathon"
type: EVENT
salience: 3.683867907966487e-05
mentions {
  text {
    content: "marathon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "filipa"
type: PERSON
salience: 3.673756873467937e-05
mentions {
  text {
    content: "filipa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "palette"
type: WORK_OF_ART
salience: 3.669446596177295e-05
mentions {
  text {
    content: "palette"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.665603435365483e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.665603435365483e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger"
type: OTHER
salience: 3.662271410576068e-05
mentions {
  text {
    content: "badgerust fox amp badger"
    begin_offset: -1
  }
  type: COMMON
}
, name: "break london besties"
type: OTHER
salience: 3.661904338514432e-05
mentions {
  text {
    content: "break london besties"
    begin_offset: -1
  }
  type: COMMON
}
, name: "design innovation medal"
type: OTHER
salience: 3.658563218777999e-05
mentions {
  text {
    content: "design innovation medal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.637122790678404e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey mvpicsss"
type: PERSON
salience: 3.636296605691314e-05
mentions {
  text {
    content: "wabbey westminsterabbey  mvpicsss"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon londonwhispers"
type: PERSON
salience: 3.633977030403912e-05
mentions {
  text {
    content: "lumierelondon  londonwhispers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wrap"
type: OTHER
salience: 3.629958882811479e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon aichoketrust wrap"
type: OTHER
salience: 3.627303158282302e-05
mentions {
  text {
    content: "lumierelondon  aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.612964428612031e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.609605846577324e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.6088047636440024e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross granary square"
type: LOCATION
salience: 3.6088047636440024e-05
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dataweb granary square"
type: OTHER
salience: 3.608018232625909e-05
mentions {
  text {
    content: "dataweb  granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.604860103223473e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.6035733501194045e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 3.603555160225369e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.597678369260393e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium telephone box"
type: OTHER
salience: 3.594059307943098e-05
mentions {
  text {
    content: "aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bum rossbolwill aquarium telephone box"
type: CONSUMER_GOOD
salience: 3.594059307943098e-05
mentions {
  text {
    content: "bum  rossbolwill  aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "borough redbridge regents"
type: LOCATION
salience: 3.593022847780958e-05
mentions {
  text {
    content: "borough redbridge  regents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings"
type: PERSON
salience: 3.5925993870478123e-05
mentions {
  text {
    content: "kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "telephone box"
type: CONSUMER_GOOD
salience: 3.5922275856137276e-05
mentions {
  text {
    content: "telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "borough redbridge regents"
type: LOCATION
salience: 3.586843013181351e-05
mentions {
  text {
    content: "borough redbridge  regents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross granary square"
type: LOCATION
salience: 3.582870340324007e-05
mentions {
  text {
    content: "king cross granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "places"
type: LOCATION
salience: 3.582545468816534e-05
mentions {
  text {
    content: "places"
    begin_offset: -1
  }
  type: COMMON
}
, name: "berkeley square"
type: LOCATION
salience: 3.5805478546535596e-05
mentions {
  text {
    content: "berkeley square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box"
type: OTHER
salience: 3.57635690306779e-05
mentions {
  text {
    content: "amp pandora box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank"
type: LOCATION
salience: 3.5737117286771536e-05
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "borough redbridge regents"
type: LOCATION
salience: 3.573680078261532e-05
mentions {
  text {
    content: "borough redbridge  regents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "borough redbridge regents"
type: LOCATION
salience: 3.573680078261532e-05
mentions {
  text {
    content: "borough redbridge  regents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "borough redbridge regents"
type: LOCATION
salience: 3.573680078261532e-05
mentions {
  text {
    content: "borough redbridge  regents"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.5736531572183594e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.5736531572183594e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent"
type: ORGANIZATION
salience: 3.572282730601728e-05
mentions {
  text {
    content: "regent"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa exhibition"
type: EVENT
salience: 3.57115022779908e-05
mentions {
  text {
    content: "pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 3.57115022779908e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "exhibition"
type: EVENT
salience: 3.5686371120391414e-05
mentions {
  text {
    content: "exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 3.5662615118781105e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 3.5525103157851845e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 3.5477354686008766e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "teams"
type: ORGANIZATION
salience: 3.5477354686008766e-05
mentions {
  text {
    content: "teams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "teams"
type: ORGANIZATION
salience: 3.5477354686008766e-05
mentions {
  text {
    content: "teams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 3.533067865646444e-05
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey london"
type: OTHER
salience: 3.524486965034157e-05
mentions {
  text {
    content: "westminsterabbey london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey london"
type: LOCATION
salience: 3.524486965034157e-05
mentions {
  text {
    content: "westminsterabbey london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon aichoketrust solomongreyband philippemorvan london"
type: ORGANIZATION
salience: 3.5219334677094594e-05
mentions {
  text {
    content: "visitlondon aichoketrust solomongreyband philippemorvan  london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "nightlife hatmanoflondon southbanklondon"
type: ORGANIZATION
salience: 3.51966118614655e-05
mentions {
  text {
    content: "nightlife hatmanoflondon  southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere london marshalljulius london"
type: LOCATION
salience: 3.5178014513803646e-05
mentions {
  text {
    content: "lumiere london    marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "miss"
type: EVENT
salience: 3.513599585858174e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cirquebijou amp lambethacademy students"
type: PERSON
salience: 3.511110116960481e-05
mentions {
  text {
    content: "cirquebijou amp lambethacademy students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 3.506643042783253e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 3.506469147396274e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 3.496567296679132e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon lumiere london biuk"
type: OTHER
salience: 3.49283182004001e-05
mentions {
  text {
    content: "visitlondon lumiere london  biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 3.489934897515923e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 3.485562410787679e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 3.484199623926543e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 3.483301043161191e-05
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lines stations"
type: LOCATION
salience: 3.480997838778421e-05
mentions {
  text {
    content: "lines stations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lines stations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lines stations"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "lines stations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
type: ORGANIZATION
salience: 3.474168261163868e-05
mentions {
  text {
    content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pa"
type: OTHER
salience: 3.47081950167194e-05
mentions {
  text {
    content: "pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa"
type: OTHER
salience: 3.47081950167194e-05
mentions {
  text {
    content: "pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 3.466368798399344e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 3.465231930022128e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01t41x"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Chinatown,_London"
}
salience: 3.4610020520631224e-05
mentions {
  text {
    content: "chinatown"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "chinatown"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "chinatown"
    begin_offset: -1
  }
  type: PROPER
}
, name: "abbey"
type: LOCATION
salience: 3.460263542365283e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 3.457553975749761e-05
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.451754673733376e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.449177893344313e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 3.44703730661422e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.446750633884221e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster victoria"
type: LOCATION
salience: 3.4461223549442366e-05
mentions {
  text {
    content: "victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster victoria"
    begin_offset: -1
  }
  type: PROPER
}
, name: "transforms"
type: EVENT
salience: 3.438242129050195e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.438242129050195e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.436360202613287e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.436360202613287e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross"
type: OTHER
salience: 3.43491519743111e-05
mentions {
  text {
    content: "king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.4345590393058956e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 3.422410736675374e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "placemaking"
type: OTHER
salience: 3.406804535188712e-05
mentions {
  text {
    content: "placemaking"
    begin_offset: -1
  }
  type: COMMON
}
, name: "placemaking"
type: EVENT
salience: 3.406804535188712e-05
mentions {
  text {
    content: "placemaking"
    begin_offset: -1
  }
  type: COMMON
}
, name: "places"
type: LOCATION
salience: 3.399802153580822e-05
mentions {
  text {
    content: "places"
    begin_offset: -1
  }
  type: COMMON
}
, name: "placemaking"
type: OTHER
salience: 3.396700049052015e-05
mentions {
  text {
    content: "placemaking"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 3.391118298168294e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scene pa aichoketrust wrap"
type: OTHER
salience: 3.3891115890583023e-05
mentions {
  text {
    content: "scene pa   aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
type: ORGANIZATION
salience: 3.387437027413398e-05
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos"
type: WORK_OF_ART
salience: 3.386351090739481e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.382533395779319e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london metroldn timeoutlondon lumierelondon lightfestival visitlondon"
type: ORGANIZATION
salience: 3.3799045922933146e-05
mentions {
  text {
    content: "london metroldn timeoutlondon lumierelondon  lightfestival  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos"
type: WORK_OF_ART
salience: 3.375071901245974e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photographer"
type: PERSON
salience: 3.373010622453876e-05
mentions {
  text {
    content: "photographer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photographer"
type: PERSON
salience: 3.373010622453876e-05
mentions {
  text {
    content: "photographer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 3.372543505975045e-05
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo"
type: WORK_OF_ART
salience: 3.37234596372582e-05
mentions {
  text {
    content: "photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin photo"
type: WORK_OF_ART
salience: 3.37234596372582e-05
mentions {
  text {
    content: "child hood collectif coin photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.3707168768160045e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.36764169333037e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.36764169333037e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.366907549207099e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "things"
type: OTHER
salience: 3.366578675922938e-05
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 3.362928327987902e-05
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transform experience"
type: OTHER
salience: 3.361524431966245e-05
mentions {
  text {
    content: "transform experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transform experience"
type: OTHER
salience: 3.360167102073319e-05
mentions {
  text {
    content: "transform experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "charellemarr"
type: OTHER
salience: 3.358853064128198e-05
mentions {
  text {
    content: "charellemarr"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: WORK_OF_ART
salience: 3.3576998248463497e-05
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.3552671084180474e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium lumierelondon"
type: PERSON
salience: 3.353716601850465e-05
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wave"
type: OTHER
salience: 3.35192889906466e-05
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave"
type: OTHER
salience: 3.35192889906466e-05
mentions {
  text {
    content: "wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.351870327605866e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "blue wave king cross photography"
type: WORK_OF_ART
salience: 3.349753387738019e-05
mentions {
  text {
    content: "blue wave king cross  photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "intentions check installations"
type: OTHER
salience: 3.349133476149291e-05
mentions {
  text {
    content: "intentions check  installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.347740857861936e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium fish"
type: OTHER
salience: 3.3452259231125936e-05
mentions {
  text {
    content: "aquarium fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.3363121474394575e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.33497446263209e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.332484993734397e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.33090647473e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.330139588797465e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 3.3232015994144604e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht ilyasayub_photo"
type: ORGANIZATION
salience: 3.313600973342545e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht   ilyasayub_photo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "phone box favourite"
type: OTHER
salience: 3.313479101052508e-05
mentions {
  text {
    content: "phone box favourite"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumierelondon2018 visitlondon"
type: ORGANIZATION
salience: 3.311713953735307e-05
mentions {
  text {
    content: "lumierelondon lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "worry works"
type: WORK_OF_ART
salience: 3.310641841380857e-05
mentions {
  text {
    content: "worry works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowd"
type: PERSON
salience: 3.30939692503307e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "favourites"
type: OTHER
salience: 3.3075015380745754e-05
mentions {
  text {
    content: "favourites"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.304622805444524e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary square"
type: OTHER
salience: 3.3040014386642724e-05
mentions {
  text {
    content: "granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "berkeley square"
type: OTHER
salience: 3.302787081338465e-05
mentions {
  text {
    content: "berkeley square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.301555261714384e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sea granary square"
type: OTHER
salience: 3.298265437479131e-05
mentions {
  text {
    content: "sea granary square"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.2958767405943945e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.2958767405943945e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 3.2958767405943945e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowd"
type: PERSON
salience: 3.293559711892158e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mattcooperphoto letsyogalondon regram theladytravels"
type: OTHER
salience: 3.291718167020008e-05
mentions {
  text {
    content: "mattcooperphoto letsyogalondon regram  theladytravels"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "mattcooperphoto letsyogalondon regram"
    begin_offset: -1
  }
  type: PROPER
}
, name: "reflectors"
type: PERSON
salience: 3.290505992481485e-05
mentions {
  text {
    content: "reflectors"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stop"
type: LOCATION
salience: 3.2838204788276926e-05
mentions {
  text {
    content: "stop"
    begin_offset: -1
  }
  type: COMMON
}
, name: "newwestend"
type: PERSON
salience: 3.2815540180308744e-05
mentions {
  text {
    content: "newwestend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ray catcher"
type: PERSON
salience: 3.281051976955496e-05
mentions {
  text {
    content: "ray catcher"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank"
type: LOCATION
salience: 3.2807245588628575e-05
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbanklondon"
type: PERSON
salience: 3.279969314462505e-05
mentions {
  text {
    content: "southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "newwestend"
type: PERSON
salience: 3.278185613453388e-05
mentions {
  text {
    content: "newwestend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "newwestend"
type: PERSON
salience: 3.278185613453388e-05
mentions {
  text {
    content: "newwestend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank"
type: ORGANIZATION
salience: 3.277785799582489e-05
mentions {
  text {
    content: "southbank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa catch"
type: OTHER
salience: 3.2694464607629925e-05
mentions {
  text {
    content: "pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ron haselden"
type: PERSON
metadata {
  key: "mid"
  value: "/m/0262c6j"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Ron_Haselden"
}
salience: 3.267275678808801e-05
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ron haselden"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag biuk"
type: ORGANIZATION
salience: 3.261885285610333e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wabbey lumierelondon2018 visitlondon"
type: ORGANIZATION
salience: 3.256629497627728e-05
mentions {
  text {
    content: "wabbey lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "wabbey lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "southbanklondon"
type: ORGANIZATION
salience: 3.249861765652895e-05
mentions {
  text {
    content: "southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatown amp southbank"
type: ORGANIZATION
salience: 3.248919892939739e-05
mentions {
  text {
    content: "chinatown amp southbank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbanklondon"
type: OTHER
salience: 3.247101267334074e-05
mentions {
  text {
    content: "southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 3.2456231565447524e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 3.22914456774015e-05
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aworks"
type: OTHER
salience: 3.2280080631608143e-05
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colour timeout"
type: OTHER
salience: 3.227668275940232e-05
mentions {
  text {
    content: "colour timeout"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag electricpedals"
type: ORGANIZATION
salience: 3.225278851459734e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  electricpedals"
    begin_offset: -1
  }
  type: PROPER
}
, name: "music"
type: WORK_OF_ART
salience: 3.225266118533909e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thank"
type: OTHER
salience: 3.217080302420072e-05
mentions {
  text {
    content: "thank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
type: ORGANIZATION
salience: 3.214576281607151e-05
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust wrap"
type: OTHER
salience: 3.211614239262417e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street traffic"
type: OTHER
salience: 3.210709473933093e-05
mentions {
  text {
    content: "regent street traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 3.209353963029571e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street traffic"
type: OTHER
salience: 3.20912768074777e-05
mentions {
  text {
    content: "regent street traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street traffic"
type: OTHER
salience: 3.20912768074777e-05
mentions {
  text {
    content: "regent street traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust"
type: ORGANIZATION
salience: 3.2054114853963256e-05
mentions {
  text {
    content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "redbridgelive umbrellaproject thisisredbridge mylocalculture aichoketrust"
type: PERSON
salience: 3.202779407729395e-05
mentions {
  text {
    content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "traffic"
type: OTHER
salience: 3.20271028613206e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hats"
type: OTHER
salience: 3.2010622817324474e-05
mentions {
  text {
    content: "hats"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winterlights yourcanarywharf thegl0betrotter westminster abbey"
type: LOCATION
salience: 3.200943683623336e-05
mentions {
  text {
    content: "winterlights yourcanarywharf  thegl0betrotter westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "traffic"
type: OTHER
salience: 3.200165519956499e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wrap"
type: OTHER
salience: 3.1996787583921105e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street pa"
type: LOCATION
salience: 3.1994033633964136e-05
mentions {
  text {
    content: "regent street pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 3.198002013959922e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon staing"
type: OTHER
salience: 3.196897159796208e-05
mentions {
  text {
    content: "mayoroflondon staing"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 3.1967552786227316e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight"
type: OTHER
salience: 3.189224662492052e-05
mentions {
  text {
    content: "highlight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium westminster abbey"
type: LOCATION
salience: 3.188601112924516e-05
mentions {
  text {
    content: "\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "frictions regent street standing water"
type: OTHER
salience: 3.186553294654004e-05
mentions {
  text {
    content: "frictions regent street standing water"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 3.173874574713409e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "totastemaker lumiere marshalljulius london leicester square"
type: ORGANIZATION
salience: 3.169260889990255e-05
mentions {
  text {
    content: "totastemaker lumiere  marshalljulius london leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "treat"
type: CONSUMER_GOOD
salience: 3.1661758839618415e-05
mentions {
  text {
    content: "treat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stations"
type: ORGANIZATION
salience: 3.160972482874058e-05
mentions {
  text {
    content: "stations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 3.154625665047206e-05
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "life borrower king cross"
type: OTHER
salience: 3.154340083710849e-05
mentions {
  text {
    content: "life borrower king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street"
type: LOCATION
salience: 3.153871148242615e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street"
type: LOCATION
salience: 3.153131183353253e-05
mentions {
  text {
    content: "regent street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tubes"
type: OTHER
salience: 3.1510237022303045e-05
mentions {
  text {
    content: "tubes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jubilee line baker street"
type: LOCATION
salience: 3.1509935070062056e-05
mentions {
  text {
    content: "jubilee line baker street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roaming streets"
type: LOCATION
salience: 3.147676034132019e-05
mentions {
  text {
    content: "roaming streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets"
type: LOCATION
salience: 3.147676034132019e-05
mentions {
  text {
    content: "streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street"
type: LOCATION
salience: 3.131608900730498e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chandeliers"
type: OTHER
salience: 3.127097079413943e-05
mentions {
  text {
    content: "chandeliers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chandeliers"
type: OTHER
salience: 3.127097079413943e-05
mentions {
  text {
    content: "chandeliers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street"
type: LOCATION
salience: 3.121679765172303e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shopping guide"
type: WORK_OF_ART
salience: 3.1214287446346134e-05
mentions {
  text {
    content: "shopping guide"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 3.120856126770377e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street"
type: LOCATION
salience: 3.1208157452056184e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ici themayfairhotel"
type: OTHER
salience: 3.119649409200065e-05
mentions {
  text {
    content: "ici   themayfairhotel"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "par"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank pa city stars"
type: LOCATION
salience: 3.11946241708938e-05
mentions {
  text {
    content: "south bank pa  city stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 3.1187442800728604e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 3.117891901638359e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 3.1175597541732714e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 3.116808511549607e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 3.114699575235136e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frictions lumierelondon fox"
type: OTHER
salience: 3.111071418970823e-05
mentions {
  text {
    content: "frictions  lumierelondon fox"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 3.106752774328925e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 3.102577102254145e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 3.0988172511570156e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pattenden couesy aichoke aists rainbow lumierelondon"
type: PERSON
salience: 3.0977316782809794e-05
mentions {
  text {
    content: "pattenden couesy aichoke aists rainbow lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 3.0959890864323825e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 3.0949446227168664e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirits"
type: OTHER
salience: 3.0944891477702186e-05
mentions {
  text {
    content: "spirits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: WORK_OF_ART
salience: 3.0925766623113304e-05
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "exhibits"
type: OTHER
salience: 3.0921401048544794e-05
mentions {
  text {
    content: "exhibits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videography musicvideo zacdenman badgerust fox amp badger stars"
type: ORGANIZATION
salience: 3.091974213020876e-05
mentions {
  text {
    content: "videography musicvideo zacdenman  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.09142233163584e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 3.091033795499243e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 3.090952304773964e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: OTHER
salience: 3.0903025617590174e-05
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.0903025617590174e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.0903025617590174e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 3.090116661041975e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.08975504594855e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 3.089220990659669e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 3.088346420554444e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 3.088346420554444e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo"
type: WORK_OF_ART
salience: 3.087130608037114e-05
mentions {
  text {
    content: "photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.086626747972332e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.086129800067283e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.086129800067283e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 3.085727439611219e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 3.085639400524087e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo"
type: WORK_OF_ART
salience: 3.085639400524087e-05
mentions {
  text {
    content: "photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo"
type: WORK_OF_ART
salience: 3.085639400524087e-05
mentions {
  text {
    content: "photo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 3.08563576254528e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 3.0850034818286076e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dubai"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01f08r"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Dubai"
}
salience: 3.082515104324557e-05
mentions {
  text {
    content: "dubai"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "ductack theatre"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mason window display"
type: OTHER
salience: 3.0815797799732536e-05
mentions {
  text {
    content: "mason window display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "displays"
type: OTHER
salience: 3.080931128351949e-05
mentions {
  text {
    content: "displays"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox"
type: OTHER
salience: 3.077935252804309e-05
mentions {
  text {
    content: "fox"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.077164728892967e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 3.076385473832488e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.075220956816338e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 3.0743121897103265e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 3.0743121897103265e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 3.0743121897103265e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.073373591178097e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "something"
type: OTHER
salience: 3.073147308896296e-05
mentions {
  text {
    content: "something"
    begin_offset: -1
  }
  type: COMMON
}
, name: "phone box"
type: OTHER
salience: 3.0726259865332395e-05
mentions {
  text {
    content: "phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish phone box"
type: OTHER
salience: 3.0719318601768464e-05
mentions {
  text {
    content: "fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.071613173233345e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "red telephone box"
type: CONSUMER_GOOD
salience: 3.0712501029483974e-05
mentions {
  text {
    content: "red telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0683229852002114e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0683229852002114e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0683229852002114e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "red telephone box"
type: CONSUMER_GOOD
salience: 3.0674022127641365e-05
mentions {
  text {
    content: "red telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0667804821860045e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0667804821860045e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0667804821860045e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayfair"
type: EVENT
salience: 3.0663675715913996e-05
mentions {
  text {
    content: "mayfair"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0652994610136375e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0652994610136375e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0652994610136375e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 3.0638748285127804e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "awork entre les rangs _kanva behindthescenes jmrobes343jmr"
type: WORK_OF_ART
salience: 3.063468466280028e-05
mentions {
  text {
    content: "awork entre les rangs _kanva behindthescenes jmrobes343jmr"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "awork entre les rangs _kanva behindthescenes"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "awork entre les rangs _kanva"
    begin_offset: -1
  }
  type: PROPER
}
, name: "miss"
type: OTHER
salience: 3.062226824113168e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon woxxy lumiere lumierelondon lumierelondon2018"
type: ORGANIZATION
salience: 3.054267290281132e-05
mentions {
  text {
    content: "lumierelondon   woxxy lumiere lumierelondon  lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "care"
type: OTHER
salience: 3.053424370591529e-05
mentions {
  text {
    content: "care"
    begin_offset: -1
  }
  type: COMMON
}
, name: "description"
type: OTHER
salience: 3.0524675821652636e-05
mentions {
  text {
    content: "description"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "description"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere rudie1750 lumierelondon2018"
type: ORGANIZATION
salience: 3.0520324798999354e-05
mentions {
  text {
    content: "london lumiere rudie1750  lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "quocatron lumiere lumierelondon lumiere2018"
type: ORGANIZATION
salience: 3.0485833121929318e-05
mentions {
  text {
    content: "quocatron lumiere  lumierelondon lumiere2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "works"
type: WORK_OF_ART
salience: 3.048078724532388e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 3.048078724532388e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "haya luz segunda edici\303\263n del festival de luces en londres lumierelondon"
type: PERSON
salience: 3.0472887374344282e-05
mentions {
  text {
    content: "haya luz segunda edici\303\263n del festival de luces en londres  lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fish phone box"
type: OTHER
salience: 3.046251913474407e-05
mentions {
  text {
    content: "fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht granarysquare kingscross lumierelondon"
type: PERSON
salience: 3.0454277293756604e-05
mentions {
  text {
    content: "waterlicht granarysquare kingscross  lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fish phone box"
type: OTHER
salience: 3.0426777811953798e-05
mentions {
  text {
    content: "fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beasts"
type: OTHER
salience: 3.0418357710004784e-05
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "illuminatedriv fish phone box"
type: CONSUMER_GOOD
salience: 3.0418357710004784e-05
mentions {
  text {
    content: "illuminatedriv fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 3.041724812646862e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience lovelondon fish phone box"
type: CONSUMER_GOOD
salience: 3.0410123144974932e-05
mentions {
  text {
    content: "experience  lovelondon fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "phone box"
type: CONSUMER_GOOD
salience: 3.0410123144974932e-05
mentions {
  text {
    content: "phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: OTHER
salience: 3.0393635825021192e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave pa exhibition"
type: EVENT
salience: 3.0283224987215362e-05
mentions {
  text {
    content: "wave pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon2018 lumiere"
type: LOCATION
salience: 3.0244289519032463e-05
mentions {
  text {
    content: "london lumierelondon2018  lumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "women"
type: PERSON
salience: 3.014941103174351e-05
mentions {
  text {
    content: "women"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: EVENT
salience: 3.007700252055656e-05
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "moon water jd southbanklondon"
type: ORGANIZATION
salience: 2.9994182114023715e-05
mentions {
  text {
    content: "moon water jd  southbanklondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: EVENT
salience: 2.995766408275813e-05
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guide rossbolwill aquarium telephone box"
type: CONSUMER_GOOD
salience: 2.9867478588130325e-05
mentions {
  text {
    content: "guide  rossbolwill  aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "exitmagazine maxcoopermax"
type: EVENT
salience: 2.9769606044283137e-05
mentions {
  text {
    content: "exitmagazine  maxcoopermax"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "youtube london light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videoproduction zacvideo studiosession"
type: ORGANIZATION
salience: 2.9685808840440586e-05
mentions {
  text {
    content: "videoproduction zacvideo studiosession"
    begin_offset: -1
  }
  type: PROPER
}
, name: "soho"
type: OTHER
salience: 2.9651877412106842e-05
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 2.9645178074133582e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnabylondon"
type: OTHER
salience: 2.961866994155571e-05
mentions {
  text {
    content: "carnabylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.958073491754476e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.9574905056506395e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "field flower"
type: OTHER
salience: 2.948176370409783e-05
mentions {
  text {
    content: "field flower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.937676981673576e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 2.9352482670219615e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 2.9336175430216826e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.9326241929084063e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.9326241929084063e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 2.9325703508220613e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 2.9325703508220613e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traffic"
type: OTHER
salience: 2.9325703508220613e-05
mentions {
  text {
    content: "traffic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.9318474844330922e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain king cross"
type: OTHER
salience: 2.9252998501760885e-05
mentions {
  text {
    content: "rain king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere experience king cross"
type: OTHER
salience: 2.9220534997875802e-05
mentions {
  text {
    content: "lumiere experience king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aist"
type: PERSON
salience: 2.910609146056231e-05
mentions {
  text {
    content: "aist"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag chrisschorah"
type: ORGANIZATION
salience: 2.9103124688845128e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  chrisschorah"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aists"
type: PERSON
salience: 2.9073496989440173e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "merrypranksters engcathedrals"
type: PERSON
salience: 2.9068978619761765e-05
mentions {
  text {
    content: "merrypranksters   engcathedrals"
    begin_offset: -1
  }
  type: PROPER
}
, name: "sights"
type: OTHER
salience: 2.9053629987174645e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon visitlondon tflbusales"
type: OTHER
salience: 2.898275852203369e-05
mentions {
  text {
    content: "lumierelondon visitlondon  tflbusales"
    begin_offset: -1
  }
  type: PROPER
}
, name: "street"
type: LOCATION
salience: 2.885397225327324e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bond street"
type: LOCATION
salience: 2.884320383600425e-05
mentions {
  text {
    content: "bond street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street"
type: LOCATION
salience: 2.8832755560870282e-05
mentions {
  text {
    content: "regent street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street"
type: LOCATION
salience: 2.8827646019635722e-05
mentions {
  text {
    content: "street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jubilee line baker street"
type: LOCATION
salience: 2.8822609237977304e-05
mentions {
  text {
    content: "jubilee line baker street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "earlham street"
type: LOCATION
salience: 2.8780272259609774e-05
mentions {
  text {
    content: "earlham street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 2.8715789085254073e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 2.8702928830171004e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 2.8702928830171004e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world"
type: LOCATION
salience: 2.864319867512677e-05
mentions {
  text {
    content: "world"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nandosuk badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.8551319701364264e-05
mentions {
  text {
    content: "nandosuk   badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.8545868190121837e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 2.8540500352391973e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 2.8540500352391973e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.853000842151232e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "voyage badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.852487887139432e-05
mentions {
  text {
    content: "voyage  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumiere badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.852487887139432e-05
mentions {
  text {
    content: "lumierelondon lumiere   badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: PERSON
salience: 2.852487887139432e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 2.8514839868876152e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 2.8514839868876152e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 2.8509928597486578e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 2.8509928597486578e-05
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.8505084628704935e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: PERSON
salience: 2.8500309781520627e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "someone"
type: PERSON
salience: 2.8491234843386337e-05
mentions {
  text {
    content: "someone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.8486361770774238e-05
mentions {
  text {
    content: "lumierelondon  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 2.8477366868173704e-05
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fox amp badger stars"
type: ORGANIZATION
salience: 2.84729539998807e-05
mentions {
  text {
    content: "fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8455791834858246e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flower"
type: OTHER
salience: 2.8412254323484376e-05
mentions {
  text {
    content: "flower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 2.839989792846609e-05
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon bikes reflection rain"
type: OTHER
salience: 2.8344933525659144e-05
mentions {
  text {
    content: "neon bikes reflection rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8310359994065948e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8310359994065948e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8303842555033043e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8297446988290176e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8291166017879732e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxfordcircus"
type: PERSON
salience: 2.8291166017879732e-05
mentions {
  text {
    content: "oxfordcircus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8291166017879732e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.828499964380171e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.828499964380171e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.828499964380171e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.828499964380171e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.828499964380171e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.82789405900985e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rainfall"
type: OTHER
salience: 2.8272987037780695e-05
mentions {
  text {
    content: "rainfall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8267135348869488e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light spirit"
type: OTHER
salience: 2.826531999744475e-05
mentions {
  text {
    content: "light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.826138006639667e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8254929929971695e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8254929929971695e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8254929929971695e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8250153263797984e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8244674467714503e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 2.8220001695444807e-05
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.821624730131589e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.821624730131589e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "displays"
type: OTHER
salience: 2.821485213644337e-05
mentions {
  text {
    content: "displays"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.819842666212935e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "displays"
type: OTHER
salience: 2.819499422912486e-05
mentions {
  text {
    content: "displays"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8181484594824724e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light spirit"
type: OTHER
salience: 2.8181484594824724e-05
mentions {
  text {
    content: "light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.8181484594824724e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 2.8173319151392207e-05
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light spirit"
type: OTHER
salience: 2.8173319151392207e-05
mentions {
  text {
    content: "light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.8127460609539412e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london rain"
type: OTHER
salience: 2.8117119654780254e-05
mentions {
  text {
    content: "london rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street alberich rossbolwill aquarium telephone box"
type: OTHER
salience: 2.8093178116250783e-05
mentions {
  text {
    content: "regent street alberich   rossbolwill  aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "japan"
type: LOCATION
salience: 2.8089618353988044e-05
mentions {
  text {
    content: "japan"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "japan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "evening rain"
type: OTHER
salience: 2.80052081507165e-05
mentions {
  text {
    content: "evening rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.7997946745017543e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon visitlondon trafalgar"
type: LOCATION
salience: 2.7931690055993386e-05
mentions {
  text {
    content: "lumierelondon  visitlondon trafalgar"
    begin_offset: -1
  }
  type: PROPER
}
, name: "theltda tonyqpr123 lumierelondon"
type: PERSON
salience: 2.7917019906453788e-05
mentions {
  text {
    content: "theltda tonyqpr123 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos"
type: WORK_OF_ART
salience: 2.790253347484395e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierefestival lumierelondon lumiere lumierelondon2018"
type: PERSON
salience: 2.79017385764746e-05
mentions {
  text {
    content: "lumierefestival  lumierelondon lumiere lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
type: PERSON
salience: 2.7896794563275762e-05
mentions {
  text {
    content: "lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth"
    begin_offset: -1
  }
  type: PROPER
}
, name: "granarysquare"
type: OTHER
salience: 2.788517485896591e-05
mentions {
  text {
    content: "granarysquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumierelondon2018 visitlondon robbrown678 lumierelondon"
type: PERSON
salience: 2.788237907225266e-05
mentions {
  text {
    content: "lumierelondon lumierelondon2018  visitlondon  robbrown678 lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "benoit deseille lumierelondon2018"
type: PERSON
salience: 2.7855265216203406e-05
mentions {
  text {
    content: "benoit deseille lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visit website"
type: OTHER
salience: 2.781101102300454e-05
mentions {
  text {
    content: "visit website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 2.7751302695833147e-05
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlight"
type: EVENT
salience: 2.7704916647053324e-05
mentions {
  text {
    content: "highlight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pics"
type: WORK_OF_ART
salience: 2.7662379579851404e-05
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "victoriabid greypointe cubitt"
type: PERSON
salience: 2.7638463507173583e-05
mentions {
  text {
    content: "victoriabid  greypointe  cubitt"
    begin_offset: -1
  }
  type: PROPER
}
, name: "canonukandie visitlondon aichoketrust southbanklondon jakubkrupa"
type: ORGANIZATION
salience: 2.7638463507173583e-05
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon  jakubkrupa"
    begin_offset: -1
  }
  type: PROPER
}
, name: "rain"
type: OTHER
salience: 2.759673043328803e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.7579300876823254e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.7575182684813626e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treat rain"
type: OTHER
salience: 2.7573685656534508e-05
mentions {
  text {
    content: "treat  rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.756735193543136e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.7546151613933034e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.7546151613933034e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 2.7545438570086844e-05
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.754063461907208e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.75352067546919e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonislovinit thelondoneye lovelondon visitlondon londoneye thebroadwaysw1"
type: ORGANIZATION
salience: 2.750077510427218e-05
mentions {
  text {
    content: "londonislovinit thelondoneye lovelondon visitlondon londoneye   thebroadwaysw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "treasure hunt"
type: EVENT
salience: 2.749980012595188e-05
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "snow amp rain"
type: OTHER
salience: 2.7345953640178777e-05
mentions {
  text {
    content: "snow amp rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shots"
type: OTHER
salience: 2.7301912268740125e-05
mentions {
  text {
    content: "shots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "walkers"
type: CONSUMER_GOOD
salience: 2.7271336875855923e-05
mentions {
  text {
    content: "walkers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: OTHER
salience: 2.7271336875855923e-05
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "50 aists edgillwhl"
type: PERSON
salience: 2.7266984034213237e-05
mentions {
  text {
    content: "50 aists  edgillwhl"
    begin_offset: -1
  }
  type: PROPER
}
, name: "walk"
type: EVENT
salience: 2.7257045076112263e-05
mentions {
  text {
    content: "walk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nofilters"
type: PERSON
salience: 2.7243342628935352e-05
mentions {
  text {
    content: "nofilters"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 2.7217529350309633e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon westminsterabbey"
type: OTHER
metadata {
  key: "mid"
  value: "/m/0bvqq"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Westminster_Abbey"
}
salience: 2.7213394787395373e-05
mentions {
  text {
    content: "westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "everyone"
type: PERSON
salience: 2.7205340302316472e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "capital"
type: LOCATION
salience: 2.7205340302316472e-05
mentions {
  text {
    content: "capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 2.7182231860933825e-05
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city streets"
type: LOCATION
salience: 2.718043833738193e-05
mentions {
  text {
    content: "city streets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.716063136176672e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thisislondon lumierelondon travel culturetrip londonphotography stillnojob hireme thebroadwaysw1"
type: LOCATION
salience: 2.706417035369668e-05
mentions {
  text {
    content: "thisislondon  lumierelondon travel culturetrip londonphotography stillnojob hireme  thebroadwaysw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fish phonebox aquarium"
type: OTHER
salience: 2.7056266844738275e-05
mentions {
  text {
    content: "fish phonebox aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 2.7052075893152505e-05
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag thebroadwaysw1"
type: ORGANIZATION
salience: 2.7035179300582968e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  thebroadwaysw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "details"
type: OTHER
salience: 2.6989260732079856e-05
mentions {
  text {
    content: "details"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aists"
type: PERSON
salience: 2.6877571144723333e-05
mentions {
  text {
    content: "aists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 2.6862089725909755e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "camera"
type: CONSUMER_GOOD
salience: 2.6809992050402798e-05
mentions {
  text {
    content: "camera"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thanks"
type: OTHER
salience: 2.678380587894935e-05
mentions {
  text {
    content: "thanks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "camera"
type: CONSUMER_GOOD
salience: 2.6776962840813212e-05
mentions {
  text {
    content: "camera"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case study events management students"
type: PERSON
salience: 2.676162330317311e-05
mentions {
  text {
    content: "case study events management students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "communities"
type: PERSON
salience: 2.676162330317311e-05
mentions {
  text {
    content: "communities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "students"
type: PERSON
salience: 2.676162330317311e-05
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank king cross"
type: OTHER
salience: 2.674000097613316e-05
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "need suppo"
type: PERSON
salience: 2.671858783287462e-05
mentions {
  text {
    content: "need suppo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ballerinas"
type: PERSON
salience: 2.668224806257058e-05
mentions {
  text {
    content: "ballerinas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "commission"
type: ORGANIZATION
salience: 2.664881685632281e-05
mentions {
  text {
    content: "commission"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.6569039619062096e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave brightnights"
type: OTHER
salience: 2.6557499950286e-05
mentions {
  text {
    content: "wave brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish check phone box check"
type: OTHER
salience: 2.6473264369997196e-05
mentions {
  text {
    content: "fish check phone box check"
    begin_offset: -1
  }
  type: COMMON
}
, name: "look"
type: OTHER
salience: 2.642769322847016e-05
mentions {
  text {
    content: "look"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lovelondon visitlondon"
type: ORGANIZATION
salience: 2.637267971294932e-05
mentions {
  text {
    content: "lovelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "road closures"
type: EVENT
salience: 2.6283571060048416e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 2.624497574288398e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxford street"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01hc94"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Oxford_Street"
}
salience: 2.6217190679744817e-05
mentions {
  text {
    content: "oxford street"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "oxford street"
    begin_offset: -1
  }
  type: PROPER
}
, name: "scenes"
type: OTHER
salience: 2.618610415083822e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 2.618610415083822e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ballet rambe projection"
type: OTHER
salience: 2.6154471925110556e-05
mentions {
  text {
    content: "ballet rambe projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster westminsterabbey"
type: LOCATION
salience: 2.613645301607903e-05
mentions {
  text {
    content: "westminster westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "miss"
type: PERSON
salience: 2.613368815218564e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: PERSON
salience: 2.613368815218564e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxford street wabbey stas"
type: PERSON
salience: 2.6122717827092856e-05
mentions {
  text {
    content: "oxford street  wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
, name: "go"
type: OTHER
salience: 2.6103685740963556e-05
mentions {
  text {
    content: "go"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumierelondon2018 leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
type: ORGANIZATION
salience: 2.6059613446705043e-05
mentions {
  text {
    content: "lumierelondon  lumierelondon2018  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayor"
type: PERSON
salience: 2.6041208911919966e-05
mentions {
  text {
    content: "mayor"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: EVENT
salience: 2.603510074550286e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 2.6028572392533533e-05
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "project"
type: OTHER
salience: 2.6025234546978027e-05
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire"
type: OTHER
salience: 2.6023752070614137e-05
mentions {
  text {
    content: "spire"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.6022880774689838e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.6022880774689838e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.601122650958132e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 2.601122650958132e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirits"
type: OTHER
salience: 2.6000692741945386e-05
mentions {
  text {
    content: "spirits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: PERSON
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.5997358534368686e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 2.5983841624110937e-05
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 2.597507045720704e-05
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "projection"
type: OTHER
salience: 2.5948043912649155e-05
mentions {
  text {
    content: "projection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "host"
type: PERSON
salience: 2.5947192625608295e-05
mentions {
  text {
    content: "host"
    begin_offset: -1
  }
  type: COMMON
}
, name: "peek"
type: OTHER
salience: 2.5930285119102336e-05
mentions {
  text {
    content: "peek"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.590162148408126e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.5878332962747663e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rains"
type: OTHER
salience: 2.5869479941320606e-05
mentions {
  text {
    content: "rains"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain"
type: OTHER
salience: 2.5869479941320606e-05
mentions {
  text {
    content: "rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rains"
type: OTHER
salience: 2.5869479941320606e-05
mentions {
  text {
    content: "rains"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leicestersquare aichoketrust"
type: ORGANIZATION
salience: 2.5868172087939456e-05
mentions {
  text {
    content: "leicestersquare aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust visitlondon rain"
type: OTHER
salience: 2.5856650609057397e-05
mentions {
  text {
    content: "aichoketrust visitlondon rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "host"
type: PERSON
salience: 2.5855411877273582e-05
mentions {
  text {
    content: "host"
    begin_offset: -1
  }
  type: COMMON
}
, name: "host"
type: PERSON
salience: 2.5855411877273582e-05
mentions {
  text {
    content: "host"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.5841976821538992e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.5741635909071192e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 2.556842446210794e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 2.5563798772054724e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street gardens"
type: LOCATION
salience: 2.5528763217153028e-05
mentions {
  text {
    content: "street gardens"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: OTHER
salience: 2.5523728254484013e-05
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granary"
type: OTHER
salience: 2.5512608772260137e-05
mentions {
  text {
    content: "granary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granarysquare"
type: OTHER
salience: 2.5476681912550703e-05
mentions {
  text {
    content: "granarysquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "producer director cameraman promo coaching music video"
type: WORK_OF_ART
salience: 2.5294115403085016e-05
mentions {
  text {
    content: "producer director cameraman promo coaching music video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 2.5294115403085016e-05
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 2.5286035452154465e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 2.524360388633795e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "patrice warrener wave veigo"
type: PERSON
salience: 2.5234947315766476e-05
mentions {
  text {
    content: "patrice warrener wave veigo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "people"
type: PERSON
salience: 2.5227816877304576e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mariana"
type: LOCATION
salience: 2.5205921701854095e-05
mentions {
  text {
    content: "mariana"
    begin_offset: -1
  }
  type: PROPER
}
, name: "circus"
type: OTHER
salience: 2.5165270926663652e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus"
type: PERSON
salience: 2.5153793103527278e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus"
type: OTHER
salience: 2.5142728190985508e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus"
type: OTHER
salience: 2.5126848413492553e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hat video"
type: WORK_OF_ART
salience: 2.509733894839883e-05
mentions {
  text {
    content: "hat video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "patrice warrener westminsterabbey"
type: PERSON
salience: 2.5070030460483395e-05
mentions {
  text {
    content: "patrice warrener  westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "stop"
type: LOCATION
salience: 2.5039955289685167e-05
mentions {
  text {
    content: "stop"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgarsquare"
type: OTHER
salience: 2.5004746930790134e-05
mentions {
  text {
    content: "trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "landscape"
type: OTHER
salience: 2.4988485165522434e-05
mentions {
  text {
    content: "landscape"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp culture"
type: OTHER
salience: 2.496568595233839e-05
mentions {
  text {
    content: "amp culture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "calls"
type: OTHER
salience: 2.495489752618596e-05
mentions {
  text {
    content: "calls"
    begin_offset: -1
  }
  type: COMMON
}
, name: "newwestend"
type: PERSON
salience: 2.495489752618596e-05
mentions {
  text {
    content: "newwestend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust kingscrossn1c"
type: PERSON
salience: 2.4949729777290486e-05
mentions {
  text {
    content: "aichoketrust  kingscrossn1c"
    begin_offset: -1
  }
  type: PROPER
}
, name: "circus"
type: OTHER
salience: 2.492852945579216e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus"
type: OTHER
salience: 2.490735460014548e-05
mentions {
  text {
    content: "circus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighta kingsx"
type: PERSON
salience: 2.4719129214645363e-05
mentions {
  text {
    content: "lighta kingsx"
    begin_offset: -1
  }
  type: PROPER
}
, name: "ken kesey"
type: PERSON
metadata {
  key: "mid"
  value: "/m/04dhm"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Ken_Kesey"
}
salience: 2.468217098794412e-05
mentions {
  text {
    content: "ken kesey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "cities"
type: LOCATION
salience: 2.465131001372356e-05
mentions {
  text {
    content: "cities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn_culture loveldnlovecul aichoketrust justin_venn lumierelondon2018 lumierelondon ilyasayub_photo"
type: PERSON
salience: 2.458805829519406e-05
mentions {
  text {
    content: "ldn_culture loveldnlovecul aichoketrust  justin_venn  lumierelondon2018 lumierelondon  ilyasayub_photo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
type: ORGANIZATION
salience: 2.4556722564739175e-05
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thank"
type: OTHER
salience: 2.453025444992818e-05
mentions {
  text {
    content: "thank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound"
type: OTHER
salience: 2.446664984745439e-05
mentions {
  text {
    content: "sound"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spaces"
type: LOCATION
salience: 2.446664984745439e-05
mentions {
  text {
    content: "spaces"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winterlights"
type: EVENT
salience: 2.4450360797345638e-05
mentions {
  text {
    content: "winterlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "use"
type: OTHER
salience: 2.4450360797345638e-05
mentions {
  text {
    content: "use"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 2.442023833282292e-05
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingo animatronics"
type: OTHER
salience: 2.442023833282292e-05
mentions {
  text {
    content: "flamingo animatronics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatownlondon"
type: LOCATION
salience: 2.4414972358499654e-05
mentions {
  text {
    content: "chinatownlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights amp sounds"
type: OTHER
salience: 2.4392889827140607e-05
mentions {
  text {
    content: "sights amp sounds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city tour"
type: EVENT
salience: 2.4392889827140607e-05
mentions {
  text {
    content: "city tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere lumierelondon thisislondon westminster abbey"
type: LOCATION
salience: 2.438715637254063e-05
mentions {
  text {
    content: "lumiere  lumierelondon thisislondon westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "animals"
type: OTHER
salience: 2.4380105969612487e-05
mentions {
  text {
    content: "animals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colour"
type: OTHER
salience: 2.4378970920224674e-05
mentions {
  text {
    content: "colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rainbow colours"
type: OTHER
salience: 2.4378970920224674e-05
mentions {
  text {
    content: "rainbow colours"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 2.4323344405274838e-05
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: OTHER
salience: 2.431318898743484e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: OTHER
salience: 2.431318898743484e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: PERSON
salience: 2.431318898743484e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: OTHER
salience: 2.431318898743484e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tourists"
type: PERSON
salience: 2.4303371901623905e-05
mentions {
  text {
    content: "tourists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "phone chinatown"
type: LOCATION
salience: 2.4250724891317077e-05
mentions {
  text {
    content: "phone chinatown"
    begin_offset: -1
  }
  type: COMMON
}
, name: "opp aquarium installation check"
type: OTHER
salience: 2.424098420306109e-05
mentions {
  text {
    content: "opp aquarium  installation check"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colour"
type: OTHER
salience: 2.4182465494959615e-05
mentions {
  text {
    content: "colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.4179566025850363e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granarysquare chinatownlondon"
type: LOCATION
salience: 2.4169228709070012e-05
mentions {
  text {
    content: "granarysquare   chinatownlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.4157086954801343e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.4151726393029094e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.4151726393029094e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.4151726393029094e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.413319452898577e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.413319452898577e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.4123119146679528e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.4123119146679528e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon road closures"
type: EVENT
salience: 2.410772503935732e-05
mentions {
  text {
    content: "lumierelondon  road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "meeting event liaison team"
type: ORGANIZATION
salience: 2.4043665689532645e-05
mentions {
  text {
    content: "meeting event liaison team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nohern lights pa exhibition"
type: EVENT
salience: 2.4032491637626663e-05
mentions {
  text {
    content: "nohern lights pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "exhibition"
type: EVENT
salience: 2.4006292733247392e-05
mentions {
  text {
    content: "exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trail"
type: LOCATION
salience: 2.3989676265046e-05
mentions {
  text {
    content: "trail"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.3978156605153345e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "project"
type: OTHER
salience: 2.3965742002474144e-05
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.3940750907058828e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leakestreet miss"
type: OTHER
salience: 2.39400706050219e-05
mentions {
  text {
    content: "leakestreet miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: OTHER
salience: 2.3936005163704976e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sliceofthecity umbrella project"
type: OTHER
salience: 2.3928036171128042e-05
mentions {
  text {
    content: "sliceofthecity umbrella project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 2.3920705643831752e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 2.3920705643831752e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sliceofthecity umbrella project"
type: OTHER
salience: 2.3916480131447315e-05
mentions {
  text {
    content: "sliceofthecity umbrella project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sliceofthecity umbrella project"
type: OTHER
salience: 2.3916480131447315e-05
mentions {
  text {
    content: "sliceofthecity umbrella project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture exhibition"
type: EVENT
salience: 2.3857142878114246e-05
mentions {
  text {
    content: "architecture exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bye london thisislondon"
type: ORGANIZATION
salience: 2.381104786763899e-05
mentions {
  text {
    content: "bye  london thisislondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "energy"
type: OTHER
salience: 2.381104786763899e-05
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road"
type: LOCATION
salience: 2.3805483579053544e-05
mentions {
  text {
    content: "cross road"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road"
type: LOCATION
salience: 2.3796985260560177e-05
mentions {
  text {
    content: "cross road"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road"
type: LOCATION
salience: 2.3796985260560177e-05
mentions {
  text {
    content: "cross road"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buildings"
type: LOCATION
salience: 2.3794289518264122e-05
mentions {
  text {
    content: "buildings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.3792828869773075e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin"
type: OTHER
salience: 2.3735548893455416e-05
mentions {
  text {
    content: "child hood collectif coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "head"
type: PERSON
salience: 2.372544076933991e-05
mentions {
  text {
    content: "head"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spectators"
type: PERSON
salience: 2.3710124878562056e-05
mentions {
  text {
    content: "spectators"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 2.3630720534129068e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folks"
type: PERSON
salience: 2.36149880947778e-05
mentions {
  text {
    content: "folks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street arches"
type: OTHER
salience: 2.3604960006196052e-05
mentions {
  text {
    content: "street arches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival aichoketrust"
type: ORGANIZATION
salience: 2.3603293811902404e-05
mentions {
  text {
    content: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "architecture"
type: OTHER
salience: 2.359054451517295e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 2.359054451517295e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.3483458789996803e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.347482404729817e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gt"
type: CONSUMER_GOOD
salience: 2.34697599807987e-05
mentions {
  text {
    content: "gt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa hope"
type: OTHER
salience: 2.3444150428986177e-05
mentions {
  text {
    content: "pa  hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.342787956877146e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 2.341380422876682e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 2.3407019398291595e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "architecture"
type: OTHER
salience: 2.3407019398291595e-05
mentions {
  text {
    content: "architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "order prints lumierelondon facade landmark architecture"
type: OTHER
salience: 2.3400392819894478e-05
mentions {
  text {
    content: "order prints lumierelondon facade landmark architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounity"
type: OTHER
salience: 2.3386710381601006e-05
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "oppounity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: EVENT
salience: 2.3349641196546145e-05
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.3279233573703095e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3239435904542916e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3233653337229043e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3233653337229043e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3227987185236998e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.322243199159857e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.322243199159857e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.322243199159857e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "set scene"
type: WORK_OF_ART
salience: 2.320540079381317e-05
mentions {
  text {
    content: "set scene"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 2.3174050511443056e-05
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion royal"
type: OTHER
salience: 2.3098857127479278e-05
mentions {
  text {
    content: "love motion royal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3058508304529823e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.305027737747878e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 2.3049055016599596e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "transforms"
type: EVENT
salience: 2.3042279281071387e-05
mentions {
  text {
    content: "transforms"
    begin_offset: -1
  }
  type: COMMON
}
, name: "perspective"
type: OTHER
salience: 2.3024673282634467e-05
mentions {
  text {
    content: "perspective"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.3010094082565047e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ideas"
type: OTHER
salience: 2.3010094082565047e-05
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.2999398424872197e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 2.2997352061793208e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.2984087991062552e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: OTHER
salience: 2.2984087991062552e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "travel find"
type: OTHER
salience: 2.297678292961791e-05
mentions {
  text {
    content: "travel find"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ideas"
type: OTHER
salience: 2.2974327293923125e-05
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 2.2953727238927968e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.284766742377542e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.284766742377542e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.284766742377542e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.2816388081992045e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.2816388081992045e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "share experience"
type: OTHER
salience: 2.280784428876359e-05
mentions {
  text {
    content: "share experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.2801978047937155e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.2788277419749647e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.2788277419749647e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.2781674488214776e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience"
type: OTHER
salience: 2.2770362193114124e-05
mentions {
  text {
    content: "experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "share experience"
type: OTHER
salience: 2.2751019059796818e-05
mentions {
  text {
    content: "share experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelightfestival lumierelightfestival2018 exitmagazine maxcoopermax"
type: ORGANIZATION
salience: 2.2740239728591405e-05
mentions {
  text {
    content: "london lumierelightfestival lumierelightfestival2018   exitmagazine  maxcoopermax"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thing"
type: OTHER
salience: 2.2704403818352148e-05
mentions {
  text {
    content: "thing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tracyemin"
type: LOCATION
salience: 2.2649075617664494e-05
mentions {
  text {
    content: "tracyemin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experiences"
type: OTHER
salience: 2.2630276362178847e-05
mentions {
  text {
    content: "experiences"
    begin_offset: -1
  }
  type: COMMON
}
, name: "everyone"
type: PERSON
salience: 2.262755879200995e-05
mentions {
  text {
    content: "everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish"
type: OTHER
salience: 2.255717117805034e-05
mentions {
  text {
    content: "fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
type: ORGANIZATION
salience: 2.2556521798833273e-05
mentions {
  text {
    content: "london  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fishes"
type: OTHER
salience: 2.2547068510903046e-05
mentions {
  text {
    content: "fishes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish"
type: OTHER
salience: 2.2523330699186772e-05
mentions {
  text {
    content: "fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish"
type: OTHER
salience: 2.2523330699186772e-05
mentions {
  text {
    content: "fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere wave"
type: OTHER
salience: 2.2514381271321326e-05
mentions {
  text {
    content: "lumiere  wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "freedom fish"
type: OTHER
salience: 2.2514381271321326e-05
mentions {
  text {
    content: "freedom fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "capital"
type: LOCATION
salience: 2.247679185529705e-05
mentions {
  text {
    content: "capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.2426669602282345e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting london night wave"
type: EVENT
salience: 2.240835783595685e-05
mentions {
  text {
    content: "lighting london night  wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amateurphotography lights colour"
type: OTHER
salience: 2.235204192402307e-05
mentions {
  text {
    content: "amateurphotography lights colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowds"
type: PERSON
salience: 2.2344707758747973e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "illuminatedriv fish"
type: OTHER
salience: 2.2331123545882292e-05
mentions {
  text {
    content: "illuminatedriv fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowds"
type: PERSON
salience: 2.2328980776364915e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2298396288533695e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon neon light lighting colour"
type: CONSUMER_GOOD
salience: 2.2294949303613976e-05
mentions {
  text {
    content: "lumierelondon  neon light lighting colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon neon light lighting colour"
type: CONSUMER_GOOD
salience: 2.2294949303613976e-05
mentions {
  text {
    content: "lumierelondon  neon light lighting colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fear"
type: OTHER
salience: 2.2284313672571443e-05
mentions {
  text {
    content: "fear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "street level level playing field"
type: LOCATION
salience: 2.2234324205783196e-05
mentions {
  text {
    content: "street level level playing field"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon action"
type: OTHER
salience: 2.222314833488781e-05
mentions {
  text {
    content: "visitlondon action"
    begin_offset: -1
  }
  type: COMMON
}
, name: "programme"
type: OTHER
salience: 2.2212414478417486e-05
mentions {
  text {
    content: "programme"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere kingscrossn1c beauty_blah visitlondon kingscrossn1c"
type: ORGANIZATION
salience: 2.2196660211193375e-05
mentions {
  text {
    content: "london lumiere  kingscrossn1c  beauty_blah  visitlondon kingscrossn1c"
    begin_offset: -1
  }
  type: PROPER
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 2.2182557586347684e-05
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nkirkwoodlondon celebration"
type: EVENT
salience: 2.2182557586347684e-05
mentions {
  text {
    content: "nkirkwoodlondon celebration"
    begin_offset: -1
  }
  type: COMMON
}
, name: "progress"
type: OTHER
salience: 2.2182557586347684e-05
mentions {
  text {
    content: "progress"
    begin_offset: -1
  }
  type: COMMON
}
, name: "phone box favourite"
type: OTHER
salience: 2.218167355749756e-05
mentions {
  text {
    content: "phone box favourite"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrella project regent"
type: LOCATION
salience: 2.217598375864327e-05
mentions {
  text {
    content: "umbrella project regent"
    begin_offset: -1
  }
  type: COMMON
}
, name: "faves"
type: OTHER
salience: 2.2153444660943933e-05
mentions {
  text {
    content: "faves"
    begin_offset: -1
  }
  type: COMMON
}
, name: "david batchelor 60minutespectrum"
type: PERSON
salience: 2.2136520783533342e-05
mentions {
  text {
    content: "david batchelor 60minutespectrum"
    begin_offset: -1
  }
  type: PROPER
}
, name: "cambridge"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01qh7"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Cambridge,_Massachusetts"
}
salience: 2.2136520783533342e-05
mentions {
  text {
    content: "cambridge"
    begin_offset: -1
  }
  type: PROPER
}
, name: "crowd"
type: PERSON
salience: 2.2111340513220057e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa catch"
type: OTHER
salience: 2.210600723628886e-05
mentions {
  text {
    content: "pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowd"
type: PERSON
salience: 2.210522143286653e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowd"
type: PERSON
salience: 2.2099236957728863e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowd"
type: PERSON
salience: 2.2099236957728863e-05
mentions {
  text {
    content: "crowd"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation sculpture"
type: OTHER
salience: 2.2036432710592635e-05
mentions {
  text {
    content: "installation sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hq"
type: PERSON
salience: 2.201725510531105e-05
mentions {
  text {
    content: "hq"
    begin_offset: -1
  }
  type: COMMON
}
, name: "teams"
type: ORGANIZATION
salience: 2.1965479390928522e-05
mentions {
  text {
    content: "teams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "team"
type: ORGANIZATION
salience: 2.1951051166979596e-05
mentions {
  text {
    content: "team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sroosegaarde pa catch"
type: OTHER
salience: 2.193451473431196e-05
mentions {
  text {
    content: "sroosegaarde pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "roads"
type: LOCATION
salience: 2.191646308347117e-05
mentions {
  text {
    content: "roads"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tinyplanet 360video"
type: PERSON
salience: 2.1888086848775856e-05
mentions {
  text {
    content: "tinyplanet 360video"
    begin_offset: -1
  }
  type: PROPER
}
, name: "obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet"
type: ORGANIZATION
salience: 2.1888086848775856e-05
mentions {
  text {
    content: "obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet"
    begin_offset: -1
  }
  type: PROPER
}
, name: "show"
type: WORK_OF_ART
salience: 2.1886562535655685e-05
mentions {
  text {
    content: "show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "awork"
type: PERSON
salience: 2.1883310182602145e-05
mentions {
  text {
    content: "awork"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gin costs"
type: OTHER
salience: 2.187296558986418e-05
mentions {
  text {
    content: "gin costs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "awork"
type: OTHER
salience: 2.187252903240733e-05
mentions {
  text {
    content: "awork"
    begin_offset: -1
  }
  type: COMMON
}
, name: "awork"
type: OTHER
salience: 2.187252903240733e-05
mentions {
  text {
    content: "awork"
    begin_offset: -1
  }
  type: COMMON
}
, name: "laughter southmoltonstreet musical"
type: WORK_OF_ART
salience: 2.1852196368854493e-05
mentions {
  text {
    content: "laughter southmoltonstreet musical"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 2.1837906388100237e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 2.1837906388100237e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 2.1833307982888073e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 2.1833307982888073e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "patrols"
type: OTHER
salience: 2.1821510017616674e-05
mentions {
  text {
    content: "patrols"
    begin_offset: -1
  }
  type: COMMON
}
, name: "que tengo que hacer para estar"
type: WORK_OF_ART
salience: 2.179756120312959e-05
mentions {
  text {
    content: "que tengo que hacer para estar"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumi\303\250re \303\240 londres"
type: PERSON
salience: 2.1776033463538624e-05
mentions {
  text {
    content: "lumi\303\250re \303\240 londres"
    begin_offset: -1
  }
  type: PROPER
}
, name: "metpoliceevents londonfire"
type: PERSON
salience: 2.1770825696876273e-05
mentions {
  text {
    content: "metpoliceevents londonfire"
    begin_offset: -1
  }
  type: PROPER
}
, name: "katarzyna malejka joachim"
type: PERSON
salience: 2.1753015971626155e-05
mentions {
  text {
    content: "katarzyna malejka joachim"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "polish duo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "park"
type: LOCATION
salience: 2.1746911443187855e-05
mentions {
  text {
    content: "park"
    begin_offset: -1
  }
  type: COMMON
}
, name: "silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite cheekychops"
type: PERSON
salience: 2.1730189473601058e-05
mentions {
  text {
    content: "silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite   cheekychops"
    begin_offset: -1
  }
  type: PROPER
}
, name: "donotrefreeze"
type: OTHER
salience: 2.1718296920880675e-05
mentions {
  text {
    content: "donotrefreeze"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "photo credit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westhandyside canopy laugh"
type: OTHER
salience: 2.169315303035546e-05
mentions {
  text {
    content: "westhandyside canopy laugh"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon victoriabid createvictoria aichoketrust"
type: ORGANIZATION
salience: 2.1676594769814983e-05
mentions {
  text {
    content: "visitlondon victoriabid createvictoria aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust wrap"
type: OTHER
salience: 2.163337921956554e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon btpvolunteers"
type: PERSON
salience: 2.1631987692671828e-05
mentions {
  text {
    content: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  btpvolunteers"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon stmaininthefields"
type: PERSON
salience: 2.1631987692671828e-05
mentions {
  text {
    content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon  stmaininthefields"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wrap"
type: OTHER
salience: 2.1628102331305854e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonisopen highlights"
type: OTHER
salience: 2.1617857782985084e-05
mentions {
  text {
    content: "londonisopen highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thing"
type: OTHER
salience: 2.1612881027976982e-05
mentions {
  text {
    content: "thing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "american"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/09c7w0"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/United_States"
}
salience: 2.1612249838653952e-05
mentions {
  text {
    content: "american"
    begin_offset: -1
  }
  type: PROPER
}
, name: "folk"
type: OTHER
salience: 2.1605654183076695e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.1605654183076695e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.1605654183076695e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 2.1598261810140684e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightfestival visitlondon aichoketrust westminsterabbey lumiere lumierelondon westminster abbey"
type: LOCATION
salience: 2.1596431906800717e-05
mentions {
  text {
    content: "lightfestival visitlondon aichoketrust westminsterabbey lumiere  lumierelondon westminster abbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "folk"
type: OTHER
salience: 2.1594642021227628e-05
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito experiencias londres2018 alloaconnecting"
type: WORK_OF_ART
salience: 2.1593892597593367e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito  experiencias londres2018 alloaconnecting"
    begin_offset: -1
  }
  type: PROPER
}
, name: "things"
type: OTHER
salience: 2.1580455722869374e-05
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thing"
type: OTHER
salience: 2.1580455722869374e-05
mentions {
  text {
    content: "thing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london architecture"
type: OTHER
salience: 2.157725793949794e-05
mentions {
  text {
    content: "london architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson"
type: ORGANIZATION
salience: 2.1576732251560315e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature fouhstreetdan benjamingammon"
type: PERSON
salience: 2.1576732251560315e-05
mentions {
  text {
    content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  fouhstreetdan benjamingammon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fishes"
type: OTHER
salience: 2.157295421056915e-05
mentions {
  text {
    content: "fishes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights darkness"
type: OTHER
salience: 2.156453592760954e-05
mentions {
  text {
    content: "lights darkness"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon kingscross granarysquare visitlondon aichoketrust"
type: ORGANIZATION
salience: 2.1555082639679313e-05
mentions {
  text {
    content: "lumierelondon kingscross granarysquare visitlondon  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "power"
type: OTHER
salience: 2.1550009478232823e-05
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leicestersquare"
type: OTHER
salience: 2.1527126591536216e-05
mentions {
  text {
    content: "leicestersquare"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wildlife"
type: OTHER
salience: 2.1502401068573818e-05
mentions {
  text {
    content: "wildlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dismantling thousands"
type: PERSON
salience: 2.1502401068573818e-05
mentions {
  text {
    content: "dismantling thousands"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dinner"
type: EVENT
salience: 2.1502401068573818e-05
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dinner"
type: EVENT
salience: 2.147296254406683e-05
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 2.1470295905601233e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box brightnights"
type: ORGANIZATION
salience: 2.146263068425469e-05
mentions {
  text {
    content: "amp pandora box brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht sroosegaarde pa catch"
type: WORK_OF_ART
salience: 2.145394500985276e-05
mentions {
  text {
    content: "waterlicht sroosegaarde pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp brightnights"
type: OTHER
salience: 2.1440901036839932e-05
mentions {
  text {
    content: "amp brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box brightnights"
type: ORGANIZATION
salience: 2.1427358660730533e-05
mentions {
  text {
    content: "amp pandora box brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "marshalljulius london leicester square"
type: LOCATION
salience: 2.1420366465463303e-05
mentions {
  text {
    content: "marshalljulius london leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gt brightnights"
type: OTHER
salience: 2.141448567272164e-05
mentions {
  text {
    content: "gt brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gt brightnights"
type: OTHER
salience: 2.141448567272164e-05
mentions {
  text {
    content: "gt brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "childhood"
type: OTHER
salience: 2.141448567272164e-05
mentions {
  text {
    content: "childhood"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 2.1411262423498556e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 2.1400499463197775e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 2.1400499463197775e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thought"
type: OTHER
salience: 2.1390163965406828e-05
mentions {
  text {
    content: "thought"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon"
type: OTHER
salience: 2.138288073183503e-05
mentions {
  text {
    content: "neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "something"
type: OTHER
salience: 2.1367539375205524e-05
mentions {
  text {
    content: "something"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon"
type: OTHER
salience: 2.1367539375205524e-05
mentions {
  text {
    content: "neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jubileeline"
type: OTHER
salience: 2.1361411199904978e-05
mentions {
  text {
    content: "jubileeline"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon"
type: OTHER
salience: 2.1353052943595685e-05
mentions {
  text {
    content: "neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "walk station"
type: LOCATION
salience: 2.134839814971201e-05
mentions {
  text {
    content: "walk station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon neon"
type: OTHER
salience: 2.1343825210351497e-05
mentions {
  text {
    content: "lumierelondon  neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tfltrafficnews road closures"
type: OTHER
salience: 2.1334913981263526e-05
mentions {
  text {
    content: "tfltrafficnews  road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus tube station"
type: LOCATION
salience: 2.1330570234567858e-05
mentions {
  text {
    content: "circus tube station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aworks"
type: OTHER
salience: 2.131107248715125e-05
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granarysquare rain"
type: OTHER
salience: 2.1231606297078542e-05
mentions {
  text {
    content: "granarysquare rain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: OTHER
salience: 2.1221685528871603e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross station"
type: ORGANIZATION
salience: 2.1214109438005835e-05
mentions {
  text {
    content: "king cross station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "someone"
type: PERSON
salience: 2.1179246687097475e-05
mentions {
  text {
    content: "someone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighta neon"
type: OTHER
salience: 2.116652285621967e-05
mentions {
  text {
    content: "lighta neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighta neon"
type: OTHER
salience: 2.1160389223950915e-05
mentions {
  text {
    content: "lighta neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "power station"
type: LOCATION
salience: 2.1160389223950915e-05
mentions {
  text {
    content: "power station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross station"
type: LOCATION
salience: 2.1160389223950915e-05
mentions {
  text {
    content: "king cross station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: OTHER
salience: 2.1154397472855635e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king cross station"
type: LOCATION
salience: 2.114854214596562e-05
mentions {
  text {
    content: "king cross station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "audio guide"
type: WORK_OF_ART
salience: 2.1105975974933244e-05
mentions {
  text {
    content: "audio guide"
    begin_offset: -1
  }
  type: COMMON
}
, name: "audio guide"
type: WORK_OF_ART
salience: 2.1105975974933244e-05
mentions {
  text {
    content: "audio guide"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shopping guide"
type: WORK_OF_ART
salience: 2.1074311007396318e-05
mentions {
  text {
    content: "shopping guide"
    begin_offset: -1
  }
  type: COMMON
}
, name: "triptych"
type: OTHER
salience: 2.1061852748971432e-05
mentions {
  text {
    content: "triptych"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dot aichoketrust legacy"
type: OTHER
salience: 2.1047402697149664e-05
mentions {
  text {
    content: "dot  aichoketrust legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.104735358443577e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.1039615603513084e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "energy"
type: OTHER
salience: 2.1034660676377825e-05
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "idea"
type: OTHER
salience: 2.102843063767068e-05
mentions {
  text {
    content: "idea"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.102480902976822e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.102480902976822e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.1021729480708018e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.1016889149905182e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hat details"
type: OTHER
salience: 2.1013616787968203e-05
mentions {
  text {
    content: "hat details"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.1010811906307936e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.100742858601734e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 2.1004090740461834e-05
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "places"
type: LOCATION
salience: 2.1004090740461834e-05
mentions {
  text {
    content: "places"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.1004090740461834e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "idea"
type: OTHER
salience: 2.1004090740461834e-05
mentions {
  text {
    content: "idea"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 2.100079473166261e-05
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.100079473166261e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "place"
type: LOCATION
salience: 2.100079473166261e-05
mentions {
  text {
    content: "place"
    begin_offset: -1
  }
  type: COMMON
}
, name: "marlborough"
type: LOCATION
salience: 2.096028401865624e-05
mentions {
  text {
    content: "marlborough"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marlborough"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marlborough"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "marlborough"
    begin_offset: -1
  }
  type: PROPER
}
, name: "sculptures"
type: WORK_OF_ART
salience: 2.0949815734638833e-05
mentions {
  text {
    content: "sculptures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust lumierelondon2018 visitlondon"
type: ORGANIZATION
salience: 2.0852796296821907e-05
mentions {
  text {
    content: "aichoketrust lumierelondon2018  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.0847332052653655e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "picture"
type: WORK_OF_ART
salience: 2.0837822376051918e-05
mentions {
  text {
    content: "picture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world"
type: LOCATION
salience: 2.0833198504988104e-05
mentions {
  text {
    content: "world"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 2.0833198504988104e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "picture"
type: WORK_OF_ART
salience: 2.0824194507440552e-05
mentions {
  text {
    content: "picture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "picture"
type: WORK_OF_ART
salience: 2.0819810742978007e-05
mentions {
  text {
    content: "picture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "uk"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/07ssc"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/United_Kingdom"
}
salience: 2.0810355636058375e-05
mentions {
  text {
    content: "uk"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "legacy"
type: OTHER
salience: 2.0800644051632844e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.0800644051632844e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "estate"
type: LOCATION
salience: 2.0722342014778405e-05
mentions {
  text {
    content: "estate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounities"
type: OTHER
salience: 2.0705028873635456e-05
mentions {
  text {
    content: "oppounities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 2.0697118088719435e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayfair london estate"
type: LOCATION
salience: 2.0656636479543522e-05
mentions {
  text {
    content: "mayfair london estate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waves"
type: OTHER
salience: 2.062054591078777e-05
mentions {
  text {
    content: "waves"
    begin_offset: -1
  }
  type: COMMON
}
, name: "appeal"
type: OTHER
salience: 2.0602261429303326e-05
mentions {
  text {
    content: "appeal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "swipeleft fish"
type: OTHER
salience: 2.0596993635990657e-05
mentions {
  text {
    content: "swipeleft fish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey mpsonthewater southbank"
type: ORGANIZATION
salience: 2.0582192519214004e-05
mentions {
  text {
    content: "wabbey westminsterabbey  mpsonthewater southbank"
    begin_offset: -1
  }
  type: PROPER
}
, name: "camera lomo"
type: OTHER
salience: 2.0574056179611944e-05
mentions {
  text {
    content: "camera lomo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lomographyuk"
type: PERSON
salience: 2.0561061319313012e-05
mentions {
  text {
    content: "lomographyuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "camera lomo"
type: OTHER
salience: 2.0561061319313012e-05
mentions {
  text {
    content: "camera lomo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beauty"
type: OTHER
salience: 2.0548708562273532e-05
mentions {
  text {
    content: "beauty"
    begin_offset: -1
  }
  type: COMMON
}
, name: "performance"
type: OTHER
salience: 2.0536937881843187e-05
mentions {
  text {
    content: "performance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "srmlondon"
type: OTHER
salience: 2.0467174181248993e-05
mentions {
  text {
    content: "srmlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "care"
type: OTHER
salience: 2.0467174181248993e-05
mentions {
  text {
    content: "care"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrella performance"
type: OTHER
salience: 2.0442372260731645e-05
mentions {
  text {
    content: "umbrella performance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ave fi"
type: OTHER
salience: 2.0442372260731645e-05
mentions {
  text {
    content: "ave fi"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frog"
type: OTHER
salience: 2.0442372260731645e-05
mentions {
  text {
    content: "frog"
    begin_offset: -1
  }
  type: COMMON
}
, name: "favourites"
type: PERSON
salience: 2.0426321498234756e-05
mentions {
  text {
    content: "favourites"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowds"
type: OTHER
salience: 2.0422648958628997e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon southbanklondon"
type: ORGANIZATION
salience: 2.041143125097733e-05
mentions {
  text {
    content: "visitlondon  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wish"
type: OTHER
salience: 2.0302992197684944e-05
mentions {
  text {
    content: "wish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "viewing"
type: OTHER
salience: 2.0302992197684944e-05
mentions {
  text {
    content: "viewing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piece"
type: OTHER
salience: 2.028874951065518e-05
mentions {
  text {
    content: "piece"
    begin_offset: -1
  }
  type: COMMON
}
, name: "victoria"
type: PERSON
metadata {
  key: "mid"
  value: "/m/0ctd7l"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Victoria,_London"
}
salience: 2.0264445993234403e-05
mentions {
  text {
    content: "victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "victoria"
    begin_offset: -1
  }
  type: PROPER
}
, name: "treasure hunt"
type: PERSON
salience: 2.0254839910194278e-05
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light show"
type: EVENT
salience: 2.0216635675751604e-05
mentions {
  text {
    content: "light show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa catch"
type: OTHER
salience: 2.0182023945380934e-05
mentions {
  text {
    content: "pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa catch"
type: OTHER
salience: 2.0175652025500312e-05
mentions {
  text {
    content: "pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waterlicht sroosegaarde pa catch"
type: OTHER
salience: 2.0175652025500312e-05
mentions {
  text {
    content: "waterlicht sroosegaarde pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plant"
type: LOCATION
salience: 2.0107052478124388e-05
mentions {
  text {
    content: "plant"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.003044937737286e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 2.003044937737286e-05
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.0020581359858625e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust legacy"
type: OTHER
salience: 2.0015793779748492e-05
mentions {
  text {
    content: "aichoketrust legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 2.0006489648949355e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "job mayoroflondon"
type: OTHER
salience: 1.9981984223704785e-05
mentions {
  text {
    content: "job mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music"
type: WORK_OF_ART
salience: 1.99806072487263e-05
mentions {
  text {
    content: "music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnaby"
type: LOCATION
salience: 1.9968540073023178e-05
mentions {
  text {
    content: "carnaby"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon stjamessquare oxfordstreet regentstreet"
type: WORK_OF_ART
salience: 1.9922581486753188e-05
mentions {
  text {
    content: "lumierelondon  stjamessquare oxfordstreet regentstreet"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thewave veigo eatsleepshootuk"
type: PERSON
salience: 1.992220313695725e-05
mentions {
  text {
    content: "thewave veigo  eatsleepshootuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
type: PERSON
salience: 1.987601353903301e-05
mentions {
  text {
    content: "westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londonblogger wintersinlondon nightfestival londonwhispers"
type: PERSON
salience: 1.987601353903301e-05
mentions {
  text {
    content: "londonblogger wintersinlondon nightfestival  londonwhispers"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
type: ORGANIZATION
salience: 1.987601353903301e-05
mentions {
  text {
    content: "westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "magic"
type: OTHER
salience: 1.9866187358275056e-05
mentions {
  text {
    content: "magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "herroyalj visitlondon thelondoneye kingscrossn1c wabbey"
type: PERSON
salience: 1.986577990464866e-05
mentions {
  text {
    content: "herroyalj visitlondon thelondoneye kingscrossn1c wabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayoroflondon carnabylondon"
type: PERSON
salience: 1.9853814592352137e-05
mentions {
  text {
    content: "mayoroflondon  carnabylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: LOCATION
salience: 1.981709647225216e-05
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "legacy"
type: OTHER
salience: 1.9800641894107684e-05
mentions {
  text {
    content: "legacy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.979923945327755e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp brightnights"
type: OTHER
salience: 1.9774844986386597e-05
mentions {
  text {
    content: "amp brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave brightnights"
type: OTHER
salience: 1.9764178432524204e-05
mentions {
  text {
    content: "wave brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave brightnights"
type: OTHER
salience: 1.975732266146224e-05
mentions {
  text {
    content: "wave brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "insight magic"
type: OTHER
salience: 1.9752504158532247e-05
mentions {
  text {
    content: "insight magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thanks"
type: OTHER
salience: 1.9752422304009087e-05
mentions {
  text {
    content: "thanks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london uk"
type: LOCATION
salience: 1.9749331841012463e-05
mentions {
  text {
    content: "london uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon images"
type: WORK_OF_ART
salience: 1.973424332391005e-05
mentions {
  text {
    content: "lumierelondon images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colleague"
type: PERSON
salience: 1.9719804186024703e-05
mentions {
  text {
    content: "colleague"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey wabbey"
type: CONSUMER_GOOD
salience: 1.9706963939825073e-05
mentions {
  text {
    content: "westminsterabbey wabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installation lovemotion royalacademy"
type: PERSON
salience: 1.9706185412360355e-05
mentions {
  text {
    content: "installation lovemotion royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "image"
type: WORK_OF_ART
salience: 1.967712705663871e-05
mentions {
  text {
    content: "image"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit london"
type: OTHER
salience: 1.9644554413389415e-05
mentions {
  text {
    content: "installation light spirit  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "streets london"
type: OTHER
salience: 1.9641547623905353e-05
mentions {
  text {
    content: "streets london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 1.9635648641269654e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumi\303\250re london"
type: LOCATION
salience: 1.9632750991149805e-05
mentions {
  text {
    content: "lumi\303\250re london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london"
type: LOCATION
salience: 1.9629889720818028e-05
mentions {
  text {
    content: "london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlumiere lumiere london"
type: PERSON
salience: 1.9627063011284918e-05
mentions {
  text {
    content: "londonlumiere lumiere london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leicestersquare london"
type: OTHER
salience: 1.9624267224571668e-05
mentions {
  text {
    content: "leicestersquare london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glow london"
type: LOCATION
salience: 1.9616074496298097e-05
mentions {
  text {
    content: "glow  london"
    begin_offset: -1
  }
  type: COMMON
}
, name: "delight"
type: OTHER
salience: 1.9599585357354954e-05
mentions {
  text {
    content: "delight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain someone"
type: PERSON
salience: 1.9549486751202494e-05
mentions {
  text {
    content: "rain someone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case study events management"
type: OTHER
salience: 1.954770414158702e-05
mentions {
  text {
    content: "case study events management"
    begin_offset: -1
  }
  type: COMMON
}
, name: "op ed"
type: PERSON
salience: 1.954770414158702e-05
mentions {
  text {
    content: "op ed"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ceo"
type: PERSON
salience: 1.954770414158702e-05
mentions {
  text {
    content: "ceo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cities"
type: LOCATION
salience: 1.954770414158702e-05
mentions {
  text {
    content: "cities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "station"
type: ORGANIZATION
salience: 1.9545866962289438e-05
mentions {
  text {
    content: "station"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: OTHER
salience: 1.9542299924069084e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "image"
type: WORK_OF_ART
salience: 1.9535504179657437e-05
mentions {
  text {
    content: "image"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 1.9535324099706486e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: OTHER
salience: 1.9535324099706486e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 1.9535324099706486e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "minds"
type: OTHER
salience: 1.9526765754562803e-05
mentions {
  text {
    content: "minds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation trees"
type: OTHER
salience: 1.9526765754562803e-05
mentions {
  text {
    content: "installation trees"
    begin_offset: -1
  }
  type: COMMON
}
, name: "engcathedrals"
type: PERSON
salience: 1.951695048774127e-05
mentions {
  text {
    content: "engcathedrals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures"
type: EVENT
salience: 1.9515544408932328e-05
mentions {
  text {
    content: "road closures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "something"
type: OTHER
salience: 1.9512403014232405e-05
mentions {
  text {
    content: "something"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ceo"
type: PERSON
salience: 1.950752266566269e-05
mentions {
  text {
    content: "ceo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "op ed"
type: PERSON
salience: 1.950752266566269e-05
mentions {
  text {
    content: "op ed"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon"
type: OTHER
salience: 1.950624027813319e-05
mentions {
  text {
    content: "neon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 1.949946272361558e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case study events management"
type: OTHER
salience: 1.9489723854348995e-05
mentions {
  text {
    content: "case study events management"
    begin_offset: -1
  }
  type: COMMON
}
, name: "engcathedrals"
type: OTHER
salience: 1.945769508893136e-05
mentions {
  text {
    content: "engcathedrals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "somewhere"
type: LOCATION
salience: 1.945769508893136e-05
mentions {
  text {
    content: "somewhere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnabylondon"
type: OTHER
salience: 1.942839298862964e-05
mentions {
  text {
    content: "carnabylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 1.9395665731281042e-05
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.9392127796891145e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.938520472322125e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.938520472322125e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.938520472322125e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 1.9381817764951847e-05
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.9373737814021297e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival light aichoketrust wrap"
type: OTHER
salience: 1.9320672436151654e-05
mentions {
  text {
    content: "festival light  aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gloves amp scarf"
type: OTHER
salience: 1.931547922140453e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trip"
type: EVENT
salience: 1.929725840454921e-05
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "triptych"
type: OTHER
salience: 1.9293935110908933e-05
mentions {
  text {
    content: "triptych"
    begin_offset: -1
  }
  type: COMMON
}
, name: "triptych"
type: OTHER
salience: 1.9290657292003743e-05
mentions {
  text {
    content: "triptych"
    begin_offset: -1
  }
  type: COMMON
}
, name: "royalacademy"
type: OTHER
salience: 1.9263665308244526e-05
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn_gov"
type: OTHER
metadata {
  key: "mid"
  value: "/m/022cpx"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/.gov"
}
salience: 1.9173456166754477e-05
mentions {
  text {
    content: "ldn_gov"
    begin_offset: -1
  }
  type: PROPER
}
, name: "event hope"
type: OTHER
salience: 1.9102333681075834e-05
mentions {
  text {
    content: "event hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas"
type: CONSUMER_GOOD
salience: 1.9093284208793193e-05
mentions {
  text {
    content: "umbrellas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas"
type: CONSUMER_GOOD
salience: 1.9093284208793193e-05
mentions {
  text {
    content: "umbrellas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thelondoneye lumierelondon regentstreet piccadilly"
type: OTHER
salience: 1.9066656022914685e-05
mentions {
  text {
    content: "thelondoneye  lumierelondon regentstreet piccadilly"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "royalacademy piano"
type: OTHER
salience: 1.9062248611589894e-05
mentions {
  text {
    content: "royalacademy piano"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 1.8962715330417268e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance"
type: OTHER
salience: 1.8931550584966317e-05
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "coin child hood"
type: OTHER
salience: 1.8925033145933412e-05
mentions {
  text {
    content: "coin child hood"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrellas"
type: CONSUMER_GOOD
salience: 1.8913662643171847e-05
mentions {
  text {
    content: "umbrellas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gt mondaymotivation thinkingcity"
type: OTHER
salience: 1.8901384464697912e-05
mentions {
  text {
    content: "gt mondaymotivation  thinkingcity"
    begin_offset: -1
  }
  type: PROPER
}
, name: "chrisplant one"
type: PERSON
salience: 1.8894337699748576e-05
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chrisplant one"
type: PERSON
salience: 1.8894337699748576e-05
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 1.8875009118346497e-05
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet"
type: ORGANIZATION
salience: 1.8850703781936318e-05
mentions {
  text {
    content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "crowds"
type: PERSON
salience: 1.8796525182551704e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crowds"
type: PERSON
salience: 1.8796525182551704e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pics"
type: WORK_OF_ART
salience: 1.8761205865303054e-05
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey lumierelondon2018 visitlondon aichoketrust"
type: ORGANIZATION
salience: 1.8721597371040843e-05
mentions {
  text {
    content: "wabbey lumierelondon2018  visitlondon  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "crowds"
type: PERSON
salience: 1.8619693946675397e-05
mentions {
  text {
    content: "crowds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "excuse catch check highlights"
type: OTHER
salience: 1.8583681594463997e-05
mentions {
  text {
    content: "excuse catch  check highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "map"
type: WORK_OF_ART
salience: 1.857799361459911e-05
mentions {
  text {
    content: "map"
    begin_offset: -1
  }
  type: COMMON
}
, name: "billboard planet"
type: OTHER
salience: 1.8567512597655877e-05
mentions {
  text {
    content: "billboard planet"
    begin_offset: -1
  }
  type: COMMON
}
, name: "excuse catch check highlights"
type: OTHER
salience: 1.8558928786660545e-05
mentions {
  text {
    content: "excuse catch  check highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piece"
type: WORK_OF_ART
salience: 1.8554255802882835e-05
mentions {
  text {
    content: "piece"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plant"
type: OTHER
salience: 1.8554255802882835e-05
mentions {
  text {
    content: "plant"
    begin_offset: -1
  }
  type: COMMON
}
, name: "serve"
type: OTHER
salience: 1.8545104467193596e-05
mentions {
  text {
    content: "serve"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: EVENT
salience: 1.8544800695963204e-05
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "map"
type: WORK_OF_ART
salience: 1.853572393883951e-05
mentions {
  text {
    content: "map"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aworks"
type: OTHER
salience: 1.84936016012216e-05
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance win"
type: OTHER
salience: 1.847233943408355e-05
mentions {
  text {
    content: "chance win"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance win"
type: OTHER
salience: 1.847233943408355e-05
mentions {
  text {
    content: "chance win"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance win"
type: OTHER
salience: 1.8460672436049208e-05
mentions {
  text {
    content: "chance win"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 1.8442960936226882e-05
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "brand"
type: ORGANIZATION
salience: 1.842892015702091e-05
mentions {
  text {
    content: "brand"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pleasures"
type: OTHER
salience: 1.842892015702091e-05
mentions {
  text {
    content: "pleasures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thisislondon leakestarches"
type: PERSON
salience: 1.842514393501915e-05
mentions {
  text {
    content: "thisislondon  leakestarches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "branches"
type: OTHER
salience: 1.8419261323288083e-05
mentions {
  text {
    content: "branches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 1.839326614572201e-05
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "food cocktails"
type: OTHER
salience: 1.839326614572201e-05
mentions {
  text {
    content: "food cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light show"
type: EVENT
salience: 1.8390566765447147e-05
mentions {
  text {
    content: "light show"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 1.838958269217983e-05
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 1.8385959265287966e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "atransformslives"
type: OTHER
salience: 1.838432035583537e-05
mentions {
  text {
    content: "atransformslives"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stewards"
type: PERSON
salience: 1.836870433180593e-05
mentions {
  text {
    content: "stewards"
    begin_offset: -1
  }
  type: COMMON
}
, name: "facade"
type: OTHER
salience: 1.836128649301827e-05
mentions {
  text {
    content: "facade"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculptures"
type: WORK_OF_ART
salience: 1.8305061530554667e-05
mentions {
  text {
    content: "sculptures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 1.8292841559741646e-05
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "capital"
type: LOCATION
salience: 1.8292841559741646e-05
mentions {
  text {
    content: "capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 1.8288839783053845e-05
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 1.828573294915259e-05
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 1.828573294915259e-05
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnabylondon"
type: OTHER
salience: 1.8276665286975913e-05
mentions {
  text {
    content: "carnabylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 1.8276665286975913e-05
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 1.8268474377691746e-05
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust carnabylondon"
type: PERSON
salience: 1.826512198022101e-05
mentions {
  text {
    content: "aichoketrust  carnabylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 1.8262779121869244e-05
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "walk"
type: EVENT
salience: 1.8257225747220218e-05
mentions {
  text {
    content: "walk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "courses amp cocktail"
type: OTHER
salience: 1.8251806977787055e-05
mentions {
  text {
    content: "courses amp cocktail"
    begin_offset: -1
  }
  type: COMMON
}
, name: "courses amp cocktail"
type: OTHER
salience: 1.8251806977787055e-05
mentions {
  text {
    content: "courses amp cocktail"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biuk"
type: OTHER
salience: 1.8193881260231137e-05
mentions {
  text {
    content: "biuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wiermann frictions"
type: OTHER
salience: 1.8128190276911482e-05
mentions {
  text {
    content: "wiermann frictions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wiermann frictions"
type: OTHER
salience: 1.8118553271051496e-05
mentions {
  text {
    content: "wiermann frictions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "2018 leicester square"
type: LOCATION
salience: 1.8092245227308013e-05
mentions {
  text {
    content: "2018 leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "production students"
type: PERSON
salience: 1.80883398570586e-05
mentions {
  text {
    content: "production students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plants"
type: LOCATION
salience: 1.8078964785672724e-05
mentions {
  text {
    content: "plants"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thelondoneye loki_lego lumierelondon trafalgar square"
type: LOCATION
salience: 1.8071301383315586e-05
mentions {
  text {
    content: "thelondoneye   loki_lego lumierelondon  trafalgar square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "laughter southmoltonstreet musical"
type: WORK_OF_ART
salience: 1.8070571968564764e-05
mentions {
  text {
    content: "laughter southmoltonstreet musical"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mpsprinces team"
type: ORGANIZATION
salience: 1.805219471862074e-05
mentions {
  text {
    content: "mpsprinces team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "students"
type: PERSON
salience: 1.8043272575596347e-05
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "image"
type: WORK_OF_ART
salience: 1.8037710106000304e-05
mentions {
  text {
    content: "image"
    begin_offset: -1
  }
  type: COMMON
}
, name: "images"
type: WORK_OF_ART
salience: 1.8027836631517857e-05
mentions {
  text {
    content: "images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "royalacademy"
type: PERSON
salience: 1.8012307918979786e-05
mentions {
  text {
    content: "royalacademy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colleagues"
type: PERSON
salience: 1.8012307918979786e-05
mentions {
  text {
    content: "colleagues"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon ladder"
type: OTHER
salience: 1.8010723579209298e-05
mentions {
  text {
    content: "neon ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pinterest board selection books"
type: WORK_OF_ART
salience: 1.8005792298936285e-05
mentions {
  text {
    content: "pinterest board selection books"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.7996087990468368e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "supercube look camera"
type: OTHER
salience: 1.7954112990992144e-05
mentions {
  text {
    content: "supercube look camera"
    begin_offset: -1
  }
  type: COMMON
}
, name: "asalto london victoriabid embspainuk spaincultureuk kingscrossn1c"
type: ORGANIZATION
salience: 1.7931921320268884e-05
mentions {
  text {
    content: "asalto london  victoriabid embspainuk spaincultureuk  kingscrossn1c"
    begin_offset: -1
  }
  type: PROPER
}
, name: "sights"
type: OTHER
salience: 1.782963408913929e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon biuk"
type: ORGANIZATION
salience: 1.7816577383200638e-05
mentions {
  text {
    content: "nightlife chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon biuk"
type: ORGANIZATION
salience: 1.7804715753300115e-05
mentions {
  text {
    content: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "eye updates"
type: OTHER
salience: 1.776968565536663e-05
mentions {
  text {
    content: "eye updates"
    begin_offset: -1
  }
  type: COMMON
}
, name: "food"
type: OTHER
salience: 1.776010867615696e-05
mentions {
  text {
    content: "food"
    begin_offset: -1
  }
  type: COMMON
}
, name: "area"
type: LOCATION
salience: 1.7674168702797033e-05
mentions {
  text {
    content: "area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon timeoutlondon"
type: OTHER
salience: 1.7620197468204424e-05
mentions {
  text {
    content: "lumierelondon  timeoutlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "canon"
type: PERSON
salience: 1.7574091543792747e-05
mentions {
  text {
    content: "canon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon carnabylondon"
type: PERSON
salience: 1.753774267854169e-05
mentions {
  text {
    content: "lumierelondon  carnabylondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "voyages"
type: OTHER
salience: 1.7534668586449698e-05
mentions {
  text {
    content: "voyages"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: WORK_OF_ART
salience: 1.7534668586449698e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: OTHER
salience: 1.752958633005619e-05
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canon"
type: OTHER
salience: 1.7524624126963317e-05
mentions {
  text {
    content: "canon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "go"
type: OTHER
salience: 1.7524624126963317e-05
mentions {
  text {
    content: "go"
    begin_offset: -1
  }
  type: COMMON
}
, name: "power"
type: OTHER
salience: 1.751154923113063e-05
mentions {
  text {
    content: "power"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 london aquarium"
type: ORGANIZATION
salience: 1.7481166651123203e-05
mentions {
  text {
    content: "lumierelondon2018  london aquarium"
    begin_offset: -1
  }
  type: PROPER
}
, name: "child hood"
type: OTHER
salience: 1.7459165974287316e-05
mentions {
  text {
    content: "child hood"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hope"
type: OTHER
salience: 1.7459165974287316e-05
mentions {
  text {
    content: "hope"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood"
type: OTHER
salience: 1.7456071873311885e-05
mentions {
  text {
    content: "child hood"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust aists"
type: PERSON
salience: 1.7326974557363428e-05
mentions {
  text {
    content: "aichoketrust aists"
    begin_offset: -1
  }
  type: PROPER
}
, name: "child hood lumiere"
type: OTHER
salience: 1.727765629766509e-05
mentions {
  text {
    content: "child hood lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon"
type: PERSON
salience: 1.7270360331167467e-05
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "carnabylondon london lumiere"
type: OTHER
salience: 1.7267982912017033e-05
mentions {
  text {
    content: "carnabylondon london lumiere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night sky"
type: OTHER
salience: 1.7221896996488795e-05
mentions {
  text {
    content: "night sky"
    begin_offset: -1
  }
  type: COMMON
}
, name: "go pop"
type: OTHER
salience: 1.7220661902683787e-05
mentions {
  text {
    content: "go pop"
    begin_offset: -1
  }
  type: COMMON
}
, name: "benjamingammon"
type: PERSON
salience: 1.720977707009297e-05
mentions {
  text {
    content: "benjamingammon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "locations"
type: LOCATION
salience: 1.7198319255840033e-05
mentions {
  text {
    content: "locations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "website"
type: OTHER
salience: 1.719618376228027e-05
mentions {
  text {
    content: "website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "levanterman"
type: PERSON
salience: 1.7187456251122057e-05
mentions {
  text {
    content: "levanterman"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience pics"
type: WORK_OF_ART
salience: 1.715945836622268e-05
mentions {
  text {
    content: "experience pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canary wharf adamscottg"
type: ORGANIZATION
salience: 1.715789403533563e-05
mentions {
  text {
    content: "canary wharf  adamscottg"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonwalks ghosts"
type: OTHER
salience: 1.715789403533563e-05
mentions {
  text {
    content: "londonwalks ghosts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "detail"
type: OTHER
salience: 1.7136288079200312e-05
mentions {
  text {
    content: "detail"
    begin_offset: -1
  }
  type: COMMON
}
, name: "reasons"
type: OTHER
salience: 1.713200254016556e-05
mentions {
  text {
    content: "reasons"
    begin_offset: -1
  }
  type: COMMON
}
, name: "decision"
type: OTHER
salience: 1.713200254016556e-05
mentions {
  text {
    content: "decision"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fun"
type: OTHER
salience: 1.7129388652392663e-05
mentions {
  text {
    content: "fun"
    begin_offset: -1
  }
  type: COMMON
}
, name: "angle"
type: OTHER
salience: 1.7120431948569603e-05
mentions {
  text {
    content: "angle"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thing"
type: OTHER
salience: 1.711511504254304e-05
mentions {
  text {
    content: "thing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "telephone box"
type: CONSUMER_GOOD
salience: 1.7114953152486123e-05
mentions {
  text {
    content: "telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium telephone box"
type: OTHER
salience: 1.7114953152486123e-05
mentions {
  text {
    content: "aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "interview harry qedproductions"
type: WORK_OF_ART
salience: 1.7108974134316668e-05
mentions {
  text {
    content: "interview harry qedproductions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "response"
type: OTHER
salience: 1.7108974134316668e-05
mentions {
  text {
    content: "response"
    begin_offset: -1
  }
  type: COMMON
}
, name: "breathing difficulties chest pain diabetic"
type: OTHER
salience: 1.7108974134316668e-05
mentions {
  text {
    content: "breathing difficulties chest pain diabetic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "drug overdoses"
type: OTHER
salience: 1.7108974134316668e-05
mentions {
  text {
    content: "drug overdoses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "development"
type: OTHER
salience: 1.7108974134316668e-05
mentions {
  text {
    content: "development"
    begin_offset: -1
  }
  type: COMMON
}
, name: "decision"
type: OTHER
salience: 1.709492426016368e-05
mentions {
  text {
    content: "decision"
    begin_offset: -1
  }
  type: COMMON
}
, name: "list"
type: OTHER
salience: 1.7088241293095052e-05
mentions {
  text {
    content: "list"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium telephone box"
type: OTHER
salience: 1.707444607745856e-05
mentions {
  text {
    content: "aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere lumierelondon oxfordstreet london oxford street"
type: LOCATION
salience: 1.7041571481968276e-05
mentions {
  text {
    content: "lumiere  lumierelondon oxfordstreet london oxford street"
    begin_offset: -1
  }
  type: PROPER
}
, name: "tmnikonian christiana72 ganton sttreet carnaby street"
type: LOCATION
salience: 1.7032243704306893e-05
mentions {
  text {
    content: "tmnikonian  christiana72  ganton sttreet carnaby street"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere lumierelondon lumierelondon2018 ganton sttreet carnaby street"
type: LOCATION
salience: 1.7032243704306893e-05
mentions {
  text {
    content: "lumiere lumierelondon lumierelondon2018  ganton sttreet carnaby street"
    begin_offset: -1
  }
  type: PROPER
}
, name: "tomodo"
type: LOCATION
salience: 1.7013664546539076e-05
mentions {
  text {
    content: "tomodo"
    begin_offset: -1
  }
  type: PROPER
}
, name: "night lights"
type: OTHER
salience: 1.6936093743424863e-05
mentions {
  text {
    content: "night lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6931006030063145e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6923602743190713e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightbulb"
type: OTHER
salience: 1.6923602743190713e-05
mentions {
  text {
    content: "lightbulb"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6923602743190713e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6923602743190713e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierefestival lights"
type: OTHER
salience: 1.6923602743190713e-05
mentions {
  text {
    content: "lumierefestival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light"
type: OTHER
salience: 1.6921192582231015e-05
mentions {
  text {
    content: "light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6921192582231015e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierefestival lights"
type: OTHER
salience: 1.6921192582231015e-05
mentions {
  text {
    content: "lumierefestival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6918811525101773e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting light"
type: OTHER
salience: 1.691645593382418e-05
mentions {
  text {
    content: "lighting light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.691645593382418e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.6914129446377046e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fun"
type: OTHER
salience: 1.6860603864188306e-05
mentions {
  text {
    content: "fun"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sight"
type: OTHER
salience: 1.6860603864188306e-05
mentions {
  text {
    content: "sight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 1.6857433365657926e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "road closures buses"
type: OTHER
salience: 1.6857433365657926e-05
mentions {
  text {
    content: "road closures buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 1.6857433365657926e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sights"
type: OTHER
salience: 1.685431197984144e-05
mentions {
  text {
    content: "sights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 1.6839376257848926e-05
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 1.6836514987517148e-05
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "motion"
type: OTHER
salience: 1.683369373495225e-05
mentions {
  text {
    content: "motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wearewaterloouk leakestarches"
type: PERSON
salience: 1.6830910681164823e-05
mentions {
  text {
    content: "wearewaterloouk leakestarches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 1.6828165826154873e-05
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leakestreetarches"
type: PERSON
salience: 1.681753565208055e-05
mentions {
  text {
    content: "leakestreetarches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leakestreetarches"
type: PERSON
salience: 1.681753565208055e-05
mentions {
  text {
    content: "leakestreetarches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp culture"
type: OTHER
salience: 1.6799038348835893e-05
mentions {
  text {
    content: "amp culture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "landscape"
type: OTHER
salience: 1.6792862879810855e-05
mentions {
  text {
    content: "landscape"
    begin_offset: -1
  }
  type: COMMON
}
, name: "heres images"
type: WORK_OF_ART
salience: 1.6790365407359786e-05
mentions {
  text {
    content: "heres images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "friends"
type: PERSON
salience: 1.6759278878453188e-05
mentions {
  text {
    content: "friends"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guide amp share pics"
type: WORK_OF_ART
salience: 1.6747964764363132e-05
mentions {
  text {
    content: "guide amp share pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon"
type: PERSON
salience: 1.6747155314078555e-05
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lightinstallation landscape"
type: OTHER
salience: 1.6739615603000857e-05
mentions {
  text {
    content: "lightinstallation landscape"
    begin_offset: -1
  }
  type: COMMON
}
, name: "james piccadilly"
type: LOCATION
salience: 1.664471346884966e-05
mentions {
  text {
    content: "james piccadilly"
    begin_offset: -1
  }
  type: PROPER
}
, name: "nofilterneeded lovelondon"
type: PERSON
salience: 1.6640808098600246e-05
mentions {
  text {
    content: "nofilterneeded lovelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 archdeaconluke trafalgarsquare"
type: PERSON
salience: 1.6639485693303868e-05
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  archdeaconluke trafalgarsquare"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon bealocaltourist phone"
type: ORGANIZATION
salience: 1.6622612747596577e-05
mentions {
  text {
    content: "visitlondon bealocaltourist phone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cityshots snapshoot lightfestival lovelondon"
type: PERSON
salience: 1.6608690202701837e-05
mentions {
  text {
    content: "cityshots snapshoot lightfestival lovelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "trip"
type: EVENT
salience: 1.6534557289560325e-05
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorways"
type: OTHER
salience: 1.6525606042705476e-05
mentions {
  text {
    content: "doorways"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorways"
type: OTHER
salience: 1.6521938960067928e-05
mentions {
  text {
    content: "doorways"
    begin_offset: -1
  }
  type: COMMON
}
, name: "camera"
type: CONSUMER_GOOD
salience: 1.651843194849789e-05
mentions {
  text {
    content: "camera"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain loki_lego"
type: ORGANIZATION
salience: 1.6515587049070746e-05
mentions {
  text {
    content: "rain  loki_lego"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorways"
type: OTHER
salience: 1.651479942665901e-05
mentions {
  text {
    content: "doorways"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hotelkensington"
type: OTHER
salience: 1.650728336244356e-05
mentions {
  text {
    content: "hotelkensington"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cameras"
type: CONSUMER_GOOD
salience: 1.650193371460773e-05
mentions {
  text {
    content: "cameras"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon printer"
type: OTHER
salience: 1.6500483980053104e-05
mentions {
  text {
    content: "visitlondon printer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hotelkensington"
type: OTHER
salience: 1.6499310731887817e-05
mentions {
  text {
    content: "hotelkensington"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon balloons"
type: OTHER
salience: 1.649416662985459e-05
mentions {
  text {
    content: "lumierelondon balloons"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 1.6488167602801695e-05
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "space"
type: LOCATION
salience: 1.6484224033774808e-05
mentions {
  text {
    content: "space"
    begin_offset: -1
  }
  type: COMMON
}
, name: "use"
type: OTHER
salience: 1.6476562450407073e-05
mentions {
  text {
    content: "use"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey reflection"
type: OTHER
salience: 1.646918462938629e-05
mentions {
  text {
    content: "westminsterabbey reflection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mickfusion"
type: OTHER
salience: 1.6451844203402288e-05
mentions {
  text {
    content: "mickfusion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "reflections"
type: OTHER
salience: 1.6451844203402288e-05
mentions {
  text {
    content: "reflections"
    begin_offset: -1
  }
  type: COMMON
}
, name: "use"
type: OTHER
salience: 1.6448550013592467e-05
mentions {
  text {
    content: "use"
    begin_offset: -1
  }
  type: COMMON
}
, name: "use"
type: OTHER
salience: 1.6448550013592467e-05
mentions {
  text {
    content: "use"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tour"
type: EVENT
salience: 1.6373882317566313e-05
mentions {
  text {
    content: "tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tour"
type: EVENT
salience: 1.6373882317566313e-05
mentions {
  text {
    content: "tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dots order prints"
type: OTHER
salience: 1.6373882317566313e-05
mentions {
  text {
    content: "dots order prints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "academy"
type: ORGANIZATION
salience: 1.6351639715139754e-05
mentions {
  text {
    content: "academy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 1.6330161088262685e-05
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "reflection"
type: OTHER
salience: 1.632531530049164e-05
mentions {
  text {
    content: "reflection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wickeduk tour"
type: EVENT
salience: 1.6320584109053016e-05
mentions {
  text {
    content: "wickeduk tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "order prints"
type: OTHER
salience: 1.631596387596801e-05
mentions {
  text {
    content: "order prints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tourists"
type: PERSON
salience: 1.631596387596801e-05
mentions {
  text {
    content: "tourists"
    begin_offset: -1
  }
  type: COMMON
}
, name: "masons window"
type: OTHER
salience: 1.6246673112618737e-05
mentions {
  text {
    content: "masons window"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp masons window"
type: OTHER
salience: 1.6246673112618737e-05
mentions {
  text {
    content: "amp masons window"
    begin_offset: -1
  }
  type: COMMON
}
, name: "area"
type: LOCATION
salience: 1.6189125744858757e-05
mentions {
  text {
    content: "area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "area"
type: LOCATION
salience: 1.618334681552369e-05
mentions {
  text {
    content: "area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "area"
type: LOCATION
salience: 1.618334681552369e-05
mentions {
  text {
    content: "area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trains"
type: OTHER
salience: 1.616178997210227e-05
mentions {
  text {
    content: "trains"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 1.6156749552465044e-05
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wish"
type: OTHER
salience: 1.61390289576957e-05
mentions {
  text {
    content: "wish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.6124427929753438e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 1.6090765711851418e-05
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londontown biuk"
type: OTHER
salience: 1.6085536117316224e-05
mentions {
  text {
    content: "londontown  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon biuk"
type: OTHER
salience: 1.607806007086765e-05
mentions {
  text {
    content: "visitlondon  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "torch faces"
type: OTHER
salience: 1.6077063264674507e-05
mentions {
  text {
    content: "torch faces"
    begin_offset: -1
  }
  type: COMMON
}
, name: "energy"
type: OTHER
salience: 1.604295539436862e-05
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buildings"
type: LOCATION
salience: 1.6013098502298817e-05
mentions {
  text {
    content: "buildings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ping pong side imaginationuk building"
type: LOCATION
salience: 1.600629730091896e-05
mentions {
  text {
    content: "ping pong side imaginationuk building"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cycling"
type: EVENT
salience: 1.599658207851462e-05
mentions {
  text {
    content: "cycling"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lasers"
type: OTHER
salience: 1.5996522051864304e-05
mentions {
  text {
    content: "lasers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "illumination"
type: OTHER
salience: 1.5990268366294913e-05
mentions {
  text {
    content: "illumination"
    begin_offset: -1
  }
  type: COMMON
}
, name: "illuminations"
type: OTHER
salience: 1.5990268366294913e-05
mentions {
  text {
    content: "illuminations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 1.593406341271475e-05
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gasworks longexposures"
type: ORGANIZATION
salience: 1.5925403204164468e-05
mentions {
  text {
    content: "gasworks longexposures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "staing"
type: OTHER
salience: 1.591344698681496e-05
mentions {
  text {
    content: "staing"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "staing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon"
type: PERSON
salience: 1.589075145602692e-05
mentions {
  text {
    content: "london lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "guide amp share pics"
type: WORK_OF_ART
salience: 1.5858004189794883e-05
mentions {
  text {
    content: "guide amp share pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dot"
type: LOCATION
salience: 1.5847172107896768e-05
mentions {
  text {
    content: "dot"
    begin_offset: -1
  }
  type: COMMON
}
, name: "origin world bubble"
type: OTHER
salience: 1.582968980073929e-05
mentions {
  text {
    content: "origin world bubble"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canadian"
type: LOCATION
salience: 1.582947515998967e-05
mentions {
  text {
    content: "canadian"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "canadian"
    begin_offset: -1
  }
  type: PROPER
}
, name: "poal"
type: OTHER
salience: 1.58269249368459e-05
mentions {
  text {
    content: "poal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "friend toddler"
type: PERSON
salience: 1.5817257008166052e-05
mentions {
  text {
    content: "friend toddler"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayfair"
type: EVENT
salience: 1.5813979189260863e-05
mentions {
  text {
    content: "mayfair"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon biuk"
type: ORGANIZATION
salience: 1.5800625988049433e-05
mentions {
  text {
    content: "lumierelondon   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "50 aists dewdropbook dewdrop ay abi"
type: ORGANIZATION
salience: 1.5767760487506166e-05
mentions {
  text {
    content: "50 aists  dewdropbook dewdrop ay abi"
    begin_offset: -1
  }
  type: PROPER
}
, name: "love md"
type: PERSON
salience: 1.5706109479651786e-05
mentions {
  text {
    content: "love md"
    begin_offset: -1
  }
  type: COMMON
}
, name: "background distractions"
type: OTHER
salience: 1.5706109479651786e-05
mentions {
  text {
    content: "background distractions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gin costs"
type: OTHER
salience: 1.5706109479651786e-05
mentions {
  text {
    content: "gin costs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "david ward"
type: PERSON
salience: 1.5695055481046438e-05
mentions {
  text {
    content: "david ward"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish swimming"
type: EVENT
salience: 1.5674699170631357e-05
mentions {
  text {
    content: "fish swimming"
    begin_offset: -1
  }
  type: COMMON
}
, name: "screens"
type: OTHER
salience: 1.56652822624892e-05
mentions {
  text {
    content: "screens"
    begin_offset: -1
  }
  type: COMMON
}
, name: "reality"
type: OTHER
salience: 1.5647738109692e-05
mentions {
  text {
    content: "reality"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fireflies"
type: OTHER
salience: 1.5639538105460815e-05
mentions {
  text {
    content: "fireflies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sofas"
type: CONSUMER_GOOD
salience: 1.562412580824457e-05
mentions {
  text {
    content: "sofas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "magnificence"
type: OTHER
salience: 1.5609870388288982e-05
mentions {
  text {
    content: "magnificence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingo flyway"
type: LOCATION
salience: 1.5609870388288982e-05
mentions {
  text {
    content: "flamingo flyway"
    begin_offset: -1
  }
  type: COMMON
}
, name: "saws"
type: OTHER
salience: 1.5590310795232654e-05
mentions {
  text {
    content: "saws"
    begin_offset: -1
  }
  type: COMMON
}
, name: "launch"
type: EVENT
salience: 1.558421536174137e-05
mentions {
  text {
    content: "launch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust londonisopen"
type: PERSON
salience: 1.5579817045363598e-05
mentions {
  text {
    content: "aichoketrust londonisopen"
    begin_offset: -1
  }
  type: PROPER
}
, name: "blog"
type: OTHER
salience: 1.555679045850411e-05
mentions {
  text {
    content: "blog"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 1.5549278032267466e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon ball"
type: OTHER
salience: 1.553179208713118e-05
mentions {
  text {
    content: "lumierelondon  ball"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doorways"
type: OTHER
salience: 1.5531702956650406e-05
mentions {
  text {
    content: "doorways"
    begin_offset: -1
  }
  type: COMMON
}
, name: "town"
type: LOCATION
salience: 1.552510730107315e-05
mentions {
  text {
    content: "town"
    begin_offset: -1
  }
  type: COMMON
}
, name: "production"
type: OTHER
salience: 1.5521893146797083e-05
mentions {
  text {
    content: "production"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plug bulbs"
type: OTHER
salience: 1.5512567188125104e-05
mentions {
  text {
    content: "plug bulbs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pics"
type: WORK_OF_ART
salience: 1.5504898328799754e-05
mentions {
  text {
    content: "pics"
    begin_offset: -1
  }
  type: COMMON
}
, name: "life"
type: OTHER
salience: 1.5469624486286193e-05
mentions {
  text {
    content: "life"
    begin_offset: -1
  }
  type: COMMON
}
, name: "calls"
type: OTHER
salience: 1.5447840269189328e-05
mentions {
  text {
    content: "calls"
    begin_offset: -1
  }
  type: COMMON
}
, name: "polaroidorignls"
type: OTHER
salience: 1.544519363960717e-05
mentions {
  text {
    content: "polaroidorignls"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poland"
type: LOCATION
salience: 1.54395147546893e-05
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 1.5434003216796555e-05
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 1.541344499855768e-05
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 1.540863922855351e-05
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "extravaganza magic"
type: OTHER
salience: 1.5403951692860574e-05
mentions {
  text {
    content: "extravaganza magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "names"
type: OTHER
salience: 1.539680306450464e-05
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jar kids"
type: PERSON
salience: 1.53876007971121e-05
mentions {
  text {
    content: "jar kids"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poland"
type: LOCATION
salience: 1.5386300219688565e-05
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poland"
type: LOCATION
salience: 1.5386300219688565e-05
mentions {
  text {
    content: "poland"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 1.5344943676609546e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selection craft beer food tickle tastebuds"
type: OTHER
salience: 1.5304140106309205e-05
mentions {
  text {
    content: "selection craft beer food tickle tastebuds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster marshalljulius"
type: LOCATION
salience: 1.5276624253601767e-05
mentions {
  text {
    content: "westminster  marshalljulius"
    begin_offset: -1
  }
  type: PROPER
}
, name: "installations"
type: OTHER
salience: 1.5172511666605715e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5170218830462545e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5170218830462545e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.516795418865513e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.516571683168877e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.516571683168877e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.516571683168877e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.516571683168877e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5161322153289802e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 1.5159163012867793e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "southbank installation"
type: OTHER
salience: 1.5159163012867793e-05
mentions {
  text {
    content: "southbank installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5159163012867793e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5157029338297434e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 1.5152833839238156e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation"
type: OTHER
salience: 1.5152833839238156e-05
mentions {
  text {
    content: "installation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations"
type: OTHER
salience: 1.5152833839238156e-05
mentions {
  text {
    content: "installations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tour"
type: EVENT
salience: 1.5083829566719942e-05
mentions {
  text {
    content: "tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jacob ladder"
type: OTHER
salience: 1.5075320334290154e-05
mentions {
  text {
    content: "jacob ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tour"
type: EVENT
salience: 1.506985972810071e-05
mentions {
  text {
    content: "tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 1.5059402358019724e-05
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 1.5056879419717006e-05
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain grantchito 2018 leicester square"
type: LOCATION
salience: 1.5054749383125454e-05
mentions {
  text {
    content: "rain  grantchito  2018 leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "space"
type: LOCATION
salience: 1.5049510693643242e-05
mentions {
  text {
    content: "space"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 1.5044757674331777e-05
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "reflections"
type: OTHER
salience: 1.5042426639411133e-05
mentions {
  text {
    content: "reflections"
    begin_offset: -1
  }
  type: COMMON
}
, name: "churches"
type: LOCATION
salience: 1.5036956028779969e-05
mentions {
  text {
    content: "churches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cathedral"
type: LOCATION
salience: 1.5033359886729158e-05
mentions {
  text {
    content: "cathedral"
    begin_offset: -1
  }
  type: COMMON
}
, name: "progress"
type: OTHER
salience: 1.5029832866275683e-05
mentions {
  text {
    content: "progress"
    begin_offset: -1
  }
  type: COMMON
}
, name: "field"
type: OTHER
salience: 1.5029832866275683e-05
mentions {
  text {
    content: "field"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn_culture"
type: OTHER
salience: 1.5022977095213719e-05
mentions {
  text {
    content: "ldn_culture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "physics glory nohern"
type: OTHER
salience: 1.5013152733445168e-05
mentions {
  text {
    content: "physics glory nohern"
    begin_offset: -1
  }
  type: COMMON
}
, name: "academy"
type: ORGANIZATION
salience: 1.5006884495960549e-05
mentions {
  text {
    content: "academy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "progress"
type: OTHER
salience: 1.5006884495960549e-05
mentions {
  text {
    content: "progress"
    begin_offset: -1
  }
  type: COMMON
}
, name: "academy"
type: ORGANIZATION
salience: 1.5003829503257293e-05
mentions {
  text {
    content: "academy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "view"
type: OTHER
salience: 1.5003829503257293e-05
mentions {
  text {
    content: "view"
    begin_offset: -1
  }
  type: COMMON
}
, name: "homes"
type: LOCATION
salience: 1.5003829503257293e-05
mentions {
  text {
    content: "homes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "view"
type: OTHER
salience: 1.5003829503257293e-05
mentions {
  text {
    content: "view"
    begin_offset: -1
  }
  type: COMMON
}
, name: "destinations"
type: LOCATION
salience: 1.5003829503257293e-05
mentions {
  text {
    content: "destinations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "academy"
type: ORGANIZATION
salience: 1.5000824532762635e-05
mentions {
  text {
    content: "academy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "public"
type: PERSON
salience: 1.5000824532762635e-05
mentions {
  text {
    content: "public"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london kings cross"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0ndnw"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Kings_Cross,_London"
}
salience: 1.4989837836765219e-05
mentions {
  text {
    content: "london kings cross"
    begin_offset: -1
  }
  type: PROPER
}
, name: "communities"
type: PERSON
salience: 1.4962212844693568e-05
mentions {
  text {
    content: "communities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "programme"
type: OTHER
salience: 1.4927239135431591e-05
mentions {
  text {
    content: "programme"
    begin_offset: -1
  }
  type: COMMON
}
, name: "names"
type: OTHER
salience: 1.4921910405973904e-05
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa w"
type: OTHER
salience: 1.4897386790835299e-05
mentions {
  text {
    content: "pa w"
    begin_offset: -1
  }
  type: COMMON
}
, name: "field"
type: OTHER
salience: 1.4888436453475151e-05
mentions {
  text {
    content: "field"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fields"
type: OTHER
salience: 1.488412181060994e-05
mentions {
  text {
    content: "fields"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium piccadilly circus"
type: PERSON
salience: 1.487638019170845e-05
mentions {
  text {
    content: "lumierelondon2018   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium piccadilly circus"
    begin_offset: -1
  }
  type: PROPER
}
, name: "julian crowe"
type: PERSON
salience: 1.4871293387841433e-05
mentions {
  text {
    content: "julian crowe"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "julian crowe"
    begin_offset: -1
  }
  type: PROPER
}
, name: "amp capture"
type: OTHER
salience: 1.4869574442855082e-05
mentions {
  text {
    content: "amp capture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "instagram gt"
type: OTHER
salience: 1.4848167666059453e-05
mentions {
  text {
    content: "instagram gt"
    begin_offset: -1
  }
  type: PROPER
}
, name: "brightnights gt"
type: OTHER
salience: 1.483878895669477e-05
mentions {
  text {
    content: "brightnights gt"
    begin_offset: -1
  }
  type: PROPER
}
, name: "tag"
type: OTHER
salience: 1.481803792557912e-05
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop south bank"
type: ORGANIZATION
salience: 1.4718591955897864e-05
mentions {
  text {
    content: "pop south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop south bank"
type: ORGANIZATION
salience: 1.471601990488125e-05
mentions {
  text {
    content: "pop south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "followers"
type: PERSON
salience: 1.4713884411321487e-05
mentions {
  text {
    content: "followers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop south bank"
type: ORGANIZATION
salience: 1.4713485143147409e-05
mentions {
  text {
    content: "pop south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop south bank"
type: ORGANIZATION
salience: 1.4713485143147409e-05
mentions {
  text {
    content: "pop south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon"
type: EVENT
salience: 1.4712785741721746e-05
mentions {
  text {
    content: "visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night go check visitlondon"
type: ORGANIZATION
salience: 1.47061964526074e-05
mentions {
  text {
    content: "night go check visitlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wave brightnights"
type: OTHER
salience: 1.4700825886393432e-05
mentions {
  text {
    content: "wave brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "youtubers"
type: PERSON
salience: 1.4666504284832627e-05
mentions {
  text {
    content: "youtubers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gardens"
type: LOCATION
salience: 1.4666504284832627e-05
mentions {
  text {
    content: "gardens"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lasers"
type: OTHER
salience: 1.4655719496659003e-05
mentions {
  text {
    content: "london lasers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn festival spectacle"
type: OTHER
salience: 1.4655719496659003e-05
mentions {
  text {
    content: "ldn festival spectacle"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lasers"
type: OTHER
salience: 1.4655719496659003e-05
mentions {
  text {
    content: "london lasers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "coin"
type: OTHER
salience: 1.465312197979074e-05
mentions {
  text {
    content: "coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "others"
type: PERSON
salience: 1.4650561752205249e-05
mentions {
  text {
    content: "others"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife"
type: EVENT
salience: 1.464897741243476e-05
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingoflyway nightlife"
type: OTHER
salience: 1.464897741243476e-05
mentions {
  text {
    content: "flamingoflyway nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nightlife"
type: OTHER
salience: 1.4642791938968003e-05
mentions {
  text {
    content: "nightlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gardens"
type: LOCATION
salience: 1.4633603313995991e-05
mentions {
  text {
    content: "gardens"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chrissykinsella friend toddler"
type: PERSON
salience: 1.4510585060634185e-05
mentions {
  text {
    content: "chrissykinsella friend toddler"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aether"
type: CONSUMER_GOOD
salience: 1.4487450243905187e-05
mentions {
  text {
    content: "aether"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tag"
type: OTHER
salience: 1.4487450243905187e-05
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lanterns"
type: OTHER
salience: 1.4483845006907359e-05
mentions {
  text {
    content: "lanterns"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dinner"
type: EVENT
salience: 1.4473453120444901e-05
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.4451354218181223e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glory electricpedals"
type: OTHER
salience: 1.4448412002820987e-05
mentions {
  text {
    content: "glory electricpedals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shaftesburyplc"
type: OTHER
salience: 1.4445518900174648e-05
mentions {
  text {
    content: "shaftesburyplc"
    begin_offset: -1
  }
  type: COMMON
}
, name: "couyard maxcoopermax"
type: OTHER
salience: 1.4445518900174648e-05
mentions {
  text {
    content: "couyard  maxcoopermax"
    begin_offset: -1
  }
  type: COMMON
}
, name: "boomerang maxcoopermax"
type: OTHER
salience: 1.4445518900174648e-05
mentions {
  text {
    content: "boomerang  maxcoopermax"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance experience aether"
type: PERSON
salience: 1.4445518900174648e-05
mentions {
  text {
    content: "chance experience aether"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chance experience aether"
type: PERSON
salience: 1.4445518900174648e-05
mentions {
  text {
    content: "chance experience aether"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lanterncompany"
type: ORGANIZATION
salience: 1.4442672181758098e-05
mentions {
  text {
    content: "lanterncompany"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.4439870938076638e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "programme"
type: OTHER
salience: 1.4437582649406977e-05
mentions {
  text {
    content: "programme"
    begin_offset: -1
  }
  type: COMMON
}
, name: "panership technicians_mih techniciansmakeithappen"
type: ORGANIZATION
salience: 1.4425586414290592e-05
mentions {
  text {
    content: "panership technicians_mih techniciansmakeithappen"
    begin_offset: -1
  }
  type: PROPER
}
, name: "bat"
type: OTHER
salience: 1.4369525160873309e-05
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "panership technicians_mih"
type: PERSON
salience: 1.4368347365234513e-05
mentions {
  text {
    content: "panership technicians_mih"
    begin_offset: -1
  }
  type: PROPER
}
, name: "bat"
type: OTHER
salience: 1.4350384844874498e-05
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bat"
type: OTHER
salience: 1.4345910130941775e-05
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wildlife"
type: OTHER
salience: 1.4333136277855374e-05
mentions {
  text {
    content: "wildlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 1.4325111806101631e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "theatre hare"
type: OTHER
salience: 1.4317441127786878e-05
mentions {
  text {
    content: "theatre  hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 1.4313728570414241e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights"
type: OTHER
salience: 1.4238934454624541e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 1.4229526641429402e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 1.4225589438865427e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plug bulbs"
type: OTHER
salience: 1.4225589438865427e-05
mentions {
  text {
    content: "plug bulbs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "officers"
type: PERSON
salience: 1.4220279808796477e-05
mentions {
  text {
    content: "officers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "head offices"
type: OTHER
salience: 1.4217685020412318e-05
mentions {
  text {
    content: "head offices"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stories"
type: WORK_OF_ART
salience: 1.4215129340300336e-05
mentions {
  text {
    content: "stories"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selfie"
type: OTHER
salience: 1.4212610039976425e-05
mentions {
  text {
    content: "selfie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 1.4210127119440585e-05
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 1.4205264960764907e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "storage"
type: OTHER
salience: 1.4205264960764907e-05
mentions {
  text {
    content: "storage"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 1.4202884813130368e-05
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bulb"
type: OTHER
salience: 1.4195934454619419e-05
mentions {
  text {
    content: "bulb"
    begin_offset: -1
  }
  type: COMMON
}
, name: "officers"
type: PERSON
salience: 1.4189252397045493e-05
mentions {
  text {
    content: "officers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 1.4149050912237726e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: PERSON
salience: 1.4149050912237726e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westend amp"
type: LOCATION
salience: 1.4146912690193858e-05
mentions {
  text {
    content: "westend amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: OTHER
salience: 1.414479993400164e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stairway heaven amp"
type: OTHER
salience: 1.414479993400164e-05
mentions {
  text {
    content: "stairway heaven amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp"
type: PERSON
salience: 1.4142713553155772e-05
mentions {
  text {
    content: "amp"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check light"
type: OTHER
salience: 1.4078987987886649e-05
mentions {
  text {
    content: "check light"
    begin_offset: -1
  }
  type: COMMON
}
, name: "charing cross road"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0c00p"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Charing_Cross_Road"
}
salience: 1.405740749760298e-05
mentions {
  text {
    content: "charing cross road"
    begin_offset: -1
  }
  type: PROPER
}
, name: "timeoutlondon londonist standardnews guardianphotos lumierelondon"
type: PERSON
salience: 1.3959188436274417e-05
mentions {
  text {
    content: "timeoutlondon londonist standardnews guardianphotos lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere southbank southbanklondon"
type: PERSON
salience: 1.395293656969443e-05
mentions {
  text {
    content: "lumiere  southbank southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "festival lights"
type: OTHER
salience: 1.3892440620111302e-05
mentions {
  text {
    content: "festival lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "taize prayer trudyakelly pa gift"
type: OTHER
salience: 1.3874123396817595e-05
mentions {
  text {
    content: "taize prayer  trudyakelly pa gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses cars"
type: OTHER
salience: 1.3874123396817595e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frictions"
type: OTHER
salience: 1.3867550478607882e-05
mentions {
  text {
    content: "frictions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses cars"
type: CONSUMER_GOOD
salience: 1.3864358152204659e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses cars"
type: CONSUMER_GOOD
salience: 1.3864358152204659e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gift"
type: OTHER
salience: 1.3864358152204659e-05
mentions {
  text {
    content: "gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon pa gift"
type: OTHER
salience: 1.3864358152204659e-05
mentions {
  text {
    content: "visitlondon pa gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beauty"
type: OTHER
salience: 1.3861224942957051e-05
mentions {
  text {
    content: "beauty"
    begin_offset: -1
  }
  type: COMMON
}
, name: "changes colours amp designs"
type: WORK_OF_ART
salience: 1.3858149031875655e-05
mentions {
  text {
    content: "changes colours amp designs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "home"
type: LOCATION
salience: 1.385216000926448e-05
mentions {
  text {
    content: "home"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stuff"
type: OTHER
salience: 1.383537437504856e-05
mentions {
  text {
    content: "stuff"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stroll"
type: OTHER
salience: 1.3807024515699595e-05
mentions {
  text {
    content: "stroll"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stroll"
type: OTHER
salience: 1.3807024515699595e-05
mentions {
  text {
    content: "stroll"
    begin_offset: -1
  }
  type: COMMON
}
, name: "delays fi"
type: OTHER
salience: 1.3799536645819899e-05
mentions {
  text {
    content: "delays fi"
    begin_offset: -1
  }
  type: COMMON
}
, name: "day ifo"
type: OTHER
salience: 1.3793485777569003e-05
mentions {
  text {
    content: "day ifo"
    begin_offset: -1
  }
  type: COMMON
}
, name: "object jacques"
type: PERSON
salience: 1.3793485777569003e-05
mentions {
  text {
    content: "object jacques"
    begin_offset: -1
  }
  type: COMMON
}
, name: "birdcage"
type: OTHER
salience: 1.3793485777569003e-05
mentions {
  text {
    content: "birdcage"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work collaboration owners"
type: PERSON
salience: 1.378377783112228e-05
mentions {
  text {
    content: "work collaboration owners"
    begin_offset: -1
  }
  type: COMMON
}
, name: "vote"
type: OTHER
salience: 1.378377783112228e-05
mentions {
  text {
    content: "vote"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fairies"
type: OTHER
salience: 1.3776612831861712e-05
mentions {
  text {
    content: "fairies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "yes"
type: OTHER
salience: 1.3774601939076092e-05
mentions {
  text {
    content: "yes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses cars"
type: OTHER
salience: 1.3767973541689571e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gift"
type: OTHER
salience: 1.3767973541689571e-05
mentions {
  text {
    content: "gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "age"
type: OTHER
salience: 1.375763076794101e-05
mentions {
  text {
    content: "age"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case wi fi"
type: OTHER
salience: 1.374963358102832e-05
mentions {
  text {
    content: "case wi fi"
    begin_offset: -1
  }
  type: COMMON
}
, name: "churches"
type: LOCATION
salience: 1.3745947399002034e-05
mentions {
  text {
    content: "churches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon sign"
type: OTHER
salience: 1.3742223018198274e-05
mentions {
  text {
    content: "neon sign"
    begin_offset: -1
  }
  type: COMMON
}
, name: "befaithfultoyourdreams"
type: PERSON
salience: 1.3742223018198274e-05
mentions {
  text {
    content: "befaithfultoyourdreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "vids"
type: OTHER
salience: 1.3742223018198274e-05
mentions {
  text {
    content: "vids"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bump"
type: OTHER
salience: 1.3742223018198274e-05
mentions {
  text {
    content: "bump"
    begin_offset: -1
  }
  type: COMMON
}
, name: "action"
type: OTHER
salience: 1.374104067508597e-05
mentions {
  text {
    content: "action"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wish"
type: OTHER
salience: 1.3733939340454526e-05
mentions {
  text {
    content: "wish"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stuff"
type: OTHER
salience: 1.3733107152802404e-05
mentions {
  text {
    content: "stuff"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piccadilly victoria"
type: OTHER
salience: 1.3723926713282708e-05
mentions {
  text {
    content: "piccadilly victoria"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "piccadilly victoria"
    begin_offset: -1
  }
  type: PROPER
}
, name: "frogs"
type: OTHER
salience: 1.3721703908231575e-05
mentions {
  text {
    content: "frogs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frogs"
type: OTHER
salience: 1.371806956740329e-05
mentions {
  text {
    content: "frogs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon"
type: ORGANIZATION
salience: 1.3716116882278584e-05
mentions {
  text {
    content: "lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "buses cars"
type: OTHER
salience: 1.3714512533624656e-05
mentions {
  text {
    content: "buses cars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium trudyakelly pa gift"
type: OTHER
salience: 1.3714512533624656e-05
mentions {
  text {
    content: "aquarium  trudyakelly pa gift"
    begin_offset: -1
  }
  type: COMMON
}
, name: "venues"
type: LOCATION
salience: 1.3708966434933245e-05
mentions {
  text {
    content: "venues"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bunny"
type: OTHER
salience: 1.3691789717995562e-05
mentions {
  text {
    content: "bunny"
    begin_offset: -1
  }
  type: COMMON
}
, name: "purple haze"
type: OTHER
salience: 1.3686436432180926e-05
mentions {
  text {
    content: "purple haze"
    begin_offset: -1
  }
  type: COMMON
}
, name: "help"
type: OTHER
salience: 1.3686436432180926e-05
mentions {
  text {
    content: "help"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo eleni"
type: PERSON
salience: 1.3686436432180926e-05
mentions {
  text {
    content: "photo eleni"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rg"
type: PERSON
salience: 1.3686436432180926e-05
mentions {
  text {
    content: "rg"
    begin_offset: -1
  }
  type: COMMON
}
, name: "princes"
type: OTHER
salience: 1.3658139323524665e-05
mentions {
  text {
    content: "princes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 1.3657987437909469e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 1.3655923794431146e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscrossn1c festival"
type: EVENT
salience: 1.3655923794431146e-05
mentions {
  text {
    content: "kingscrossn1c festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 1.3653884707309771e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival"
type: EVENT
salience: 1.3642151316162199e-05
mentions {
  text {
    content: "festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light festival"
type: EVENT
salience: 1.3638417840411421e-05
mentions {
  text {
    content: "light festival"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon thelondonguidee"
type: OTHER
salience: 1.3612902876047883e-05
mentions {
  text {
    content: "lumierelondon  thelondonguidee"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust visitlondon mayoroflondon"
type: OTHER
salience: 1.3568267604568973e-05
mentions {
  text {
    content: "aichoketrust visitlondon mayoroflondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust biggsytravels"
type: PERSON
salience: 1.3531231161323376e-05
mentions {
  text {
    content: "aichoketrust biggsytravels"
    begin_offset: -1
  }
  type: PROPER
}
, name: "job mayoroflondon"
type: OTHER
salience: 1.3414766726782545e-05
mentions {
  text {
    content: "job mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "darraghdoyle"
type: OTHER
salience: 1.3402010154095478e-05
mentions {
  text {
    content: "darraghdoyle"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canary wharf winter lights"
type: OTHER
salience: 1.3388444131123833e-05
mentions {
  text {
    content: "canary wharf winter lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust wrap"
type: OTHER
salience: 1.3381246390054002e-05
mentions {
  text {
    content: "aichoketrust wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "haya luz segunda edici\303\263n del festival de"
type: PERSON
salience: 1.33344601636054e-05
mentions {
  text {
    content: "haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
, name: "nofilter ihealondon wabbey"
type: ORGANIZATION
salience: 1.3299726560944691e-05
mentions {
  text {
    content: "nofilter ihealondon wabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "foodie"
type: OTHER
salience: 1.3244452929939143e-05
mentions {
  text {
    content: "foodie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dinner"
type: OTHER
salience: 1.3244452929939143e-05
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross road directions pall mall"
type: LOCATION
salience: 1.3244452929939143e-05
mentions {
  text {
    content: "cross road directions pall mall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience aether"
type: PERSON
salience: 1.3241961823950987e-05
mentions {
  text {
    content: "experience aether"
    begin_offset: -1
  }
  type: COMMON
}
, name: "experience aether"
type: PERSON
salience: 1.3237093298812397e-05
mentions {
  text {
    content: "experience aether"
    begin_offset: -1
  }
  type: COMMON
}
, name: "delight"
type: OTHER
salience: 1.3232865057943854e-05
mentions {
  text {
    content: "delight"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hare"
type: OTHER
salience: 1.3232368473836686e-05
mentions {
  text {
    content: "hare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "droplets"
type: OTHER
salience: 1.3232368473836686e-05
mentions {
  text {
    content: "droplets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography lantern"
type: OTHER
salience: 1.3232368473836686e-05
mentions {
  text {
    content: "photography lantern"
    begin_offset: -1
  }
  type: COMMON
}
, name: "humans"
type: PERSON
salience: 1.3229978321760427e-05
mentions {
  text {
    content: "humans"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check night market"
type: OTHER
salience: 1.3221128028817475e-05
mentions {
  text {
    content: "check night market"
    begin_offset: -1
  }
  type: COMMON
}
, name: "restaurants"
type: LOCATION
salience: 1.3221128028817475e-05
mentions {
  text {
    content: "restaurants"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check night market"
type: OTHER
salience: 1.3221128028817475e-05
mentions {
  text {
    content: "check night market"
    begin_offset: -1
  }
  type: COMMON
}
, name: "restaurants"
type: LOCATION
salience: 1.3221128028817475e-05
mentions {
  text {
    content: "restaurants"
    begin_offset: -1
  }
  type: COMMON
}
, name: "droplets"
type: OTHER
salience: 1.321897070738487e-05
mentions {
  text {
    content: "droplets"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tag"
type: OTHER
salience: 1.321897070738487e-05
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chrisplant one"
type: PERSON
salience: 1.321684248978272e-05
mentions {
  text {
    content: "chrisplant one"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography lantern"
type: OTHER
salience: 1.3214741557021625e-05
mentions {
  text {
    content: "photography lantern"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 1.3212668818596285e-05
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winterlights"
type: EVENT
salience: 1.321258969255723e-05
mentions {
  text {
    content: "winterlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hat"
type: OTHER
salience: 1.3212325939093716e-05
mentions {
  text {
    content: "hat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "game pong"
type: OTHER
salience: 1.3212325939093716e-05
mentions {
  text {
    content: "game pong"
    begin_offset: -1
  }
  type: COMMON
}
, name: "snapshots"
type: OTHER
salience: 1.3202658919908572e-05
mentions {
  text {
    content: "snapshots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "snapshots"
type: OTHER
salience: 1.3199561180954333e-05
mentions {
  text {
    content: "snapshots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videography musicvideo zacdenman"
type: PERSON
salience: 1.3193540326028597e-05
mentions {
  text {
    content: "videography musicvideo zacdenman"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mind"
type: OTHER
salience: 1.3190611753088888e-05
mentions {
  text {
    content: "mind"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aaron"
type: PERSON
salience: 1.3187736840336584e-05
mentions {
  text {
    content: "aaron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "conditions"
type: OTHER
salience: 1.3184911949792877e-05
mentions {
  text {
    content: "conditions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hat"
type: OTHER
salience: 1.3179406778363045e-05
mentions {
  text {
    content: "hat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "violin centrepiece"
type: OTHER
salience: 1.3179406778363045e-05
mentions {
  text {
    content: "violin centrepiece"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cosmoscope sculpture"
type: OTHER
salience: 1.3179406778363045e-05
mentions {
  text {
    content: "cosmoscope sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aaron"
type: PERSON
salience: 1.3176723768992815e-05
mentions {
  text {
    content: "aaron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aaron"
type: PERSON
salience: 1.3176723768992815e-05
mentions {
  text {
    content: "aaron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aaron"
type: PERSON
salience: 1.3176723768992815e-05
mentions {
  text {
    content: "aaron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aaron"
type: PERSON
salience: 1.3176723768992815e-05
mentions {
  text {
    content: "aaron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hatmanoflondon"
type: PERSON
salience: 1.3176723768992815e-05
mentions {
  text {
    content: "hatmanoflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videography musicvideo zacdenman"
type: OTHER
salience: 1.317148871748941e-05
mentions {
  text {
    content: "videography musicvideo zacdenman"
    begin_offset: -1
  }
  type: COMMON
}
, name: "atmosphere"
type: OTHER
salience: 1.317148871748941e-05
mentions {
  text {
    content: "atmosphere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "atmosphere"
type: OTHER
salience: 1.317148871748941e-05
mentions {
  text {
    content: "atmosphere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "faves"
type: OTHER
salience: 1.316893394687213e-05
mentions {
  text {
    content: "faves"
    begin_offset: -1
  }
  type: COMMON
}
, name: "must"
type: OTHER
salience: 1.3114281500747893e-05
mentions {
  text {
    content: "must"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography engcathedrals"
type: PERSON
salience: 1.3114281500747893e-05
mentions {
  text {
    content: "photography  engcathedrals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "training jobs"
type: OTHER
salience: 1.3109460269333795e-05
mentions {
  text {
    content: "training jobs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tfl update"
type: OTHER
salience: 1.3109460269333795e-05
mentions {
  text {
    content: "tfl update"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bond"
type: OTHER
salience: 1.3109460269333795e-05
mentions {
  text {
    content: "bond"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography fave"
type: OTHER
salience: 1.3083243175060488e-05
mentions {
  text {
    content: "photography fave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "offer"
type: OTHER
salience: 1.3075382412353065e-05
mentions {
  text {
    content: "offer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "offer"
type: OTHER
salience: 1.3075382412353065e-05
mentions {
  text {
    content: "offer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kx10 omg newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium openyoureyesldn show"
type: PERSON
salience: 1.3068046428088564e-05
mentions {
  text {
    content: "kx10 omg   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  openyoureyesldn show"
    begin_offset: -1
  }
  type: PROPER
}
, name: "bond"
type: OTHER
salience: 1.3067892723483965e-05
mentions {
  text {
    content: "bond"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bond"
type: OTHER
salience: 1.3064275663055014e-05
mentions {
  text {
    content: "bond"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bond"
type: OTHER
salience: 1.3064275663055014e-05
mentions {
  text {
    content: "bond"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hat"
type: OTHER
salience: 1.3064275663055014e-05
mentions {
  text {
    content: "hat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shop"
type: LOCATION
salience: 1.3057279829808977e-05
mentions {
  text {
    content: "shop"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 levanterman"
type: PERSON
salience: 1.3053811926511116e-05
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  levanterman"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
    begin_offset: -1
  }
  type: PROPER
}
, name: "citylife travelblogger"
type: PERSON
salience: 1.3035388292337302e-05
mentions {
  text {
    content: "citylife travelblogger"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "citylife travelblogger"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere london rhianbwatts"
type: PERSON
salience: 1.2970536772627383e-05
mentions {
  text {
    content: "lumiere london   rhianbwatts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 1.2948107723786961e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wrap"
type: OTHER
salience: 1.2948082257935312e-05
mentions {
  text {
    content: "wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 1.2944943591719493e-05
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 1.2944398804393131e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gloves amp scarf"
type: OTHER
salience: 1.2940233318659011e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "events"
type: EVENT
salience: 1.2937233805132564e-05
mentions {
  text {
    content: "events"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta"
type: LOCATION
salience: 1.2914440958411433e-05
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westend"
type: LOCATION
salience: 1.2897930901090149e-05
mentions {
  text {
    content: "westend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lovelyweather lightexhibition london2018"
type: PERSON
salience: 1.2894722203782294e-05
mentions {
  text {
    content: "lovelyweather  lightexhibition london2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife travelbloggers lovelondon"
type: ORGANIZATION
salience: 1.2892097402072977e-05
mentions {
  text {
    content: "lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife  travelbloggers lovelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere aworks"
type: OTHER
salience: 1.2826286365452688e-05
mentions {
  text {
    content: "lumiere aworks"
    begin_offset: -1
  }
  type: PROPER
}
, name: "friend toddler"
type: PERSON
salience: 1.2796402188541833e-05
mentions {
  text {
    content: "friend toddler"
    begin_offset: -1
  }
  type: COMMON
}
, name: "emmaallendesign greymatters timeoutlondon visitlondon"
type: OTHER
salience: 1.2748134395224042e-05
mentions {
  text {
    content: "emmaallendesign greymatters timeoutlondon  visitlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "kingdom"
type: LOCATION
salience: 1.2721081475319806e-05
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "king"
type: PERSON
salience: 1.2717394383798819e-05
mentions {
  text {
    content: "king"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingdom"
type: LOCATION
salience: 1.2712024727079552e-05
mentions {
  text {
    content: "kingdom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canal kings"
type: OTHER
salience: 1.271027485927334e-05
mentions {
  text {
    content: "canal kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canal kings"
type: OTHER
salience: 1.271027485927334e-05
mentions {
  text {
    content: "canal kings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "umbrella project performance"
type: OTHER
salience: 1.2692421478277538e-05
mentions {
  text {
    content: "umbrella project performance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beauty"
type: OTHER
salience: 1.2689997674897313e-05
mentions {
  text {
    content: "beauty"
    begin_offset: -1
  }
  type: COMMON
}
, name: "home"
type: LOCATION
salience: 1.2687612070294563e-05
mentions {
  text {
    content: "home"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival hurry"
type: OTHER
salience: 1.2687612070294563e-05
mentions {
  text {
    content: "festival hurry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 1.2687120943155605e-05
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gallery"
type: LOCATION
salience: 1.2671867807512172e-05
mentions {
  text {
    content: "gallery"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fairies"
type: OTHER
salience: 1.2670631804212462e-05
mentions {
  text {
    content: "fairies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fairies"
type: OTHER
salience: 1.2670631804212462e-05
mentions {
  text {
    content: "fairies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival hurry"
type: OTHER
salience: 1.2661531400226522e-05
mentions {
  text {
    content: "festival hurry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "biggsytravels pa beauty"
type: OTHER
salience: 1.2661531400226522e-05
mentions {
  text {
    content: "biggsytravels pa beauty"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dials"
type: OTHER
salience: 1.2657583283726126e-05
mentions {
  text {
    content: "dials"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canonukandie visitlondon aichoketrust southbanklondon fuzzworks_uk"
type: ORGANIZATION
salience: 1.264807451661909e-05
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon  fuzzworks_uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon lumierelondon2018 visitlondon fuzzworks_uk"
type: WORK_OF_ART
salience: 1.2624081136891618e-05
mentions {
  text {
    content: "lumierelondon lumierelondon2018  visitlondon  fuzzworks_uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "posts tix"
type: OTHER
salience: 1.24539128592005e-05
mentions {
  text {
    content: "posts tix"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rainbow tunnel"
type: LOCATION
salience: 1.2450906069716439e-05
mentions {
  text {
    content: "rainbow tunnel"
    begin_offset: -1
  }
  type: COMMON
}
, name: "anywhere"
type: LOCATION
salience: 1.2439752936188597e-05
mentions {
  text {
    content: "anywhere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ping pong side"
type: OTHER
salience: 1.2437088116712403e-05
mentions {
  text {
    content: "ping pong side"
    begin_offset: -1
  }
  type: COMMON
}
, name: "coat turn telly"
type: OTHER
salience: 1.2435309145075735e-05
mentions {
  text {
    content: "coat turn telly"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sea level"
type: OTHER
salience: 1.2434469681465998e-05
mentions {
  text {
    content: "sea level"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guardian angels"
type: ORGANIZATION
salience: 1.242442613147432e-05
mentions {
  text {
    content: "guardian angels"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guardian angels"
type: PERSON
salience: 1.242442613147432e-05
mentions {
  text {
    content: "guardian angels"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guardian angels"
type: ORGANIZATION
salience: 1.242442613147432e-05
mentions {
  text {
    content: "guardian angels"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlife sessions"
type: EVENT
salience: 1.242442613147432e-05
mentions {
  text {
    content: "londonlife sessions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish telephone box butterfly"
type: CONSUMER_GOOD
salience: 1.2422016880009323e-05
mentions {
  text {
    content: "fish telephone box  butterfly"
    begin_offset: -1
  }
  type: COMMON
}
, name: "happylondon"
type: PERSON
salience: 1.2422016880009323e-05
mentions {
  text {
    content: "happylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lights darkness"
type: OTHER
salience: 1.2374315701890737e-05
mentions {
  text {
    content: "lights darkness"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon pleasure"
type: OTHER
salience: 1.2370463991828728e-05
mentions {
  text {
    content: "visitlondon pleasure"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp regent street btwn moimer"
type: LOCATION
salience: 1.2365915608825162e-05
mentions {
  text {
    content: "amp regent street btwn moimer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlife sessions"
type: EVENT
salience: 1.2341185538389254e-05
mentions {
  text {
    content: "londonlife sessions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp regent street btwn moimer"
type: LOCATION
salience: 1.2326705473242328e-05
mentions {
  text {
    content: "amp regent street btwn moimer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp regent street btwn moimer"
type: LOCATION
salience: 1.2323293958615977e-05
mentions {
  text {
    content: "amp regent street btwn moimer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp regent street btwn moimer"
type: LOCATION
salience: 1.2323293958615977e-05
mentions {
  text {
    content: "amp regent street btwn moimer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nickede"
type: OTHER
salience: 1.2293007785046939e-05
mentions {
  text {
    content: "nickede"
    begin_offset: -1
  }
  type: COMMON
}
, name: "locations"
type: LOCATION
salience: 1.2223721569171175e-05
mentions {
  text {
    content: "locations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "twitter"
type: OTHER
salience: 1.2182261343696155e-05
mentions {
  text {
    content: "twitter"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "twitter"
    begin_offset: -1
  }
  type: PROPER
}
, name: "goods"
type: CONSUMER_GOOD
salience: 1.2139685168222059e-05
mentions {
  text {
    content: "goods"
    begin_offset: -1
  }
  type: COMMON
}
, name: "justin_venn lumierelondon2018 lumierelondon biuk"
type: PERSON
salience: 1.2138534657424316e-05
mentions {
  text {
    content: "justin_venn  lumierelondon2018 lumierelondon  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "popcornmedia_uk wrap"
type: PERSON
salience: 1.2119670827814844e-05
mentions {
  text {
    content: "popcornmedia_uk wrap"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey westminsterabbey biuk"
type: PERSON
salience: 1.2112493095628452e-05
mentions {
  text {
    content: "wabbey westminsterabbey  biuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "look updates"
type: OTHER
salience: 1.2076457096554805e-05
mentions {
  text {
    content: "look updates"
    begin_offset: -1
  }
  type: COMMON
}
, name: "suzystories"
type: LOCATION
salience: 1.2074220649083145e-05
mentions {
  text {
    content: "suzystories"
    begin_offset: -1
  }
  type: COMMON
}
, name: "update"
type: OTHER
salience: 1.2067707757523749e-05
mentions {
  text {
    content: "update"
    begin_offset: -1
  }
  type: COMMON
}
, name: "must"
type: OTHER
salience: 1.2061471352353692e-05
mentions {
  text {
    content: "must"
    begin_offset: -1
  }
  type: COMMON
}
, name: "must"
type: OTHER
salience: 1.2061471352353692e-05
mentions {
  text {
    content: "must"
    begin_offset: -1
  }
  type: COMMON
}
, name: "must"
type: OTHER
salience: 1.2061471352353692e-05
mentions {
  text {
    content: "must"
    begin_offset: -1
  }
  type: COMMON
}
, name: "must"
type: OTHER
salience: 1.2059450455126353e-05
mentions {
  text {
    content: "must"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trees"
type: OTHER
salience: 1.2047874406562187e-05
mentions {
  text {
    content: "trees"
    begin_offset: -1
  }
  type: COMMON
}
, name: "\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium cheriecity"
type: PERSON
salience: 1.1961006748606451e-05
mentions {
  text {
    content: "\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  cheriecity"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gloves amp scarf"
type: OTHER
salience: 1.1926455044886097e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flickr"
type: OTHER
salience: 1.1925330909434706e-05
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 1.1915179129573517e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gloves amp scarf"
type: OTHER
salience: 1.1908457054232713e-05
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tube"
type: OTHER
salience: 1.1844349501188844e-05
mentions {
  text {
    content: "tube"
    begin_offset: -1
  }
  type: COMMON
}
, name: "case"
type: OTHER
salience: 1.1839021681225859e-05
mentions {
  text {
    content: "case"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fitzrovia dontmissout egondesign"
type: PERSON
salience: 1.1807830560428556e-05
mentions {
  text {
    content: "fitzrovia  dontmissout  egondesign"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere aworks"
type: OTHER
salience: 1.1793182238761801e-05
mentions {
  text {
    content: "lumiere aworks"
    begin_offset: -1
  }
  type: PROPER
}
, name: "friend toddler"
type: PERSON
salience: 1.1769109732995275e-05
mentions {
  text {
    content: "friend toddler"
    begin_offset: -1
  }
  type: COMMON
}
, name: "friend toddler"
type: PERSON
salience: 1.1767137948481832e-05
mentions {
  text {
    content: "friend toddler"
    begin_offset: -1
  }
  type: COMMON
}
, name: "videoproduction zacvideo studiosession"
type: ORGANIZATION
salience: 1.1754622391890734e-05
mentions {
  text {
    content: "videoproduction zacvideo studiosession"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "videoproduction zacvideo studiosession"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "videoproduction zacvideo studiosession"
    begin_offset: -1
  }
  type: PROPER
}
, name: "projection voyages"
type: OTHER
salience: 1.1677908332785591e-05
mentions {
  text {
    content: "projection voyages"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aist imakefings leakestreet"
type: PERSON
salience: 1.1676344911393244e-05
mentions {
  text {
    content: "aist imakefings leakestreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "aist imakefings leakestreet"
    begin_offset: -1
  }
  type: PROPER
}
, name: "decision"
type: OTHER
salience: 1.1603376151470002e-05
mentions {
  text {
    content: "decision"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon marshalljulius london"
type: ORGANIZATION
salience: 1.1597448974498548e-05
mentions {
  text {
    content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  marshalljulius london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "southbank london"
type: LOCATION
salience: 1.1595758223847952e-05
mentions {
  text {
    content: "southbank london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "daan roosegaarde london"
type: LOCATION
salience: 1.1594087482080795e-05
mentions {
  text {
    content: "daan roosegaarde  london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "flickr iesphotos cityatnight london"
type: LOCATION
salience: 1.1592436749197077e-05
mentions {
  text {
    content: "flickr iesphotos cityatnight  london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wasthatadream"
type: OTHER
salience: 1.1592165719775949e-05
mentions {
  text {
    content: "wasthatadream"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leakestreetarches development"
type: OTHER
salience: 1.1592165719775949e-05
mentions {
  text {
    content: "leakestreetarches development"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colcannon"
type: OTHER
salience: 1.1592165719775949e-05
mentions {
  text {
    content: "colcannon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon carnabylondon london"
type: LOCATION
salience: 1.1587597327888943e-05
mentions {
  text {
    content: "lumierelondon carnabylondon london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "cheese"
type: OTHER
salience: 1.1586877917579841e-05
mentions {
  text {
    content: "cheese"
    begin_offset: -1
  }
  type: COMMON
}
, name: "xtophe_williams"
type: OTHER
salience: 1.1581781109271105e-05
mentions {
  text {
    content: "xtophe_williams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature"
type: OTHER
salience: 1.157578662969172e-05
mentions {
  text {
    content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature"
    begin_offset: -1
  }
  type: PROPER
}
, name: "xtophe_williams"
type: ORGANIZATION
salience: 1.1574466043384746e-05
mentions {
  text {
    content: "xtophe_williams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leakestreetarches development"
type: OTHER
salience: 1.1574466043384746e-05
mentions {
  text {
    content: "leakestreetarches development"
    begin_offset: -1
  }
  type: COMMON
}
, name: "clarateddy"
type: PERSON
salience: 1.1572109542612452e-05
mentions {
  text {
    content: "clarateddy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "couyard clarateddy"
type: PERSON
salience: 1.1572109542612452e-05
mentions {
  text {
    content: "couyard  clarateddy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "xtophe_williams"
type: OTHER
salience: 1.1572109542612452e-05
mentions {
  text {
    content: "xtophe_williams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gasholders"
type: PERSON
salience: 1.1569792150112335e-05
mentions {
  text {
    content: "gasholders"
    begin_offset: -1
  }
  type: COMMON
}
, name: "winterlights yourcanarywharf"
type: PERSON
salience: 1.1568079571588896e-05
mentions {
  text {
    content: "winterlights yourcanarywharf"
    begin_offset: -1
  }
  type: PROPER
}
, name: "person"
type: PERSON
salience: 1.156751204689499e-05
mentions {
  text {
    content: "person"
    begin_offset: -1
  }
  type: COMMON
}
, name: "person"
type: PERSON
salience: 1.156751204689499e-05
mentions {
  text {
    content: "person"
    begin_offset: -1
  }
  type: COMMON
}
, name: "\343\201\256\350\213\261\345\233\275\343\201\212\343\202\210\343\201\263\345\233\275\351\232\233\347\232\204\343\201\252\343\202\242\343\203\274\343\203\206\343\202\243\343\202\271\343\203\210\343\201\237\343\201\241\343\201\253\343\202\210\343\201\243\343\201\246 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\261\241\345\276\264\347\232\204\343\201\252\345\273\272\347\257\211\343\201\250\351\200\232\343\202\212\343\202\222\345\206\215\346\203\263\345\203\217\343\201\227 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\241\227\343\202\222 \345\244\234\351\226\223\347\276\216\350\241\223\351\244\250\343\201\253\345\244\211\343\201\210\343\201\276\343\201\231 \350\213\261\345\233\275\343\201\256\343\203\233\343\203\206\343\203\253 newsdigest \350\213\261\345\233\275 \346\230\250\346\227\245\343\201\213\343\202\211\345\247\213\343\201\276\343\201\243\343\201\237\343\203\252\343\203\245\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263 \345\213\225\347\224\273\343\201\257\343\202\255\343\203\263\343\202\260\343\202\271 \343\202\257\343\203\255\343\202\271 \343\202\260\343\203\251\343\203\212\343\203\252\343\203\274\343\202\271\343\202\257\343\202\250\343\202\242\343\201\247\345\261\225\347\244\272\343\201\225\343\202\214\343\201\246\343\201\204\343\202\213 \346\264\252\346\260\264\343\202\222\343\203\220\343\203\274\343\203\201\343\203\243\343\203\253\343\201\247\350\241\250\347\217\276\343\201\227\343\201\246\343\201\204\343\202\213\345\205\211\343\201\250\351\234\247\343\201\256\343\202\242\343\203\274\343\203\210 waterlicht"
type: PERSON
salience: 1.1547112080734223e-05
mentions {
  text {
    content: "\343\201\256\350\213\261\345\233\275\343\201\212\343\202\210\343\201\263\345\233\275\351\232\233\347\232\204\343\201\252\343\202\242\343\203\274\343\203\206\343\202\243\343\202\271\343\203\210\343\201\237\343\201\241\343\201\253\343\202\210\343\201\243\343\201\246 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\261\241\345\276\264\347\232\204\343\201\252\345\273\272\347\257\211\343\201\250\351\200\232\343\202\212\343\202\222\345\206\215\346\203\263\345\203\217\343\201\227 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\241\227\343\202\222 \345\244\234\351\226\223\347\276\216\350\241\223\351\244\250\343\201\253\345\244\211\343\201\210\343\201\276\343\201\231  \350\213\261\345\233\275\343\201\256\343\203\233\343\203\206\343\203\253  newsdigest \350\213\261\345\233\275 \346\230\250\346\227\245\343\201\213\343\202\211\345\247\213\343\201\276\343\201\243\343\201\237\343\203\252\343\203\245\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263 \345\213\225\347\224\273\343\201\257\343\202\255\343\203\263\343\202\260\343\202\271 \343\202\257\343\203\255\343\202\271 \343\202\260\343\203\251\343\203\212\343\203\252\343\203\274\343\202\271\343\202\257\343\202\250\343\202\242\343\201\247\345\261\225\347\244\272\343\201\225\343\202\214\343\201\246\343\201\204\343\202\213 \346\264\252\346\260\264\343\202\222\343\203\220\343\203\274\343\203\201\343\203\243\343\203\253\343\201\247\350\241\250\347\217\276\343\201\227\343\201\246\343\201\204\343\202\213\345\205\211\343\201\250\351\234\247\343\201\256\343\202\242\343\203\274\343\203\210 waterlicht"
    begin_offset: -1
  }
  type: PROPER
}
, name: "redbridgelive umbrellaproject thisisredbridge mylocalculture"
type: OTHER
salience: 1.1540888408489991e-05
mentions {
  text {
    content: "redbridgelive umbrellaproject thisisredbridge mylocalculture"
    begin_offset: -1
  }
  type: PROPER
}
, name: "anyone"
type: PERSON
salience: 1.1539444130903576e-05
mentions {
  text {
    content: "anyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "river quality"
type: OTHER
salience: 1.1517270650074352e-05
mentions {
  text {
    content: "river quality"
    begin_offset: -1
  }
  type: COMMON
}
, name: "locations"
type: LOCATION
salience: 1.1513036042742897e-05
mentions {
  text {
    content: "locations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amsharif"
type: PERSON
salience: 1.1501050721562933e-05
mentions {
  text {
    content: "amsharif"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp witchcraft"
type: OTHER
salience: 1.1486517905723304e-05
mentions {
  text {
    content: "amp witchcraft"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colours sphere"
type: OTHER
salience: 1.1479781278467271e-05
mentions {
  text {
    content: "colours sphere"
    begin_offset: -1
  }
  type: COMMON
}
, name: "excursion"
type: EVENT
salience: 1.1470247955003288e-05
mentions {
  text {
    content: "excursion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "movement"
type: OTHER
salience: 1.1470247955003288e-05
mentions {
  text {
    content: "movement"
    begin_offset: -1
  }
  type: COMMON
}
, name: "attendance"
type: OTHER
salience: 1.142500332207419e-05
mentions {
  text {
    content: "attendance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kulbinderm"
type: OTHER
salience: 1.1416284905862994e-05
mentions {
  text {
    content: "kulbinderm"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 1.1406253179302439e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "abbey"
type: LOCATION
salience: 1.1398316019040067e-05
mentions {
  text {
    content: "abbey"
    begin_offset: -1
  }
  type: COMMON
}
, name: "volumes"
type: OTHER
salience: 1.139150026574498e-05
mentions {
  text {
    content: "volumes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "haywardgallery"
type: PERSON
salience: 1.1385264770069625e-05
mentions {
  text {
    content: "haywardgallery"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thamespulse seacontainers mondrianhotel jasonbruges"
type: PERSON
salience: 1.1382820957805961e-05
mentions {
  text {
    content: "thamespulse seacontainers mondrianhotel jasonbruges"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "thamespulse seacontainers mondrianhotel jasonbruges"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "thamespulse seacontainers mondrianhotel"
    begin_offset: -1
  }
  type: PROPER
}
, name: "tflbusales"
type: OTHER
salience: 1.1381258445908315e-05
mentions {
  text {
    content: "tflbusales"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tweeps"
type: PERSON
salience: 1.1379298484825995e-05
mentions {
  text {
    content: "tweeps"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bandwagon"
type: OTHER
salience: 1.1377364899090026e-05
mentions {
  text {
    content: "bandwagon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tweeps"
type: PERSON
salience: 1.1371722393960226e-05
mentions {
  text {
    content: "tweeps"
    begin_offset: -1
  }
  type: COMMON
}
, name: "facade"
type: OTHER
salience: 1.1369891581125557e-05
mentions {
  text {
    content: "facade"
    begin_offset: -1
  }
  type: COMMON
}
, name: "crafts goods"
type: OTHER
salience: 1.1368084415153135e-05
mentions {
  text {
    content: "crafts goods"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tweeps"
type: PERSON
salience: 1.1366300896042958e-05
mentions {
  text {
    content: "tweeps"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tweeps"
type: PERSON
salience: 1.1366300896042958e-05
mentions {
  text {
    content: "tweeps"
    begin_offset: -1
  }
  type: COMMON
}
, name: "butterflies"
type: OTHER
salience: 1.1364539204805624e-05
mentions {
  text {
    content: "butterflies"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust visitlondon timeoutlondon lumierelondon2018 lumiere lumierelondon lightfestival lighta kingscrossn1c"
type: PERSON
salience: 1.1349657143000513e-05
mentions {
  text {
    content: "aichoketrust visitlondon timeoutlondon  lumierelondon2018 lumiere lumierelondon lightfestival lighta  kingscrossn1c"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "description"
type: OTHER
salience: 1.1312288734188769e-05
mentions {
  text {
    content: "description"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london architecture"
type: OTHER
salience: 1.1251216164964717e-05
mentions {
  text {
    content: "london architecture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "event"
type: EVENT
salience: 1.1164176612510346e-05
mentions {
  text {
    content: "event"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ppl"
type: ORGANIZATION
salience: 1.1136708963022102e-05
mentions {
  text {
    content: "ppl"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mrsmmain chance"
type: OTHER
salience: 1.1135518434457481e-05
mentions {
  text {
    content: "mrsmmain chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance"
type: PERSON
salience: 1.0919226951955352e-05
mentions {
  text {
    content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance"
    begin_offset: -1
  }
  type: PROPER
}
, name: "redbridgelive umbrellaproject thisisredbridge mylocalculture engcathedrals"
type: PERSON
salience: 1.0905065209954046e-05
mentions {
  text {
    content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  engcathedrals"
    begin_offset: -1
  }
  type: PROPER
}
, name: "canonukandie visitlondon aichoketrust southbanklondon levanterman"
type: PERSON
salience: 1.0880601621465757e-05
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon  levanterman"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust asturn"
type: OTHER
salience: 1.0878886314458214e-05
mentions {
  text {
    content: "aichoketrust  asturn"
    begin_offset: -1
  }
  type: PROPER
}
, name: "squares"
type: OTHER
salience: 1.0876761734834872e-05
mentions {
  text {
    content: "squares"
    begin_offset: -1
  }
  type: COMMON
}
, name: "instagram sneequaye"
type: OTHER
salience: 1.0875131920329295e-05
mentions {
  text {
    content: "instagram sneequaye"
    begin_offset: -1
  }
  type: PROPER
}
, name: "cycling"
type: EVENT
salience: 1.0835960893018637e-05
mentions {
  text {
    content: "cycling"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cycling"
type: EVENT
salience: 1.0835960893018637e-05
mentions {
  text {
    content: "cycling"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon carnabylondon"
type: PERSON
salience: 1.0789546649903059e-05
mentions {
  text {
    content: "lumierelondon  carnabylondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "happylondon"
type: OTHER
salience: 1.0611071047605947e-05
mentions {
  text {
    content: "happylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colcannon"
type: OTHER
salience: 1.0607819604047108e-05
mentions {
  text {
    content: "colcannon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "props"
type: OTHER
salience: 1.0607819604047108e-05
mentions {
  text {
    content: "props"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colcannon"
type: OTHER
salience: 1.0607819604047108e-05
mentions {
  text {
    content: "colcannon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "business"
type: OTHER
salience: 1.060582508216612e-05
mentions {
  text {
    content: "business"
    begin_offset: -1
  }
  type: COMMON
}
, name: "clothes"
type: OTHER
salience: 1.0603860573610291e-05
mentions {
  text {
    content: "clothes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bits"
type: OTHER
salience: 1.0600019777484704e-05
mentions {
  text {
    content: "bits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "benjamingammon"
type: PERSON
salience: 1.0596289030218031e-05
mentions {
  text {
    content: "benjamingammon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain cheekychops"
type: OTHER
salience: 1.0594463674351573e-05
mentions {
  text {
    content: "rain  cheekychops"
    begin_offset: -1
  }
  type: COMMON
}
, name: "neon tower"
type: LOCATION
salience: 1.0592663784336764e-05
mentions {
  text {
    content: "neon tower"
    begin_offset: -1
  }
  type: COMMON
}
, name: "congratulations"
type: OTHER
salience: 1.0592663784336764e-05
mentions {
  text {
    content: "congratulations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop bar"
type: LOCATION
salience: 1.058913767337799e-05
mentions {
  text {
    content: "pop bar"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pop bar"
type: LOCATION
salience: 1.058913767337799e-05
mentions {
  text {
    content: "pop bar"
    begin_offset: -1
  }
  type: COMMON
}
, name: "businesses"
type: ORGANIZATION
salience: 1.0582362847344484e-05
mentions {
  text {
    content: "businesses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "memories"
type: OTHER
salience: 1.0582088179944549e-05
mentions {
  text {
    content: "memories"
    begin_offset: -1
  }
  type: COMMON
}
, name: "clothes"
type: OTHER
salience: 1.0580723028397188e-05
mentions {
  text {
    content: "clothes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "businesses"
type: ORGANIZATION
salience: 1.0580723028397188e-05
mentions {
  text {
    content: "businesses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rain snow brain fog shine"
type: CONSUMER_GOOD
salience: 1.0579455192782916e-05
mentions {
  text {
    content: "rain snow brain fog shine"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival goers"
type: PERSON
salience: 1.0576874956313986e-05
mentions {
  text {
    content: "festival goers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "memory"
type: OTHER
salience: 1.0576874956313986e-05
mentions {
  text {
    content: "memory"
    begin_offset: -1
  }
  type: COMMON
}
, name: "film"
type: WORK_OF_ART
salience: 1.057186455000192e-05
mentions {
  text {
    content: "film"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nurse"
type: PERSON
salience: 1.0569430742179975e-05
mentions {
  text {
    content: "nurse"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sphere lumiere jakubkrupa"
type: PERSON
salience: 1.056704240909312e-05
mentions {
  text {
    content: "sphere lumiere   jakubkrupa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "angles"
type: OTHER
salience: 1.056704240909312e-05
mentions {
  text {
    content: "angles"
    begin_offset: -1
  }
  type: COMMON
}
, name: "saws"
type: OTHER
salience: 1.056704240909312e-05
mentions {
  text {
    content: "saws"
    begin_offset: -1
  }
  type: COMMON
}
, name: "album"
type: WORK_OF_ART
salience: 1.056704240909312e-05
mentions {
  text {
    content: "album"
    begin_offset: -1
  }
  type: COMMON
}
, name: "edition"
type: WORK_OF_ART
salience: 1.056704240909312e-05
mentions {
  text {
    content: "edition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "board game"
type: CONSUMER_GOOD
salience: 1.0562393981672358e-05
mentions {
  text {
    content: "board game"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rainbow shades"
type: OTHER
salience: 1.0560132068349048e-05
mentions {
  text {
    content: "rainbow shades"
    begin_offset: -1
  }
  type: COMMON
}
, name: "red man"
type: PERSON
salience: 1.0557908353803214e-05
mentions {
  text {
    content: "red man"
    begin_offset: -1
  }
  type: COMMON
}
, name: "green man"
type: PERSON
salience: 1.0557908353803214e-05
mentions {
  text {
    content: "green man"
    begin_offset: -1
  }
  type: COMMON
}
, name: "church services"
type: OTHER
salience: 1.0553573702054564e-05
mentions {
  text {
    content: "church services"
    begin_offset: -1
  }
  type: COMMON
}
, name: "prevalence"
type: OTHER
salience: 1.0551460036367644e-05
mentions {
  text {
    content: "prevalence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "timeoutlondon grabber"
type: CONSUMER_GOOD
salience: 1.054938093147939e-05
mentions {
  text {
    content: "timeoutlondon grabber"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa"
type: OTHER
salience: 1.052781954058446e-05
mentions {
  text {
    content: "pa"
    begin_offset: -1
  }
  type: COMMON
}
, name: "magnificence"
type: OTHER
salience: 1.0503561497898772e-05
mentions {
  text {
    content: "magnificence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pity"
type: OTHER
salience: 1.04755154097802e-05
mentions {
  text {
    content: "pity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "description"
type: OTHER
salience: 1.040413735609036e-05
mentions {
  text {
    content: "description"
    begin_offset: -1
  }
  type: COMMON
}
, name: "description"
type: OTHER
salience: 1.040413735609036e-05
mentions {
  text {
    content: "description"
    begin_offset: -1
  }
  type: COMMON
}
, name: "details"
type: OTHER
salience: 1.0304122042725794e-05
mentions {
  text {
    content: "details"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "details"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "details"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rainbow tunnel"
type: LOCATION
salience: 1.0299934729118831e-05
mentions {
  text {
    content: "rainbow tunnel"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxfordcircus julie_guldahl"
type: LOCATION
salience: 1.0216558621323202e-05
mentions {
  text {
    content: "oxfordcircus  julie_guldahl"
    begin_offset: -1
  }
  type: PROPER
}
, name: "chance check"
type: OTHER
salience: 1.0212367669737432e-05
mentions {
  text {
    content: "chance check"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lewisham lumierelondon"
type: PERSON
salience: 1.020622130454285e-05
mentions {
  text {
    content: "lewisham lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster lumierelondon"
type: ORGANIZATION
salience: 1.0201911209151149e-05
mentions {
  text {
    content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster  lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere lumierelondon"
type: PERSON
salience: 1.0201911209151149e-05
mentions {
  text {
    content: "lumiere  lumierelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "photos"
type: WORK_OF_ART
salience: 1.0172756446991116e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: WORK_OF_ART
salience: 1.0169842425966635e-05
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photos"
type: WORK_OF_ART
salience: 1.0166995707550086e-05
mentions {
  text {
    content: "photos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography"
type: OTHER
salience: 1.0165595995204058e-05
mentions {
  text {
    content: "photography"
    begin_offset: -1
  }
  type: COMMON
}
, name: "atransformslives aichoketrust visitlondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon justin_venn lumierelondon2018 lumierelondon theresidentmag"
type: PERSON
salience: 1.0146837666979991e-05
mentions {
  text {
    content: "atransformslives aichoketrust visitlondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  justin_venn  lumierelondon2018 lumierelondon  theresidentmag"
    begin_offset: -1
  }
  type: PROPER
}
, name: "jungle city"
type: ORGANIZATION
salience: 1.0146812201128341e-05
mentions {
  text {
    content: "jungle city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 1.0140931408386678e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 1.0139503501704894e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nofilter cityscape"
type: LOCATION
salience: 1.0139503501704894e-05
mentions {
  text {
    content: "nofilter cityscape"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city"
type: LOCATION
salience: 1.0135318007087335e-05
mentions {
  text {
    content: "city"
    begin_offset: -1
  }
  type: COMMON
}
, name: "50 aists couauldgall"
type: ORGANIZATION
salience: 1.0120179467776325e-05
mentions {
  text {
    content: "50 aists couauldgall"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london lumiere dewdropbook dewdrop ay abi"
type: ORGANIZATION
salience: 1.0110945368069224e-05
mentions {
  text {
    content: "london lumiere  dewdropbook dewdrop ay abi"
    begin_offset: -1
  }
  type: PROPER
}
, name: "force"
type: OTHER
salience: 1.0079002095153555e-05
mentions {
  text {
    content: "force"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pattenden couesy aichoke aists simonmanleyfco que haya luz segunda edici\303\263n del festival de"
type: PERSON
salience: 1.0053229743789416e-05
mentions {
  text {
    content: "pattenden couesy aichoke aists  simonmanleyfco que haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
, name: "works"
type: WORK_OF_ART
salience: 1.0029317309090402e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "works"
type: WORK_OF_ART
salience: 1.002350381895667e-05
mentions {
  text {
    content: "works"
    begin_offset: -1
  }
  type: COMMON
}
, name: "work"
type: OTHER
salience: 1.00206980278017e-05
mentions {
  text {
    content: "work"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installations impulse pa exhibition"
type: EVENT
salience: 9.968377526092809e-06
mentions {
  text {
    content: "installations impulse pa  exhibition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lots"
type: PERSON
salience: 9.898467396851629e-06
mentions {
  text {
    content: "lots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminsterabbey colour timeout"
type: OTHER
salience: 9.80793538474245e-06
mentions {
  text {
    content: "westminsterabbey  colour timeout"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 9.785829206521157e-06
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canadian"
type: LOCATION
salience: 9.782862434803974e-06
mentions {
  text {
    content: "canadian"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "canadian"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thinkingcity addition"
type: OTHER
salience: 9.749373020895291e-06
mentions {
  text {
    content: "thinkingcity addition"
    begin_offset: -1
  }
  type: COMMON
}
, name: "therose pedalpower petalpower"
type: OTHER
salience: 9.737555046740454e-06
mentions {
  text {
    content: "therose pedalpower petalpower"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "therose pedalpower petalpower"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey ceainly trudyakelly"
type: PERSON
salience: 9.730000783747528e-06
mentions {
  text {
    content: "westminsterabbey ceainly  trudyakelly"
    begin_offset: -1
  }
  type: PROPER
}
, name: "object"
type: OTHER
salience: 9.674155080574565e-06
mentions {
  text {
    content: "object"
    begin_offset: -1
  }
  type: COMMON
}
, name: "vlog editing"
type: OTHER
salience: 9.674155080574565e-06
mentions {
  text {
    content: "vlog editing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "circus regents street spot"
type: LOCATION
salience: 9.670544386608526e-06
mentions {
  text {
    content: "circus regents street spot"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival goers"
type: PERSON
salience: 9.668779966887087e-06
mentions {
  text {
    content: "festival goers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross section"
type: OTHER
salience: 9.667041922511999e-06
mentions {
  text {
    content: "cross section"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cross section"
type: OTHER
salience: 9.667041922511999e-06
mentions {
  text {
    content: "cross section"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitor rules"
type: OTHER
salience: 9.667041922511999e-06
mentions {
  text {
    content: "visitor rules"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plate rules"
type: OTHER
salience: 9.665328434493858e-06
mentions {
  text {
    content: "plate rules"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photo credit"
type: OTHER
salience: 9.660333489591721e-06
mentions {
  text {
    content: "photo credit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "menus"
type: OTHER
salience: 9.657117516326252e-06
mentions {
  text {
    content: "menus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "menus"
type: OTHER
salience: 9.657117516326252e-06
mentions {
  text {
    content: "menus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "walls"
type: OTHER
salience: 9.657117516326252e-06
mentions {
  text {
    content: "walls"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check blog spots"
type: OTHER
salience: 9.653987945057452e-06
mentions {
  text {
    content: "check blog spots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgarsquare"
type: OTHER
salience: 9.653820598032326e-06
mentions {
  text {
    content: "trafalgarsquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "comfo food"
type: OTHER
salience: 9.622466677683406e-06
mentions {
  text {
    content: "comfo food"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit website"
type: OTHER
salience: 9.607862921257038e-06
mentions {
  text {
    content: "visit website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit website"
type: OTHER
salience: 9.607862921257038e-06
mentions {
  text {
    content: "visit website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "host"
type: PERSON
salience: 9.598545148037374e-06
mentions {
  text {
    content: "host"
    begin_offset: -1
  }
  type: COMMON
}
, name: "host"
type: PERSON
salience: 9.568109817337245e-06
mentions {
  text {
    content: "host"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere smitf_london"
type: PERSON
salience: 9.55890936893411e-06
mentions {
  text {
    content: "lumiere   smitf_london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "earlham street"
type: LOCATION
salience: 9.49400600802619e-06
mentions {
  text {
    content: "earlham street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "earlham street"
type: LOCATION
salience: 9.49400600802619e-06
mentions {
  text {
    content: "earlham street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightbulb installation ganton street"
type: LOCATION
salience: 9.484541806159541e-06
mentions {
  text {
    content: "lightbulb installation ganton street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lightbulb installation ganton street"
type: LOCATION
salience: 9.484541806159541e-06
mentions {
  text {
    content: "lightbulb installation ganton street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jubilee line baker street"
type: LOCATION
salience: 9.483251233177725e-06
mentions {
  text {
    content: "jubilee line baker street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "regent street"
type: LOCATION
salience: 9.483251233177725e-06
mentions {
  text {
    content: "regent street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "balloon lights"
type: OTHER
salience: 9.479040272708517e-06
mentions {
  text {
    content: "balloon lights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hot chocolate"
type: OTHER
salience: 9.428479643247556e-06
mentions {
  text {
    content: "hot chocolate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "westminster smitf_london"
type: LOCATION
salience: 9.427978511666879e-06
mentions {
  text {
    content: "westminster  smitf_london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "westminster  smitf_london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "dreams"
type: OTHER
salience: 9.394026164954994e-06
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.39262372412486e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.39262372412486e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 9.39123856369406e-06
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dreams"
type: OTHER
salience: 9.388516446051653e-06
mentions {
  text {
    content: "dreams"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: PERSON
salience: 9.388516446051653e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ipreview badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.388516446051653e-06
mentions {
  text {
    content: "ipreview  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "travel badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.388516446051653e-06
mentions {
  text {
    content: "travel  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: CONSUMER_GOOD
salience: 9.388516446051653e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.387179488840047e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "guide gt badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.387179488840047e-06
mentions {
  text {
    content: "guide gt  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.385857993038371e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.385857993038371e-06
mentions {
  text {
    content: "visitlondon  badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.385857993038371e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.385857993038371e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.384551958646625e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "badgerust fox amp badger stars"
type: ORGANIZATION
salience: 9.383260476170108e-06
mentions {
  text {
    content: "badgerust fox amp badger stars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "londonlife sessions"
type: EVENT
salience: 9.37483855523169e-06
mentions {
  text {
    content: "londonlife sessions"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ink"
type: OTHER
salience: 9.2957916422165e-06
mentions {
  text {
    content: "ink"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ponds"
type: OTHER
salience: 9.293431503465399e-06
mentions {
  text {
    content: "ponds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "puddles"
type: CONSUMER_GOOD
salience: 9.293431503465399e-06
mentions {
  text {
    content: "puddles"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gear"
type: CONSUMER_GOOD
salience: 9.293431503465399e-06
mentions {
  text {
    content: "gear"
    begin_offset: -1
  }
  type: COMMON
}
, name: "woxxy"
type: OTHER
salience: 9.293431503465399e-06
mentions {
  text {
    content: "woxxy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "display"
type: OTHER
salience: 9.293076800531708e-06
mentions {
  text {
    content: "display"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fab"
type: OTHER
salience: 9.29111865843879e-06
mentions {
  text {
    content: "fab"
    begin_offset: -1
  }
  type: COMMON
}
, name: "doublemacbex"
type: OTHER
salience: 9.288853107136674e-06
mentions {
  text {
    content: "doublemacbex"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ai"
type: OTHER
salience: 9.288853107136674e-06
mentions {
  text {
    content: "ai"
    begin_offset: -1
  }
  type: COMMON
}
, name: "woman"
type: PERSON
salience: 9.286631211580243e-06
mentions {
  text {
    content: "woman"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ride"
type: EVENT
salience: 9.284452971769497e-06
mentions {
  text {
    content: "ride"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shift team facltd treatment unit alpha1"
type: OTHER
salience: 9.284452971769497e-06
mentions {
  text {
    content: "shift team facltd treatment unit alpha1"
    begin_offset: -1
  }
  type: COMMON
}
, name: "check hashtag"
type: OTHER
salience: 9.28021745494334e-06
mentions {
  text {
    content: "check  hashtag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "duds"
type: OTHER
salience: 9.278157449443825e-06
mentions {
  text {
    content: "duds"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thewave"
type: OTHER
salience: 9.277864592149854e-06
mentions {
  text {
    content: "thewave"
    begin_offset: -1
  }
  type: PROPER
}
, name: "globe"
type: LOCATION
salience: 9.276135642721783e-06
mentions {
  text {
    content: "globe"
    begin_offset: -1
  }
  type: COMMON
}
, name: "issues"
type: OTHER
salience: 9.276135642721783e-06
mentions {
  text {
    content: "issues"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon jonchanuk"
type: OTHER
salience: 9.27414839679841e-06
mentions {
  text {
    content: "visitlondon  jonchanuk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "feast"
type: EVENT
salience: 9.27414839679841e-06
mentions {
  text {
    content: "feast"
    begin_offset: -1
  }
  type: COMMON
}
, name: "quokkas"
type: PERSON
salience: 9.27414839679841e-06
mentions {
  text {
    content: "quokkas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "madness"
type: OTHER
salience: 9.27414839679841e-06
mentions {
  text {
    content: "madness"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tea pots"
type: OTHER
salience: 9.272195711673703e-06
mentions {
  text {
    content: "tea pots"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thefools"
type: OTHER
salience: 9.270276677852962e-06
mentions {
  text {
    content: "thefools"
    begin_offset: -1
  }
  type: COMMON
}
, name: "existence"
type: OTHER
salience: 9.270276677852962e-06
mentions {
  text {
    content: "existence"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights badger badger badger badger mushroom"
type: LOCATION
salience: 9.270276677852962e-06
mentions {
  text {
    content: "festival lights badger badger badger badger mushroom"
    begin_offset: -1
  }
  type: COMMON
}
, name: "minster"
type: PERSON
salience: 9.268388566852082e-06
mentions {
  text {
    content: "minster"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jars"
type: OTHER
salience: 9.268388566852082e-06
mentions {
  text {
    content: "jars"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sound design projection mapping"
type: OTHER
salience: 9.268388566852082e-06
mentions {
  text {
    content: "sound design projection mapping"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miracle"
type: OTHER
salience: 9.268388566852082e-06
mentions {
  text {
    content: "miracle"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rover"
type: OTHER
salience: 9.268388566852082e-06
mentions {
  text {
    content: "rover"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box"
type: OTHER
salience: 9.256504199584015e-06
mentions {
  text {
    content: "amp pandora box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box"
type: OTHER
salience: 9.256504199584015e-06
mentions {
  text {
    content: "amp pandora box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fish phone box"
type: OTHER
salience: 9.256504199584015e-06
mentions {
  text {
    content: "fish phone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beasts"
type: OTHER
salience: 9.252358722733334e-06
mentions {
  text {
    content: "beasts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium telephone box"
type: OTHER
salience: 9.249676622857805e-06
mentions {
  text {
    content: "aquarium telephone box"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust biggsytravels toevho"
type: CONSUMER_GOOD
salience: 9.248445167031605e-06
mentions {
  text {
    content: "aichoketrust biggsytravels  toevho"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londonlumiere lumierelondon aichoketrust"
type: PERSON
salience: 9.245758519682568e-06
mentions {
  text {
    content: "londonlumiere  lumierelondon  aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk"
type: ORGANIZATION
salience: 9.229433999280445e-06
mentions {
  text {
    content: "flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "bicycles"
type: CONSUMER_GOOD
salience: 9.224467248714063e-06
mentions {
  text {
    content: "bicycles"
    begin_offset: -1
  }
  type: COMMON
}
, name: "chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018"
type: ORGANIZATION
salience: 9.22101298783673e-06
mentions {
  text {
    content: "chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere london 2018 lumierelondon lumierelondon2018 meizu meizumx6"
type: CONSUMER_GOOD
salience: 9.22101298783673e-06
mentions {
  text {
    content: "lumiere london 2018 lumierelondon lumierelondon2018  meizu meizumx6"
    begin_offset: -1
  }
  type: PROPER
}
, name: "whatthefishsaw aquarium phoneaddict mania"
type: LOCATION
salience: 9.211476026393939e-06
mentions {
  text {
    content: "whatthefishsaw aquarium  phoneaddict mania"
    begin_offset: -1
  }
  type: COMMON
}
, name: "non"
type: OTHER
salience: 9.199836313200649e-06
mentions {
  text {
    content: "non"
    begin_offset: -1
  }
  type: COMMON
}
, name: "defying gravity"
type: EVENT
salience: 9.19444028113503e-06
mentions {
  text {
    content: "defying gravity"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp nature"
type: OTHER
salience: 9.19444028113503e-06
mentions {
  text {
    content: "amp nature"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world light amp colours balance"
type: OTHER
salience: 9.19444028113503e-06
mentions {
  text {
    content: "world light amp colours balance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fella"
type: PERSON
salience: 9.19444028113503e-06
mentions {
  text {
    content: "fella"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hugs"
type: OTHER
salience: 9.19444028113503e-06
mentions {
  text {
    content: "hugs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wabbey rcwestminster"
type: PERSON
salience: 9.192328434437513e-06
mentions {
  text {
    content: "wabbey rcwestminster"
    begin_offset: -1
  }
  type: PROPER
}
, name: "legs ache"
type: OTHER
salience: 9.189293450617697e-06
mentions {
  text {
    content: "legs ache"
    begin_offset: -1
  }
  type: COMMON
}
, name: "selfie london transpo system"
type: OTHER
salience: 9.189293450617697e-06
mentions {
  text {
    content: "selfie london transpo system"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival"
type: EVENT
salience: 9.18723253562348e-06
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival"
    begin_offset: -1
  }
  type: PROPER
}
, name: "structure"
type: OTHER
salience: 9.186805073113646e-06
mentions {
  text {
    content: "structure"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gates"
type: PERSON
salience: 9.186805073113646e-06
mentions {
  text {
    content: "gates"
    begin_offset: -1
  }
  type: COMMON
}
, name: "poem"
type: WORK_OF_ART
salience: 9.184372174786404e-06
mentions {
  text {
    content: "poem"
    begin_offset: -1
  }
  type: COMMON
}
, name: "eyes"
type: OTHER
salience: 9.184372174786404e-06
mentions {
  text {
    content: "eyes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium evdjones"
type: PERSON
salience: 9.181991117657162e-06
mentions {
  text {
    content: "aquarium  evdjones"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumierelondon2018 lumiere"
type: PERSON
salience: 9.177019819617271e-06
mentions {
  text {
    content: "lumierelondon  lumierelondon2018 lumiere"
    begin_offset: -1
  }
  type: PROPER
}
, name: "glance"
type: OTHER
salience: 9.054387192009017e-06
mentions {
  text {
    content: "glance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 8.923882887756918e-06
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aquarium"
type: OTHER
salience: 8.923882887756918e-06
mentions {
  text {
    content: "aquarium"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank king cross"
type: OTHER
salience: 8.809288374322932e-06
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "disney"
type: ORGANIZATION
metadata {
  key: "mid"
  value: "/m/09b3v"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/The_Walt_Disney_Company"
}
salience: 8.805289326119237e-06
mentions {
  text {
    content: "disney"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "disney"
    begin_offset: -1
  }
  type: PROPER
}
, name: "south bank king cross"
type: OTHER
salience: 8.802868251223117e-06
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank king cross"
type: OTHER
salience: 8.802868251223117e-06
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank king cross"
type: OTHER
salience: 8.801629519439302e-06
mentions {
  text {
    content: "south bank king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "line king cross"
type: OTHER
salience: 8.800404430076014e-06
mentions {
  text {
    content: "line king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "line king cross"
type: OTHER
salience: 8.800404430076014e-06
mentions {
  text {
    content: "line king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tip king cross"
type: OTHER
salience: 8.797995178611018e-06
mentions {
  text {
    content: "tip king cross"
    begin_offset: -1
  }
  type: COMMON
}
, name: "images"
type: WORK_OF_ART
salience: 8.795320354693104e-06
mentions {
  text {
    content: "images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "images"
type: WORK_OF_ART
salience: 8.79412345966557e-06
mentions {
  text {
    content: "images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "images"
type: WORK_OF_ART
salience: 8.79412345966557e-06
mentions {
  text {
    content: "images"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tmnikonian darraghdoyle"
type: OTHER
salience: 8.649091796542052e-06
mentions {
  text {
    content: "tmnikonian  darraghdoyle"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fitzroy"
type: LOCATION
salience: 8.645681191410404e-06
mentions {
  text {
    content: "fitzroy"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pattenden couesy aichoke aists"
type: PERSON
salience: 8.644306944916025e-06
mentions {
  text {
    content: "pattenden couesy aichoke aists"
    begin_offset: -1
  }
  type: PROPER
}
, name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium"
type: PERSON
salience: 8.629456715425476e-06
mentions {
  text {
    content: "\343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  barkingsideac"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
    begin_offset: -1
  }
  type: PROPER
}
, name: "spirit"
type: OTHER
salience: 8.564650670450646e-06
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 8.563401934225112e-06
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 8.562168659409508e-06
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spirit"
type: OTHER
salience: 8.560949936509132e-06
mentions {
  text {
    content: "spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation light spirit"
type: OTHER
salience: 8.556210559618194e-06
mentions {
  text {
    content: "installation light spirit"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon victoriabid createvictoria"
type: PERSON
salience: 8.533200343663339e-06
mentions {
  text {
    content: "visitlondon victoriabid createvictoria"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather"
type: PERSON
salience: 8.529864317097235e-06
mentions {
  text {
    content: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather"
    begin_offset: -1
  }
  type: PROPER
}
, name: "babcockwalk step count thethroneseekers team"
type: ORGANIZATION
salience: 8.497182534483727e-06
mentions {
  text {
    content: "babcockwalk step count thethroneseekers team"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thecrownestate"
type: OTHER
salience: 8.496061127516441e-06
mentions {
  text {
    content: "thecrownestate"
    begin_offset: -1
  }
  type: COMMON
}
, name: "elements"
type: OTHER
salience: 8.496061127516441e-06
mentions {
  text {
    content: "elements"
    begin_offset: -1
  }
  type: COMMON
}
, name: "money"
type: OTHER
salience: 8.494463145325426e-06
mentions {
  text {
    content: "money"
    begin_offset: -1
  }
  type: COMMON
}
, name: "balls fire"
type: OTHER
salience: 8.494463145325426e-06
mentions {
  text {
    content: "balls fire"
    begin_offset: -1
  }
  type: COMMON
}
, name: "heawarming"
type: OTHER
salience: 8.494463145325426e-06
mentions {
  text {
    content: "heawarming"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cans"
type: OTHER
salience: 8.494463145325426e-06
mentions {
  text {
    content: "cans"
    begin_offset: -1
  }
  type: COMMON
}
, name: "look rbehotels"
type: OTHER
salience: 8.49289062898606e-06
mentions {
  text {
    content: "look rbehotels"
    begin_offset: -1
  }
  type: COMMON
}
, name: "desks"
type: OTHER
salience: 8.49134085001424e-06
mentions {
  text {
    content: "desks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "divas"
type: OTHER
salience: 8.49134085001424e-06
mentions {
  text {
    content: "divas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bank light bulbs pulse flash"
type: OTHER
salience: 8.48830950417323e-06
mentions {
  text {
    content: "bank light bulbs pulse flash"
    begin_offset: -1
  }
  type: COMMON
}
, name: "outcome"
type: OTHER
salience: 8.486826118314639e-06
mentions {
  text {
    content: "outcome"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rococochocs"
type: OTHER
salience: 8.486826118314639e-06
mentions {
  text {
    content: "rococochocs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lovers"
type: PERSON
salience: 8.484460522595327e-06
mentions {
  text {
    content: "lovers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "susie"
type: PERSON
salience: 8.48392301122658e-06
mentions {
  text {
    content: "susie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fans"
type: PERSON
salience: 8.482500561513007e-06
mentions {
  text {
    content: "fans"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glow sticks"
type: OTHER
salience: 8.482500561513007e-06
mentions {
  text {
    content: "glow sticks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "frost bite pneumonia"
type: OTHER
salience: 8.481098120682873e-06
mentions {
  text {
    content: "frost bite pneumonia"
    begin_offset: -1
  }
  type: COMMON
}
, name: "enter calming"
type: OTHER
salience: 8.479714779241476e-06
mentions {
  text {
    content: "enter calming"
    begin_offset: -1
  }
  type: COMMON
}
, name: "challenge"
type: OTHER
salience: 8.478349627694115e-06
mentions {
  text {
    content: "challenge"
    begin_offset: -1
  }
  type: COMMON
}
, name: "evening standard"
type: OTHER
salience: 8.478349627694115e-06
mentions {
  text {
    content: "evening standard"
    begin_offset: -1
  }
  type: COMMON
}
, name: "metline"
type: OTHER
salience: 8.478349627694115e-06
mentions {
  text {
    content: "metline"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ambassador house forecou"
type: OTHER
salience: 8.477001756546088e-06
mentions {
  text {
    content: "ambassador house forecou"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thornton heath"
type: LOCATION
salience: 8.477001756546088e-06
mentions {
  text {
    content: "thornton heath"
    begin_offset: -1
  }
  type: COMMON
}
, name: "operations"
type: OTHER
salience: 8.474358764942735e-06
mentions {
  text {
    content: "operations"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
type: ORGANIZATION
salience: 8.46926741360221e-06
mentions {
  text {
    content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gasholderiplets kingscross lumiere levanterman"
type: PERSON
salience: 8.428373803326394e-06
mentions {
  text {
    content: "gasholderiplets kingscross  lumiere  levanterman"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "reality gasholders"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ldn_culture"
type: OTHER
salience: 8.418456673098262e-06
mentions {
  text {
    content: "ldn_culture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 8.418309334956575e-06
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 8.418309334956575e-06
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "view"
type: OTHER
salience: 8.416621312790085e-06
mentions {
  text {
    content: "view"
    begin_offset: -1
  }
  type: COMMON
}
, name: "granarysquare"
type: OTHER
salience: 8.397358215006534e-06
mentions {
  text {
    content: "granarysquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon lumiere leicestersquare"
type: OTHER
salience: 8.391276423935778e-06
mentions {
  text {
    content: "lumierelondon lumiere leicestersquare"
    begin_offset: -1
  }
  type: PROPER
}
, name: "granarysquare"
type: OTHER
salience: 8.388889000343625e-06
mentions {
  text {
    content: "granarysquare"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 8.30241151561495e-06
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "people"
type: PERSON
salience: 8.298983630083967e-06
mentions {
  text {
    content: "people"
    begin_offset: -1
  }
  type: COMMON
}
, name: "goodge street fouh"
type: OTHER
salience: 8.298876309709158e-06
mentions {
  text {
    content: "goodge street  fouh"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "goodge street  fouh"
    begin_offset: -1
  }
  type: PROPER
}
, name: "dinner"
type: EVENT
salience: 8.293771315948106e-06
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "likes"
type: OTHER
salience: 8.287754099001177e-06
mentions {
  text {
    content: "likes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fitzrovia dontmissout"
type: OTHER
salience: 8.20625700725941e-06
mentions {
  text {
    content: "fitzrovia  dontmissout"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "fitzrovia  dontmissout"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "fitzrovia  dontmissout"
    begin_offset: -1
  }
  type: PROPER
}
, name: "gosee themayfairhotel"
type: WORK_OF_ART
salience: 8.179272299457807e-06
mentions {
  text {
    content: "gosee  themayfairhotel"
    begin_offset: -1
  }
  type: PROPER
}
, name: "exitmagazine maxcoopermax 2nickjones"
type: PERSON
salience: 8.142293154378422e-06
mentions {
  text {
    content: "exitmagazine  maxcoopermax  2nickjones"
    begin_offset: -1
  }
  type: PROPER
}
, name: "taize prayer"
type: OTHER
salience: 8.137256372720003e-06
mentions {
  text {
    content: "taize prayer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aurais tellement aim\303\251 pouvoir assister aux d\303\251cid\303\251ment notre"
type: WORK_OF_ART
salience: 8.136872565955855e-06
mentions {
  text {
    content: "aurais tellement aim\303\251 pouvoir assister aux  d\303\251cid\303\251ment notre"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mauvais peut \303\252tre"
type: OTHER
salience: 8.136872565955855e-06
mentions {
  text {
    content: "mauvais peut \303\252tre"
    begin_offset: -1
  }
  type: PROPER
}
, name: "panasonicfz2500 fz2500"
type: OTHER
salience: 8.126848115352914e-06
mentions {
  text {
    content: "panasonicfz2500 fz2500"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon2018 lumierelondon justin_venn lumierelondon2018 lumierelondon lm_westminster"
type: PERSON
salience: 8.126848115352914e-06
mentions {
  text {
    content: "lumierelondon2018 lumierelondon  justin_venn  lumierelondon2018 lumierelondon  lm_westminster"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon keeponwalking"
type: ORGANIZATION
salience: 8.126012289721984e-06
mentions {
  text {
    content: "visitlondon keeponwalking"
    begin_offset: -1
  }
  type: PROPER
}
, name: "go aichoketrust lumierelondon2018 visitlondon livonshoestring"
type: OTHER
salience: 8.10549590823939e-06
mentions {
  text {
    content: "go aichoketrust lumierelondon2018  visitlondon  livonshoestring"
    begin_offset: -1
  }
  type: PROPER
}
, name: "kensington palace"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/022smk"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Kensington_Palace"
}
salience: 8.098099897324573e-06
mentions {
  text {
    content: "kensington palace"
    begin_offset: -1
  }
  type: PROPER
}
, name: "atransformslives aichoketrust visitlondon openyoureyesldn"
type: ORGANIZATION
salience: 8.098099897324573e-06
mentions {
  text {
    content: "atransformslives aichoketrust visitlondon  openyoureyesldn"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wabbey westminsterabbey greatbritain"
type: PERSON
salience: 8.098099897324573e-06
mentions {
  text {
    content: "wabbey westminsterabbey  greatbritain"
    begin_offset: -1
  }
  type: PROPER
}
, name: "redbridgelive umbrellaproject thisisredbridge mylocalculture livonshoestring"
type: OTHER
salience: 8.087953574431594e-06
mentions {
  text {
    content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  livonshoestring"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere mr_simms_hx"
type: PERSON
salience: 8.016057108761743e-06
mentions {
  text {
    content: "lumiere   mr_simms_hx"
    begin_offset: -1
  }
  type: PROPER
}
, name: "swim bladder infection"
type: OTHER
salience: 7.896961506048683e-06
mentions {
  text {
    content: "swim bladder infection"
    begin_offset: -1
  }
  type: COMMON
}
, name: "project"
type: OTHER
salience: 7.88356555858627e-06
mentions {
  text {
    content: "project"
    begin_offset: -1
  }
  type: COMMON
}
, name: "miss"
type: EVENT
salience: 7.881333658588119e-06
mentions {
  text {
    content: "miss"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mayoroflondon"
type: OTHER
salience: 7.834854841348715e-06
mentions {
  text {
    content: "mayoroflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aworks"
type: PERSON
salience: 7.822609404684044e-06
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aist imakefings"
type: ORGANIZATION
salience: 7.81385006121127e-06
mentions {
  text {
    content: "aist imakefings"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust visitlondon fuzzworks_uk"
type: ORGANIZATION
salience: 7.812523108441383e-06
mentions {
  text {
    content: "aichoketrust visitlondon  fuzzworks_uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "shaftesbury avenue"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/01hhkk"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Shaftesbury_Avenue"
}
salience: 7.808462214597967e-06
mentions {
  text {
    content: "shaftesbury avenue"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "shaftesbury avenue"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "shaftesbury avenue"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon grosvenor_ldn"
type: ORGANIZATION
salience: 7.793625627527945e-06
mentions {
  text {
    content: "lumierelondon grosvenor_ldn"
    begin_offset: -1
  }
  type: PROPER
}
, name: "dot dot dot dot dot philippe morvan"
type: ORGANIZATION
salience: 7.749742508167401e-06
mentions {
  text {
    content: "dot dot dot dot dot philippe morvan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c suzystories"
type: LOCATION
salience: 7.741193257970735e-06
mentions {
  text {
    content: "londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c  suzystories"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london chinatownldn festivaloflights"
type: EVENT
salience: 7.726495823590085e-06
mentions {
  text {
    content: "london chinatownldn festivaloflights"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "london chinatownldn festivaloflights"
    begin_offset: -1
  }
  type: PROPER
}
, name: "catch"
type: OTHER
salience: 7.713278137089219e-06
mentions {
  text {
    content: "catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aworks"
type: OTHER
salience: 7.626686510775471e-06
mentions {
  text {
    content: "aworks"
    begin_offset: -1
  }
  type: COMMON
}
, name: "video"
type: WORK_OF_ART
salience: 7.625142188771861e-06
mentions {
  text {
    content: "video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piccadillycircus building lights music video"
type: WORK_OF_ART
salience: 7.624080808454892e-06
mentions {
  text {
    content: "piccadillycircus building lights music video"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon keeponwalking"
type: OTHER
salience: 7.613204161316389e-06
mentions {
  text {
    content: "visitlondon keeponwalking"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "visitlondon keeponwalking"
    begin_offset: -1
  }
  type: PROPER
}
, name: "marshalljulius london leicester square"
type: ORGANIZATION
salience: 7.539726084360154e-06
mentions {
  text {
    content: "marshalljulius london leicester square"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey timeoutlondon kingscrossn1c"
type: ORGANIZATION
salience: 7.510228442697553e-06
mentions {
  text {
    content: "westminsterabbey timeoutlondon  kingscrossn1c"
    begin_offset: -1
  }
  type: PROPER
}
, name: "colour"
type: OTHER
salience: 7.352391548920423e-06
mentions {
  text {
    content: "colour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "facebook"
type: OTHER
metadata {
  key: "mid"
  value: "/m/02y1vz"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Facebook"
}
salience: 7.3515793701517396e-06
mentions {
  text {
    content: "facebook"
    begin_offset: -1
  }
  type: PROPER
}
, name: "amp walk home"
type: ORGANIZATION
salience: 7.350088708335534e-06
mentions {
  text {
    content: "amp walk home"
    begin_offset: -1
  }
  type: COMMON
}
, name: "colours"
type: OTHER
salience: 7.348228336923057e-06
mentions {
  text {
    content: "colours"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany"
type: ORGANIZATION
salience: 7.346771781158168e-06
mentions {
  text {
    content: "lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany"
    begin_offset: -1
  }
  type: PROPER
}
, name: "ajwoodcock"
type: PERSON
salience: 7.299475782929221e-06
mentions {
  text {
    content: "ajwoodcock"
    begin_offset: -1
  }
  type: PROPER
}
, name: "exhibits"
type: OTHER
salience: 7.2294933488592505e-06
mentions {
  text {
    content: "exhibits"
    begin_offset: -1
  }
  type: COMMON
}
, name: "group"
type: ORGANIZATION
salience: 7.1353847488353495e-06
mentions {
  text {
    content: "group"
    begin_offset: -1
  }
  type: COMMON
}
, name: "iphonese"
type: CONSUMER_GOOD
metadata {
  key: "mid"
  value: "/g/11c3zr6jgs"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/IPhone_SE"
}
salience: 7.135080522857606e-06
mentions {
  text {
    content: "iphonese"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thisislondon iphonephotography"
type: ORGANIZATION
salience: 7.135080522857606e-06
mentions {
  text {
    content: "thisislondon iphonephotography"
    begin_offset: -1
  }
  type: PROPER
}
, name: "ltda lumiere piccadilly burlington house"
type: LOCATION
salience: 7.133739018172491e-06
mentions {
  text {
    content: "ltda lumiere piccadilly burlington house"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
type: OTHER
salience: 7.126096988940844e-06
mentions {
  text {
    content: "lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminster thegl0betrotter"
type: ORGANIZATION
salience: 7.120206191757461e-06
mentions {
  text {
    content: "westminster  thegl0betrotter"
    begin_offset: -1
  }
  type: PROPER
}
, name: "arches"
type: OTHER
salience: 7.118826943042222e-06
mentions {
  text {
    content: "arches"
    begin_offset: -1
  }
  type: COMMON
}
, name: "folk"
type: OTHER
salience: 7.113576430128887e-06
mentions {
  text {
    content: "folk"
    begin_offset: -1
  }
  type: COMMON
}
, name: "brown ha gardens"
type: LOCATION
salience: 7.0625837906845845e-06
mentions {
  text {
    content: "brown ha gardens"
    begin_offset: -1
  }
  type: COMMON
}
, name: "song lumierelondon thought"
type: OTHER
salience: 7.024101705610519e-06
mentions {
  text {
    content: "song lumierelondon  thought"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tracey emin"
type: PERSON
metadata {
  key: "mid"
  value: "/m/015sxw"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Tracey_Emin"
}
salience: 6.987894266785588e-06
mentions {
  text {
    content: "tracey emin"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "tracey emin"
    begin_offset: -1
  }
  type: PROPER
}
, name: "walk rainbow tunnel"
type: LOCATION
salience: 6.96801180311013e-06
mentions {
  text {
    content: "walk rainbow tunnel"
    begin_offset: -1
  }
  type: COMMON
}
, name: "croydon"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/021cv"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/London_Borough_of_Croydon"
}
salience: 6.945833774807397e-06
mentions {
  text {
    content: "croydon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "flamingos"
type: OTHER
salience: 6.9296916080929805e-06
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 6.928631137270713e-06
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flamingos"
type: OTHER
salience: 6.927583854121622e-06
mentions {
  text {
    content: "flamingos"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 6.923521141288802e-06
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visit half price entry"
type: OTHER
salience: 6.91870309310616e-06
mentions {
  text {
    content: "visit half price entry"
    begin_offset: -1
  }
  type: COMMON
}
, name: "share experience"
type: OTHER
salience: 6.858630058559356e-06
mentions {
  text {
    content: "share experience"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tmnikonian redlionmayfair"
type: PERSON
salience: 6.8509025368257426e-06
mentions {
  text {
    content: "tmnikonian  redlionmayfair"
    begin_offset: -1
  }
  type: PROPER
}
, name: "piccadilly victoria amsharif"
type: ORGANIZATION
salience: 6.8415224632190075e-06
mentions {
  text {
    content: "piccadilly victoria  amsharif"
    begin_offset: -1
  }
  type: PROPER
}
, name: "swimming sevendials coventgarden outsidework greypointe cubitt"
type: PERSON
salience: 6.840057267254451e-06
mentions {
  text {
    content: "swimming  sevendials coventgarden outsidework  greypointe  cubitt"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayfair grosvenor_ldn grosvenor_gbi greypointe cubitt"
type: PERSON
salience: 6.838617082394194e-06
mentions {
  text {
    content: "mayfair grosvenor_ldn grosvenor_gbi  greypointe  cubitt"
    begin_offset: -1
  }
  type: PROPER
}
, name: "bhawnasaini_yml"
type: ORGANIZATION
salience: 6.803415089962073e-06
mentions {
  text {
    content: "bhawnasaini_yml"
    begin_offset: -1
  }
  type: PROPER
}
, name: "newwestend wave"
type: OTHER
salience: 6.795402896386804e-06
mentions {
  text {
    content: "newwestend wave"
    begin_offset: -1
  }
  type: COMMON
}
, name: "telephonebox bufalino deseille jakubkrupa"
type: PERSON
salience: 6.793834018026246e-06
mentions {
  text {
    content: "telephonebox bufalino deseille  jakubkrupa"
    begin_offset: -1
  }
  type: PROPER
}
, name: "newcastle fontwell crz_mankai8"
type: ORGANIZATION
salience: 6.793834018026246e-06
mentions {
  text {
    content: "newcastle  fontwell crz_mankai8"
    begin_offset: -1
  }
  type: PROPER
}
, name: "website"
type: OTHER
salience: 6.746376584487734e-06
mentions {
  text {
    content: "website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "actioncountersterrorism teamworktomakethedreamwork revdsimonharvey"
type: PERSON
salience: 6.74251168675255e-06
mentions {
  text {
    content: "actioncountersterrorism teamworktomakethedreamwork  revdsimonharvey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "child hood"
type: OTHER
salience: 6.740458047715947e-06
mentions {
  text {
    content: "child hood"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sevendials lumierelondon ianbeetlestone westminsterabbey exitmagazine maxcoopermax"
type: ORGANIZATION
salience: 6.727873824274866e-06
mentions {
  text {
    content: "sevendials  lumierelondon  ianbeetlestone westminsterabbey   exitmagazine  maxcoopermax"
    begin_offset: -1
  }
  type: PROPER
}
, name: "favourites"
type: OTHER
salience: 6.7276869231136516e-06
mentions {
  text {
    content: "favourites"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rhys coren"
type: PERSON
salience: 6.719643351971172e-06
mentions {
  text {
    content: "rhys coren"
    begin_offset: -1
  }
  type: PROPER
}
, name: "child hood pulse movement light amp sound"
type: OTHER
salience: 6.6698621594696306e-06
mentions {
  text {
    content: "child hood pulse movement light amp sound"
    begin_offset: -1
  }
  type: COMMON
}
, name: "city hall danielcanogar"
type: PERSON
salience: 6.591907549591269e-06
mentions {
  text {
    content: "city hall danielcanogar"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dancing lights music"
type: WORK_OF_ART
salience: 6.575071893166751e-06
mentions {
  text {
    content: "dancing lights music"
    begin_offset: -1
  }
  type: COMMON
}
, name: "simonmanleyfco que haya luz segunda edici\303\263n del festival de luces en londres"
type: LOCATION
salience: 6.553487310156925e-06
mentions {
  text {
    content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de luces en londres"
    begin_offset: -1
  }
  type: PROPER
}
, name: "canonukandie visitlondon aichoketrust"
type: ORGANIZATION
salience: 6.5336535044480115e-06
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust"
    begin_offset: -1
  }
  type: PROPER
}
, name: "brightnights"
type: OTHER
salience: 6.510921593871899e-06
mentions {
  text {
    content: "brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box brightnights"
type: ORGANIZATION
salience: 6.509937520604581e-06
mentions {
  text {
    content: "amp pandora box brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp pandora box brightnights"
type: ORGANIZATION
salience: 6.509937520604581e-06
mentions {
  text {
    content: "amp pandora box brightnights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "highlights"
type: OTHER
salience: 6.508005753858015e-06
mentions {
  text {
    content: "highlights"
    begin_offset: -1
  }
  type: COMMON
}
, name: "things"
type: OTHER
salience: 6.505193141492782e-06
mentions {
  text {
    content: "things"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child"
type: PERSON
salience: 6.502476935565937e-06
mentions {
  text {
    content: "child"
    begin_offset: -1
  }
  type: COMMON
}
, name: "traveljunkiegrl"
type: PERSON
salience: 6.4355272115790285e-06
mentions {
  text {
    content: "traveljunkiegrl"
    begin_offset: -1
  }
  type: COMMON
}
, name: "statue"
type: WORK_OF_ART
salience: 6.428064807550982e-06
mentions {
  text {
    content: "statue"
    begin_offset: -1
  }
  type: COMMON
}
, name: "david batchelor"
type: PERSON
salience: 6.395257059921278e-06
mentions {
  text {
    content: "david batchelor"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 6.385106644302141e-06
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 6.383211257343646e-06
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 6.383211257343646e-06
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 6.3822808442637324e-06
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "warning"
type: OTHER
salience: 6.3822808442637324e-06
mentions {
  text {
    content: "warning"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thing"
type: OTHER
salience: 6.35247988611809e-06
mentions {
  text {
    content: "thing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "planning trip"
type: EVENT
salience: 6.35172091278946e-06
mentions {
  text {
    content: "planning trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "make note"
type: OTHER
salience: 6.320424290606752e-06
mentions {
  text {
    content: "make note"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piccadilly stjames jermynstreet"
type: OTHER
salience: 6.28770976618398e-06
mentions {
  text {
    content: "piccadilly stjames jermynstreet"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "style"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scape collectifcoin echelle ronhaselden"
type: CONSUMER_GOOD
salience: 6.2858207456883974e-06
mentions {
  text {
    content: "scape collectifcoin echelle ronhaselden"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "child hood light amp sound"
    begin_offset: -1
  }
  type: COMMON
}
, name: "visitlondon visitlondon createvictoria tanjaphotograph magical lumi\303\250re london"
type: ORGANIZATION
salience: 6.2858207456883974e-06
mentions {
  text {
    content: "visitlondon visitlondon createvictoria  tanjaphotograph magical lumi\303\250re london"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "blogger photographer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oppounities"
type: OTHER
salience: 6.275116447795881e-06
mentions {
  text {
    content: "oppounities"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pictures"
type: WORK_OF_ART
salience: 6.273319286265178e-06
mentions {
  text {
    content: "pictures"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bhawnasaini_yml"
type: LOCATION
salience: 6.2551475821237545e-06
mentions {
  text {
    content: "bhawnasaini_yml"
    begin_offset: -1
  }
  type: PROPER
}
, name: "chance"
type: OTHER
salience: 6.2422786868410185e-06
mentions {
  text {
    content: "chance"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kingscross couesy nofilterneeded"
type: OTHER
salience: 6.2366993915929925e-06
mentions {
  text {
    content: "kingscross couesy  nofilterneeded"
    begin_offset: -1
  }
  type: PROPER
}
, name: "mayfair johansford johansfordsalon"
type: LOCATION
salience: 6.2328904277819674e-06
mentions {
  text {
    content: "mayfair johansford johansfordsalon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "pong lumierelondon2018 waterlicht dan"
type: ORGANIZATION
salience: 6.2328904277819674e-06
mentions {
  text {
    content: "pong   lumierelondon2018 waterlicht dan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "londonblogger wintersinlondon nightfestival wildscreens"
type: OTHER
salience: 6.204596047609812e-06
mentions {
  text {
    content: "londonblogger wintersinlondon nightfestival   wildscreens"
    begin_offset: -1
  }
  type: PROPER
}
, name: "scrums"
type: OTHER
salience: 6.123356342868647e-06
mentions {
  text {
    content: "scrums"
    begin_offset: -1
  }
  type: COMMON
}
, name: "map"
type: WORK_OF_ART
salience: 6.114326424722094e-06
mentions {
  text {
    content: "map"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: PERSON
salience: 6.113391009421321e-06
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: EVENT
salience: 6.110652975621633e-06
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: PERSON
salience: 6.109762125561247e-06
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "planet"
type: LOCATION
salience: 6.109762125561247e-06
mentions {
  text {
    content: "planet"
    begin_offset: -1
  }
  type: COMMON
}
, name: "map"
type: WORK_OF_ART
salience: 6.108882189437281e-06
mentions {
  text {
    content: "map"
    begin_offset: -1
  }
  type: COMMON
}
, name: "treasure hunt"
type: EVENT
salience: 6.1063024077157024e-06
mentions {
  text {
    content: "treasure hunt"
    begin_offset: -1
  }
  type: COMMON
}
, name: "piece"
type: OTHER
salience: 6.105462034611264e-06
mentions {
  text {
    content: "piece"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 6.023397872922942e-06
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 6.022530214977451e-06
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: OTHER
salience: 6.022530214977451e-06
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: LOCATION
salience: 6.021672561473679e-06
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: LOCATION
salience: 6.021672561473679e-06
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sculpture"
type: OTHER
salience: 6.019986813043943e-06
mentions {
  text {
    content: "sculpture"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: OTHER
salience: 6.0191582633706275e-06
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "soho"
type: OTHER
salience: 6.0191582633706275e-06
mentions {
  text {
    content: "soho"
    begin_offset: -1
  }
  type: COMMON
}
, name: "insight magic"
type: OTHER
salience: 5.986421911075013e-06
mentions {
  text {
    content: "insight magic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trafalgarsquare collectifcoin"
type: LOCATION
salience: 5.9369490372773726e-06
mentions {
  text {
    content: "trafalgarsquare collectifcoin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "physicalenergy openyoureyesldn"
type: PERSON
salience: 5.92289688938763e-06
mentions {
  text {
    content: "physicalenergy  openyoureyesldn"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere southbanklondon"
type: PERSON
salience: 5.834327566844877e-06
mentions {
  text {
    content: "lumiere   southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon carnabylondon southbanklondon"
type: PERSON
salience: 5.831805992784211e-06
mentions {
  text {
    content: "lumierelondon carnabylondon  southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "sroosegaarde pa catch"
type: OTHER
salience: 5.812025392515352e-06
mentions {
  text {
    content: "sroosegaarde pa  catch"
    begin_offset: -1
  }
  type: COMMON
}
, name: "window"
type: OTHER
salience: 5.75053718421259e-06
mentions {
  text {
    content: "window"
    begin_offset: -1
  }
  type: COMMON
}
, name: "way"
type: OTHER
salience: 5.748809599026572e-06
mentions {
  text {
    content: "way"
    begin_offset: -1
  }
  type: COMMON
}
, name: "leebrowne1971 lumierelondon2018 lumierelondon visitlondon maxcoopermax"
type: ORGANIZATION
salience: 5.73131046621711e-06
mentions {
  text {
    content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  maxcoopermax"
    begin_offset: -1
  }
  type: PROPER
}
, name: "london lumierelondon timeoutlondon lightfestival glamazonlondon"
type: LOCATION
salience: 5.713574410037836e-06
mentions {
  text {
    content: "london lumierelondon  timeoutlondon lightfestival  glamazonlondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon bbctravelale"
type: LOCATION
salience: 5.700934707419947e-06
mentions {
  text {
    content: "lumierelondon  bbctravelale"
    begin_offset: -1
  }
  type: PROPER
}
, name: "piccadilly stjames jermynstreet smitf_london"
type: LOCATION
salience: 5.700934707419947e-06
mentions {
  text {
    content: "piccadilly stjames jermynstreet  smitf_london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "dinner"
type: OTHER
salience: 5.576840976573294e-06
mentions {
  text {
    content: "dinner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 5.5492982937721536e-06
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cocktails"
type: OTHER
salience: 5.548459739657119e-06
mentions {
  text {
    content: "cocktails"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 5.547631644731155e-06
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 5.545205567614175e-06
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 5.5444161262130365e-06
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "love motion"
type: OTHER
salience: 5.543635325011564e-06
mentions {
  text {
    content: "love motion"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 5.543635325011564e-06
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 5.543635325011564e-06
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lighting capital"
type: OTHER
salience: 5.542864073504461e-06
mentions {
  text {
    content: "lighting capital"
    begin_offset: -1
  }
  type: COMMON
}
, name: "music amp wind everyone"
type: PERSON
salience: 5.5421010074496735e-06
mentions {
  text {
    content: "music amp wind everyone"
    begin_offset: -1
  }
  type: COMMON
}
, name: "fun"
type: OTHER
salience: 5.5421010074496735e-06
mentions {
  text {
    content: "fun"
    begin_offset: -1
  }
  type: COMMON
}
, name: "magic mayfair lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy"
type: ORGANIZATION
salience: 5.488382157636806e-06
mentions {
  text {
    content: "magic mayfair  lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy"
    begin_offset: -1
  }
  type: PROPER
}
, name: "vous voulez voir quelques vid\303\251os"
type: WORK_OF_ART
salience: 5.487043381435797e-06
mentions {
  text {
    content: "vous voulez voir quelques vid\303\251os"
    begin_offset: -1
  }
  type: PROPER
}
, name: "shaida ealking"
type: OTHER
salience: 5.485731435328489e-06
mentions {
  text {
    content: "shaida ealking"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumiere umusicuk"
type: OTHER
salience: 5.472779776027892e-06
mentions {
  text {
    content: "lumiere   umusicuk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lewisham vbp2011"
type: PERSON
salience: 5.4470065151690505e-06
mentions {
  text {
    content: "lewisham  vbp2011"
    begin_offset: -1
  }
  type: PROPER
}
, name: "cast commentary"
type: WORK_OF_ART
salience: 5.441770099423593e-06
mentions {
  text {
    content: "cast commentary"
    begin_offset: -1
  }
  type: COMMON
}
, name: "students"
type: PERSON
salience: 5.439362212200649e-06
mentions {
  text {
    content: "students"
    begin_offset: -1
  }
  type: COMMON
}
, name: "euro_tour \345\205\211\343\201\256\347\245\255\345\205\270 \343\203\253\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263"
type: ORGANIZATION
salience: 5.43780834050267e-06
mentions {
  text {
    content: "euro_tour \345\205\211\343\201\256\347\245\255\345\205\270 \343\203\253\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263"
    begin_offset: -1
  }
  type: PROPER
}
, name: "balloons"
type: CONSUMER_GOOD
salience: 5.435533694253536e-06
mentions {
  text {
    content: "balloons"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flickr"
type: EVENT
salience: 5.435533694253536e-06
mentions {
  text {
    content: "flickr"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ilovelondon nationalhuggingday2018"
type: PERSON
salience: 5.431272256828379e-06
mentions {
  text {
    content: "ilovelondon nationalhuggingday2018"
    begin_offset: -1
  }
  type: PROPER
}
, name: "wld"
type: OTHER
salience: 5.400603640737245e-06
mentions {
  text {
    content: "wld"
    begin_offset: -1
  }
  type: COMMON
}
, name: "jayonlife visitlondon julie_guldahl"
type: ORGANIZATION
salience: 5.342810709407786e-06
mentions {
  text {
    content: "jayonlife  visitlondon  julie_guldahl"
    begin_offset: -1
  }
  type: PROPER
}
, name: "fitzrovia area"
type: LOCATION
salience: 5.330446128937183e-06
mentions {
  text {
    content: "fitzrovia area"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust mrcravenracont"
type: ORGANIZATION
salience: 5.329026407707715e-06
mentions {
  text {
    content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  mrcravenracont"
    begin_offset: -1
  }
  type: PROPER
}
, name: "scenes"
type: OTHER
salience: 5.328864062903449e-06
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 5.328864062903449e-06
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scenes"
type: OTHER
salience: 5.325070105755003e-06
mentions {
  text {
    content: "scenes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp care animals"
type: OTHER
salience: 5.277275704429485e-06
mentions {
  text {
    content: "amp care animals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "order prints"
type: OTHER
salience: 5.272740509099094e-06
mentions {
  text {
    content: "order prints"
    begin_offset: -1
  }
  type: COMMON
}
, name: "origin world bubble"
type: OTHER
salience: 5.214744305703789e-06
mentions {
  text {
    content: "origin world bubble"
    begin_offset: -1
  }
  type: COMMON
}
, name: "website"
type: OTHER
salience: 5.211648840486305e-06
mentions {
  text {
    content: "website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "world bubble"
type: OTHER
salience: 5.211648840486305e-06
mentions {
  text {
    content: "world bubble"
    begin_offset: -1
  }
  type: COMMON
}
, name: "eye visitlondon website"
type: OTHER
salience: 5.209422852203716e-06
mentions {
  text {
    content: "eye visitlondon website"
    begin_offset: -1
  }
  type: COMMON
}
, name: "families"
type: PERSON
salience: 5.172857072466286e-06
mentions {
  text {
    content: "families"
    begin_offset: -1
  }
  type: COMMON
}
, name: "friend"
type: PERSON
salience: 5.092433184472611e-06
mentions {
  text {
    content: "friend"
    begin_offset: -1
  }
  type: COMMON
}
, name: "friends"
type: PERSON
salience: 5.08867742610164e-06
mentions {
  text {
    content: "friends"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bench lumierelondon friendship"
type: OTHER
salience: 5.08867742610164e-06
mentions {
  text {
    content: "bench  lumierelondon friendship"
    begin_offset: -1
  }
  type: COMMON
}
, name: "flowers"
type: OTHER
salience: 5.0865282901213504e-06
mentions {
  text {
    content: "flowers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "canonukandie visitlondon aichoketrust southbanklondon"
type: ORGANIZATION
salience: 5.045871148467995e-06
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
mentions {
  text {
    content: "canonukandie visitlondon aichoketrust southbanklondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "trip"
type: EVENT
salience: 5.029188741900725e-06
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "trip"
type: EVENT
salience: 5.027015504310839e-06
mentions {
  text {
    content: "trip"
    begin_offset: -1
  }
  type: COMMON
}
, name: "kings cross lumiere reed_claire"
type: ORGANIZATION
salience: 5.018726824346231e-06
mentions {
  text {
    content: "kings cross lumiere   reed_claire"
    begin_offset: -1
  }
  type: PROPER
}
, name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey visitlondon lumierelondon lumierelondon soed dslr lumiere london lumiere lumierelondon aichoketrust visitlondon tfltrafficnews"
type: ORGANIZATION
salience: 5.0159383135905955e-06
mentions {
  text {
    content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey  visitlondon lumierelondon  lumierelondon soed dslr lumiere london  lumiere lumierelondon aichoketrust visitlondon  tfltrafficnews"
    begin_offset: -1
  }
  type: PROPER
}
, name: "manchester"
type: LOCATION
salience: 5.013271675124997e-06
mentions {
  text {
    content: "manchester"
    begin_offset: -1
  }
  type: PROPER
}
, name: "philip vaughan"
type: PERSON
metadata {
  key: "mid"
  value: "/m/0463f05"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Philip_Vaughan"
}
salience: 5.0115563681174535e-06
mentions {
  text {
    content: "philip vaughan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon southbank chinatown westminsterabbey stjames london lovelondon piccadillyline"
type: ORGANIZATION
salience: 5.006062565371394e-06
mentions {
  text {
    content: "lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  piccadillyline"
    begin_offset: -1
  }
  type: PROPER
}
, name: "weather"
type: OTHER
salience: 4.963548235537019e-06
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "movement amp sound"
type: OTHER
salience: 4.963548235537019e-06
mentions {
  text {
    content: "movement amp sound"
    begin_offset: -1
  }
  type: COMMON
}
, name: "beacon light darkness riverfront"
type: LOCATION
salience: 4.963548235537019e-06
mentions {
  text {
    content: "beacon light darkness riverfront"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stuff"
type: OTHER
salience: 4.96269740324351e-06
mentions {
  text {
    content: "stuff"
    begin_offset: -1
  }
  type: COMMON
}
, name: "animals"
type: OTHER
salience: 4.962057118973462e-06
mentions {
  text {
    content: "animals"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 4.962057118973462e-06
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "animal"
type: OTHER
salience: 4.962057118973462e-06
mentions {
  text {
    content: "animal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "ladder"
type: OTHER
salience: 4.961324975738535e-06
mentions {
  text {
    content: "ladder"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 4.961324975738535e-06
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "justice"
type: OTHER
salience: 4.959180841979105e-06
mentions {
  text {
    content: "justice"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tour"
type: EVENT
salience: 4.958482804795494e-06
mentions {
  text {
    content: "tour"
    begin_offset: -1
  }
  type: COMMON
}
, name: "whizz"
type: OTHER
salience: 4.957792498316849e-06
mentions {
  text {
    content: "whizz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: ORGANIZATION
salience: 4.84653583043837e-06
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "south bank"
type: OTHER
salience: 4.844441264140187e-06
mentions {
  text {
    content: "south bank"
    begin_offset: -1
  }
  type: COMMON
}
, name: "weather"
type: OTHER
salience: 4.837818778469227e-06
mentions {
  text {
    content: "weather"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin"
type: OTHER
salience: 4.8271394916810095e-06
mentions {
  text {
    content: "child hood collectif coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin"
type: OTHER
salience: 4.825689302379033e-06
mentions {
  text {
    content: "child hood collectif coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin"
type: OTHER
salience: 4.82289215142373e-06
mentions {
  text {
    content: "child hood collectif coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "energy"
type: OTHER
salience: 4.821542006538948e-06
mentions {
  text {
    content: "energy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "child hood collectif coin"
type: OTHER
salience: 4.820878530154005e-06
mentions {
  text {
    content: "child hood collectif coin"
    begin_offset: -1
  }
  type: COMMON
}
, name: "array"
type: OTHER
salience: 4.751292635774007e-06
mentions {
  text {
    content: "array"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 4.6820186980767176e-06
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 4.6820186980767176e-06
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.681311111198738e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glass"
type: OTHER
salience: 4.681311111198738e-06
mentions {
  text {
    content: "glass"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 4.681311111198738e-06
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "production"
type: OTHER
salience: 4.67923973701545e-06
mentions {
  text {
    content: "production"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677899596572388e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677899596572388e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677899596572388e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677899596572388e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677241122408304e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "stories"
type: WORK_OF_ART
salience: 4.677241122408304e-06
mentions {
  text {
    content: "stories"
    begin_offset: -1
  }
  type: COMMON
}
, name: "car bus"
type: OTHER
salience: 4.677241122408304e-06
mentions {
  text {
    content: "car bus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "scifi movie"
type: WORK_OF_ART
salience: 4.676589924201835e-06
mentions {
  text {
    content: "scifi movie"
    begin_offset: -1
  }
  type: COMMON
}
, name: "staing"
type: OTHER
salience: 4.675946456700331e-06
mentions {
  text {
    content: "staing"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation ganton street"
type: ORGANIZATION
salience: 4.635488494386664e-06
mentions {
  text {
    content: "installation ganton street"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere2018 southbank leicestersquare westminsterabbey"
type: ORGANIZATION
salience: 4.6255199777078815e-06
mentions {
  text {
    content: "lumiere2018 southbank leicestersquare westminsterabbey"
    begin_offset: -1
  }
  type: PROPER
}
, name: "names"
type: OTHER
salience: 4.526667453319533e-06
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
, name: "plastic bottles"
type: CONSUMER_GOOD
salience: 4.526667453319533e-06
mentions {
  text {
    content: "plastic bottles"
    begin_offset: -1
  }
  type: COMMON
}
, name: "church"
type: LOCATION
salience: 4.522684321273118e-06
mentions {
  text {
    content: "church"
    begin_offset: -1
  }
  type: COMMON
}
, name: "glissando action"
type: OTHER
salience: 4.522047674981877e-06
mentions {
  text {
    content: "glissando action"
    begin_offset: -1
  }
  type: COMMON
}
, name: "academy"
type: ORGANIZATION
salience: 4.52141830464825e-06
mentions {
  text {
    content: "academy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon londonisopen sadiqkhan"
type: OTHER
salience: 4.431250999914482e-06
mentions {
  text {
    content: "london lumierelondon londonisopen sadiqkhan"
    begin_offset: -1
  }
  type: PROPER
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 4.359760168881621e-06
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bat"
type: OTHER
salience: 4.359093054517871e-06
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bat"
type: OTHER
salience: 4.359093054517871e-06
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bum"
type: OTHER
salience: 4.358434125606436e-06
mentions {
  text {
    content: "bum"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bat"
type: OTHER
salience: 4.358434125606436e-06
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bat"
type: OTHER
salience: 4.358434125606436e-06
mentions {
  text {
    content: "bat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bum"
type: OTHER
salience: 4.356505542091327e-06
mentions {
  text {
    content: "bum"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 4.356505542091327e-06
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 4.356505542091327e-06
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire stop caf\303\251"
type: LOCATION
salience: 4.356505542091327e-06
mentions {
  text {
    content: "spire  stop caf\303\251"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wildlife"
type: OTHER
salience: 4.3558779907471035e-06
mentions {
  text {
    content: "wildlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "corner"
type: LOCATION
salience: 4.355257715360494e-06
mentions {
  text {
    content: "corner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "images wildlife"
type: OTHER
salience: 4.355257715360494e-06
mentions {
  text {
    content: "images wildlife"
    begin_offset: -1
  }
  type: COMMON
}
, name: "creation"
type: OTHER
salience: 4.354644715931499e-06
mentions {
  text {
    content: "creation"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tag"
type: OTHER
salience: 4.354038537712768e-06
mentions {
  text {
    content: "tag"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hyde park corner"
type: PERSON
salience: 4.354038537712768e-06
mentions {
  text {
    content: "hyde park corner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hyde park corner"
type: PERSON
salience: 4.354038537712768e-06
mentions {
  text {
    content: "hyde park corner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "corner"
type: LOCATION
salience: 4.353439180704299e-06
mentions {
  text {
    content: "corner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "corner"
type: LOCATION
salience: 4.353439180704299e-06
mentions {
  text {
    content: "corner"
    begin_offset: -1
  }
  type: COMMON
}
, name: "rhianbwatts"
type: PERSON
salience: 4.279207587387646e-06
mentions {
  text {
    content: "rhianbwatts"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pa imakefings"
type: ORGANIZATION
salience: 4.248674486007076e-06
mentions {
  text {
    content: "pa  imakefings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "well"
type: LOCATION
salience: 4.177242317382479e-06
mentions {
  text {
    content: "well"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buses"
type: OTHER
salience: 4.176522452326026e-06
mentions {
  text {
    content: "buses"
    begin_offset: -1
  }
  type: COMMON
}
, name: "toddy"
type: PERSON
salience: 4.175972208031453e-06
mentions {
  text {
    content: "toddy"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dials"
type: OTHER
salience: 4.175348749413388e-06
mentions {
  text {
    content: "dials"
    begin_offset: -1
  }
  type: COMMON
}
, name: "dials"
type: OTHER
salience: 4.175348749413388e-06
mentions {
  text {
    content: "dials"
    begin_offset: -1
  }
  type: COMMON
}
, name: "srmlondon"
type: PERSON
salience: 4.174733021500288e-06
mentions {
  text {
    content: "srmlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere srmlondon"
type: PERSON
salience: 4.171760338067543e-06
mentions {
  text {
    content: "london lumiere  srmlondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hands"
type: OTHER
salience: 4.171760338067543e-06
mentions {
  text {
    content: "hands"
    begin_offset: -1
  }
  type: COMMON
}
, name: "theatre"
type: LOCATION
salience: 4.171186446910724e-06
mentions {
  text {
    content: "theatre"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon2018 thelondoneye"
type: OTHER
salience: 4.126203748455737e-06
mentions {
  text {
    content: "lumierelondon2018 thelondoneye"
    begin_offset: -1
  }
  type: PROPER
}
, name: "frogs"
type: OTHER
salience: 4.074966000189306e-06
mentions {
  text {
    content: "frogs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "helbron"
type: OTHER
salience: 3.975414529122645e-06
mentions {
  text {
    content: "helbron"
    begin_offset: -1
  }
  type: COMMON
}
, name: "installation company"
type: ORGANIZATION
salience: 3.975414529122645e-06
mentions {
  text {
    content: "installation company"
    begin_offset: -1
  }
  type: COMMON
}
, name: "training jobs"
type: OTHER
salience: 3.973054845118895e-06
mentions {
  text {
    content: "training jobs"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tfl update"
type: OTHER
salience: 3.971916612499626e-06
mentions {
  text {
    content: "tfl update"
    begin_offset: -1
  }
  type: COMMON
}
, name: "mader wiermann grabber computer"
type: CONSUMER_GOOD
salience: 3.971357728005387e-06
mentions {
  text {
    content: "mader wiermann grabber computer"
    begin_offset: -1
  }
  type: COMMON
}
, name: "sta"
type: OTHER
salience: 3.971357728005387e-06
mentions {
  text {
    content: "sta"
    begin_offset: -1
  }
  type: COMMON
}
, name: "oxfordstreet bike"
type: CONSUMER_GOOD
salience: 3.970258603658294e-06
mentions {
  text {
    content: "oxfordstreet bike"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hatmanoflondon"
type: PERSON
salience: 3.970258603658294e-06
mentions {
  text {
    content: "hatmanoflondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "gloves amp scarf"
type: OTHER
salience: 3.92759102396667e-06
mentions {
  text {
    content: "gloves amp scarf"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumiere lumierelondon lumierelondon2018 mayfair streeta"
type: LOCATION
salience: 3.888371793436818e-06
mentions {
  text {
    content: "lumiere  lumierelondon lumierelondon2018 mayfair streeta"
    begin_offset: -1
  }
  type: PROPER
}
, name: "que haya luz segunda edici\303\263n del festival de"
type: PERSON
salience: 3.751508074856247e-06
mentions {
  text {
    content: "que haya luz segunda edici\303\263n del festival de"
    begin_offset: -1
  }
  type: PROPER
}
, name: "app"
type: CONSUMER_GOOD
salience: 3.7505049022001913e-06
mentions {
  text {
    content: "app"
    begin_offset: -1
  }
  type: COMMON
}
, name: "thesavoylondon"
type: WORK_OF_ART
salience: 3.7477050227607833e-06
mentions {
  text {
    content: "thesavoylondon"
    begin_offset: -1
  }
  type: COMMON
}
, name: "tflbusales"
type: PERSON
salience: 3.746631591639016e-06
mentions {
  text {
    content: "tflbusales"
    begin_offset: -1
  }
  type: COMMON
}
, name: "front page"
type: OTHER
salience: 3.7450672607519664e-06
mentions {
  text {
    content: "front page"
    begin_offset: -1
  }
  type: COMMON
}
, name: "background"
type: OTHER
salience: 3.744557716345298e-06
mentions {
  text {
    content: "background"
    begin_offset: -1
  }
  type: COMMON
}
, name: "techniciansmakeithappen smitf_london"
type: LOCATION
salience: 3.609101668189396e-06
mentions {
  text {
    content: "techniciansmakeithappen  smitf_london"
    begin_offset: -1
  }
  type: PROPER
}
, name: "piccadillycircus wabbey stas"
type: PERSON
salience: 3.504961568978615e-06
mentions {
  text {
    content: "piccadillycircus  wabbey  stas"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminster mayfair"
type: EVENT
salience: 3.504462483761017e-06
mentions {
  text {
    content: "westminster mayfair"
    begin_offset: -1
  }
  type: PROPER
}
, name: "giant"
type: ORGANIZATION
salience: 3.490243216219824e-06
mentions {
  text {
    content: "giant"
    begin_offset: -1
  }
  type: COMMON
}
, name: "light festival gasholders"
type: PERSON
salience: 3.4897284422186203e-06
mentions {
  text {
    content: "light festival gasholders"
    begin_offset: -1
  }
  type: COMMON
}
, name: "bum levanterman"
type: PERSON
salience: 3.4897284422186203e-06
mentions {
  text {
    content: "bum  levanterman"
    begin_offset: -1
  }
  type: COMMON
}
, name: "giant"
type: ORGANIZATION
salience: 3.4897284422186203e-06
mentions {
  text {
    content: "giant"
    begin_offset: -1
  }
  type: COMMON
}
, name: "followers"
type: PERSON
salience: 3.488717084110249e-06
mentions {
  text {
    content: "followers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "followers"
type: PERSON
salience: 3.488717084110249e-06
mentions {
  text {
    content: "followers"
    begin_offset: -1
  }
  type: COMMON
}
, name: "photography lumiere london point"
type: OTHER
salience: 3.486289188003866e-06
mentions {
  text {
    content: "photography  lumiere london point"
    begin_offset: -1
  }
  type: COMMON
}
, name: "pic"
type: WORK_OF_ART
salience: 3.486289188003866e-06
mentions {
  text {
    content: "pic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "nickede wait"
type: OTHER
salience: 3.4058166420436464e-06
mentions {
  text {
    content: "nickede wait"
    begin_offset: -1
  }
  type: COMMON
}
, name: "shaftesburyplc regentst_assoc thecrownestate"
type: ORGANIZATION
salience: 3.2445761917188065e-06
mentions {
  text {
    content: "shaftesburyplc regentst_assoc thecrownestate"
    begin_offset: -1
  }
  type: PROPER
}
, name: "seat"
type: OTHER
salience: 3.20010440191254e-06
mentions {
  text {
    content: "seat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "culture fitness"
type: OTHER
salience: 3.183994977007387e-06
mentions {
  text {
    content: "culture fitness"
    begin_offset: -1
  }
  type: COMMON
}
, name: "buzz"
type: OTHER
salience: 3.1830384159547975e-06
mentions {
  text {
    content: "buzz"
    begin_offset: -1
  }
  type: COMMON
}
, name: "film exposure"
type: OTHER
salience: 3.1816466616874095e-06
mentions {
  text {
    content: "film exposure"
    begin_offset: -1
  }
  type: COMMON
}
, name: "waltz piano"
type: LOCATION
salience: 3.18030288326554e-06
mentions {
  text {
    content: "waltz piano"
    begin_offset: -1
  }
  type: COMMON
}
, name: "timings"
type: OTHER
salience: 3.1798654163139872e-06
mentions {
  text {
    content: "timings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "wld"
type: OTHER
salience: 3.1798654163139872e-06
mentions {
  text {
    content: "wld"
    begin_offset: -1
  }
  type: COMMON
}
, name: "aichoketrust biggsytravels"
type: PERSON
salience: 3.079936277572415e-06
mentions {
  text {
    content: "aichoketrust biggsytravels"
    begin_offset: -1
  }
  type: PROPER
}
, name: "badgermoon stopthecull"
type: OTHER
salience: 3.0038406748644775e-06
mentions {
  text {
    content: "badgermoon stopthecull"
    begin_offset: -1
  }
  type: PROPER
}
, name: "habitat"
type: OTHER
salience: 2.7962501008005347e-06
mentions {
  text {
    content: "habitat"
    begin_offset: -1
  }
  type: COMMON
}
, name: "water fountain"
type: PERSON
salience: 2.7962501008005347e-06
mentions {
  text {
    content: "water fountain"
    begin_offset: -1
  }
  type: COMMON
}
, name: "performance wiltonmusichall"
type: OTHER
salience: 2.7962501008005347e-06
mentions {
  text {
    content: "performance wiltonmusichall"
    begin_offset: -1
  }
  type: COMMON
}
, name: "night go check visitlondon alifestylerebel"
type: EVENT
salience: 2.7958274131378857e-06
mentions {
  text {
    content: "night go check visitlondon  alifestylerebel"
    begin_offset: -1
  }
  type: COMMON
}
, name: "spire hallelujah chorus"
type: ORGANIZATION
salience: 2.7949977265961934e-06
mentions {
  text {
    content: "spire hallelujah chorus"
    begin_offset: -1
  }
  type: COMMON
}
, name: "drawings"
type: WORK_OF_ART
salience: 2.7949977265961934e-06
mentions {
  text {
    content: "drawings"
    begin_offset: -1
  }
  type: COMMON
}
, name: "amp sweets sugar"
type: CONSUMER_GOOD
salience: 2.794590272969799e-06
mentions {
  text {
    content: "amp  sweets sugar"
    begin_offset: -1
  }
  type: COMMON
}
, name: "polaroidorignls type"
type: OTHER
salience: 2.7941878215642646e-06
mentions {
  text {
    content: "polaroidorignls type"
    begin_offset: -1
  }
  type: COMMON
}
, name: "hell"
type: OTHER
salience: 2.793789917632239e-06
mentions {
  text {
    content: "hell"
    begin_offset: -1
  }
  type: COMMON
}
, name: "festival lights engineering"
type: OTHER
salience: 2.793789917632239e-06
mentions {
  text {
    content: "festival lights engineering"
    begin_offset: -1
  }
  type: COMMON
}
, name: "backdrop coal"
type: OTHER
salience: 2.793396561173722e-06
mentions {
  text {
    content: "backdrop coal"
    begin_offset: -1
  }
  type: COMMON
}
, name: "version"
type: CONSUMER_GOOD
salience: 2.793396561173722e-06
mentions {
  text {
    content: "version"
    begin_offset: -1
  }
  type: COMMON
}
, name: "cuties"
type: OTHER
salience: 2.792243321891874e-06
mentions {
  text {
    content: "cuties"
    begin_offset: -1
  }
  type: COMMON
}
, name: "brrrrr"
type: PERSON
salience: 2.792243321891874e-06
mentions {
  text {
    content: "brrrrr"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumi\303\250re london lumierelondon2018 7dialslondon"
type: LOCATION
salience: 2.6731424895842792e-06
mentions {
  text {
    content: "lumi\303\250re london  lumierelondon2018  7dialslondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "aichoketrust lumierelondon2018 visitlondon fuzzworks_uk"
type: ORGANIZATION
salience: 2.5745684979483485e-06
mentions {
  text {
    content: "aichoketrust lumierelondon2018  visitlondon  fuzzworks_uk"
    begin_offset: -1
  }
  type: PROPER
}
, name: "names"
type: OTHER
salience: 2.5367658054165076e-06
mentions {
  text {
    content: "names"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumierelondon ivysohobrass"
type: LOCATION
salience: 2.533257656978094e-06
mentions {
  text {
    content: "london lumierelondon  ivysohobrass"
    begin_offset: -1
  }
  type: PROPER
}
, name: "shapes"
type: OTHER
salience: 2.440462367303553e-06
mentions {
  text {
    content: "shapes"
    begin_offset: -1
  }
  type: COMMON
}
, name: "london lumiere openyoureyesldn"
type: OTHER
salience: 2.3479592528019566e-06
mentions {
  text {
    content: "london lumiere  openyoureyesldn"
    begin_offset: -1
  }
  type: PROPER
}
, name: "piccadilly stjames jermynstreet loki_lego"
type: LOCATION
salience: 2.347608642594423e-06
mentions {
  text {
    content: "piccadilly stjames jermynstreet  loki_lego"
    begin_offset: -1
  }
  type: PROPER
}
, name: "igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon"
type: PERSON
salience: 2.345268285353086e-06
mentions {
  text {
    content: "igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon"
    begin_offset: -1
  }
  type: PROPER
}
, name: "ideas"
type: OTHER
salience: 2.206231101808953e-06
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
mentions {
  text {
    content: "ideas"
    begin_offset: -1
  }
  type: COMMON
}
, name: "copper pic"
type: WORK_OF_ART
salience: 2.1855937575310236e-06
mentions {
  text {
    content: "copper pic"
    begin_offset: -1
  }
  type: COMMON
}
, name: "lumierelondon photograghy lizziemidd"
type: OTHER
salience: 2.0626530385925435e-06
mentions {
  text {
    content: "lumierelondon  photograghy  lizziemidd"
    begin_offset: -1
  }
  type: PROPER
}
, name: "newcastle"
type: LOCATION
metadata {
  key: "mid"
  value: "/m/0j7ng"
}
metadata {
  key: "wikipedia_url"
  value: "https://en.wikipedia.org/wiki/Newcastle_upon_Tyne"
}
salience: 2.060816314042313e-06
mentions {
  text {
    content: "newcastle"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon lumierelondon2018 visitlondon ontheroadtoyou"
type: ORGANIZATION
salience: 1.9383360267966054e-06
mentions {
  text {
    content: "lumierelondon lumierelondon2018  visitlondon  ontheroadtoyou"
    begin_offset: -1
  }
  type: PROPER
}
, name: "danish"
type: LOCATION
salience: 1.8808135564540862e-06
mentions {
  text {
    content: "danish"
    begin_offset: -1
  }
  type: PROPER
}
, name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_"
type: ORGANIZATION
salience: 1.8783741779770935e-06
mentions {
  text {
    content: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_"
    begin_offset: -1
  }
  type: PROPER
}
, name: "thejanuarychallenge 64millionaists"
type: PERSON
salience: 1.6507881355209975e-06
mentions {
  text {
    content: "thejanuarychallenge 64millionaists"
    begin_offset: -1
  }
  type: PROPER
}
, name: "newcastle fontwell crz_mankai8 awesmoeb adithatsme"
type: ORGANIZATION
salience: 1.6505504163433216e-06
mentions {
  text {
    content: "newcastle  fontwell crz_mankai8 awesmoeb  adithatsme"
    begin_offset: -1
  }
  type: PROPER
}
, name: "lumierelondon lumierelondon2018 lumiere airheadhell"
type: PERSON
salience: 1.6498534023412503e-06
mentions {
  text {
    content: "lumierelondon lumierelondon2018  lumiere  airheadhell"
    begin_offset: -1
  }
  type: PROPER
}
]
In [105]:
text = sentence_tokenized2
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

entities = language_client.analyze_entities(document).entities

# entity types from enums.Entity.Type
entity_type = ('UNKNOWN', 'PERSON', 'LOCATION', 'ORGANIZATION',
                   'EVENT', 'WORK_OF_ART', 'CONSUMER_GOOD', 'OTHER')

for entity in entities:
        print('=' * 20)
        print(u'{:<16}: {}'.format('name', entity.name))
        print(u'{:<16}: {}'.format('type', entity_type[entity.type]))
        print(u'{:<16}: {}'.format('metadata', entity.metadata))
        print(u'{:<16}: {}'.format('salience', entity.salience))
        print(u'{:<16}: {}'.format('wikipedia_url',
              entity.metadata.get('wikipedia_url', '-')))
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c96c0>
salience        : 0.08889195322990417
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9760>
salience        : 0.08500541001558304
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a30>
salience        : 0.039188776165246964
wikipedia_url   : -
====================
name            : coren
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a80>
salience        : 0.012393382377922535
wikipedia_url   : -
====================
name            : mayfair london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967cb0>
salience        : 0.01201632060110569
wikipedia_url   : -
====================
name            : pkuparliament lumierelondon westminster london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967da0>
salience        : 0.01180624682456255
wikipedia_url   : https://en.wikipedia.org/wiki/London
====================
name            : piccadilly leicestersquare lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e40>
salience        : 0.011496900580823421
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ee0>
salience        : 0.011475451290607452
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967850>
salience        : 0.008224901743233204
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967940>
salience        : 0.007897830568253994
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967df0>
salience        : 0.0068688117899000645
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967440>
salience        : 0.0065756747499108315
wikipedia_url   : -
====================
name            : westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967bc0>
salience        : 0.005346327554434538
wikipedia_url   : https://en.wikipedia.org/wiki/Westminster_Abbey
====================
name            : well
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015bc0>
salience        : 0.004710658919066191
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229dbe40>
salience        : 0.00441898126155138
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967760>
salience        : 0.004408621229231358
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6b20>
salience        : 0.004277159459888935
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6da0>
salience        : 0.004202640149742365
wikipedia_url   : -
====================
name            : city lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6bc0>
salience        : 0.004196152091026306
wikipedia_url   : -
====================
name            : fitzrovia area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6cb0>
salience        : 0.004186817444860935
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c60>
salience        : 0.004086876753717661
wikipedia_url   : -
====================
name            : landmarks streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d68f0>
salience        : 0.003506189212203026
wikipedia_url   : -
====================
name            : illumination installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4b20>
salience        : 0.00344708445481956
wikipedia_url   : -
====================
name            : lumierelondon launches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4670>
salience        : 0.003330680774524808
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4030>
salience        : 0.003261641599237919
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4800>
salience        : 0.003103898372501135
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6e40>
salience        : 0.00305208470672369
wikipedia_url   : -
====================
name            : oxford
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ad0>
salience        : 0.003020865609869361
wikipedia_url   : https://en.wikipedia.org/wiki/Oxford_Street
====================
name            : patrice warrener
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93080>
salience        : 0.002868819748982787
wikipedia_url   : https://en.wikipedia.org/wiki/Patrice_Warrener
====================
name            : piccadilly
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93260>
salience        : 0.002706866478547454
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933a0>
salience        : 0.002652781782671809
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a934e0>
salience        : 0.0026335378643125296
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a935d0>
salience        : 0.0025272683706134558
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a937b0>
salience        : 0.002459250157698989
wikipedia_url   : -
====================
name            : instagram
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93940>
salience        : 0.0024485785979777575
wikipedia_url   : https://en.wikipedia.org/wiki/Instagram
====================
name            : trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a80>
salience        : 0.0024233635049313307
wikipedia_url   : https://en.wikipedia.org/wiki/Trafalgar_Square
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c10>
salience        : 0.0023164988961070776
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93df0>
salience        : 0.0023120949044823647
wikipedia_url   : -
====================
name            : victoria
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93030>
salience        : 0.0022735188249498606
wikipedia_url   : -
====================
name            : gt visitlondon inlondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93670>
salience        : 0.0021935985423624516
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938a0>
salience        : 0.0021916856057941914
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b70>
salience        : 0.002186540747061372
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c60>
salience        : 0.0021330032031983137
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e40>
salience        : 0.001981590408831835
wikipedia_url   : -
====================
name            : southbank amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93490>
salience        : 0.001981590408831835
wikipedia_url   : -
====================
name            : backdrop king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93990>
salience        : 0.0019718848634511232
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ad0>
salience        : 0.001968005206435919
wikipedia_url   : -
====================
name            : friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93300>
salience        : 0.0019361310405656695
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93cb0>
salience        : 0.0017754198051989079
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93da0>
salience        : 0.0016854507848620415
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93580>
salience        : 0.001677068299613893
wikipedia_url   : -
====================
name            : umbrella pop performance goodge street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bead0>
salience        : 0.0015791504411026835
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be9e0>
salience        : 0.0015493710525333881
wikipedia_url   : -
====================
name            : londonisopen lumiere emmaallen leakestreet waterloo london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb20>
salience        : 0.0014958633109927177
wikipedia_url   : -
====================
name            : jaquesrival battlebridgeplace kingscross london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef30>
salience        : 0.0014872413594275713
wikipedia_url   : -
====================
name            : westminster
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bedf0>
salience        : 0.0014659614535048604
wikipedia_url   : https://en.wikipedia.org/wiki/City_of_Westminster
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beee0>
salience        : 0.0014630837831646204
wikipedia_url   : -
====================
name            : mayfair
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef80>
salience        : 0.0014411149313673377
wikipedia_url   : -
====================
name            : embassy london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be940>
salience        : 0.0014036340871825814
wikipedia_url   : -
====================
name            : circus london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be760>
salience        : 0.0014036340871825814
wikipedia_url   : -
====================
name            : broadwick street plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be350>
salience        : 0.00139964884147048
wikipedia_url   : -
====================
name            : bloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee90>
salience        : 0.001399379107169807
wikipedia_url   : https://en.wikipedia.org/wiki/Bloomberg_L.P.
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be990>
salience        : 0.0013720960123464465
wikipedia_url   : -
====================
name            : installions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb70>
salience        : 0.0013720960123464465
wikipedia_url   : -
====================
name            : detail lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beda0>
salience        : 0.0013560220832005143
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee90>
salience        : 0.0013189089950174093
wikipedia_url   : -
====================
name            : timeout londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e210>
salience        : 0.0013074367307126522
wikipedia_url   : -
====================
name            : westminster fitzrovia mayfair
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e120>
salience        : 0.0012992474948987365
wikipedia_url   : -
====================
name            : aichoketrust visitlondon timeoutlondon picadillycircus piccadilly circus
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e030>
salience        : 0.0012911612866446376
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly_Circus
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e490>
salience        : 0.0012603336945176125
wikipedia_url   : -
====================
name            : simon corder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e710>
salience        : 0.0012504104524850845
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec10>
salience        : 0.0012018084526062012
wikipedia_url   : -
====================
name            : timeout londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ebc0>
salience        : 0.0011936536757275462
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e9e0>
salience        : 0.001192879630252719
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea80>
salience        : 0.0011578984558582306
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e760>
salience        : 0.0011345144594088197
wikipedia_url   : -
====================
name            : european
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e800>
salience        : 0.0011115903034806252
wikipedia_url   : https://en.wikipedia.org/wiki/Europe
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eda0>
salience        : 0.001111535239033401
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e440>
salience        : 0.0010523966047912836
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e1c0>
salience        : 0.0010511558502912521
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e850>
salience        : 0.0010509720304980874
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb70>
salience        : 0.0010188173037022352
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee40>
salience        : 0.0010164807317778468
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e4e0>
salience        : 0.0010063573718070984
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef80>
salience        : 0.000994179048575461
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207edf0>
salience        : 0.0009725931449793279
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3990>
salience        : 0.0009510405361652374
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3120>
salience        : 0.0009498845902271569
wikipedia_url   : -
====================
name            : bachelor
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde35d0>
salience        : 0.0009426621254533529
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde34e0>
salience        : 0.0009400324779562652
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3490>
salience        : 0.0009396278765052557
wikipedia_url   : -
====================
name            : lumierelondon festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33f0>
salience        : 0.0009394125663675368
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde32b0>
salience        : 0.0008428012952208519
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3030>
salience        : 0.0008312518475577235
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3260>
salience        : 0.0008294955478049815
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde31c0>
salience        : 0.0008204281912185252
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a80>
salience        : 0.0008157453266903758
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ad0>
salience        : 0.0007934069726616144
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3da0>
salience        : 0.0007899969932623208
wikipedia_url   : -
====================
name            : dancing trees modes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3df0>
salience        : 0.000788754434324801
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b70>
salience        : 0.0007848468376323581
wikipedia_url   : -
====================
name            : timeout londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3850>
salience        : 0.0007837878656573594
wikipedia_url   : -
====================
name            : lines
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a30>
salience        : 0.0007702098228037357
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3670>
salience        : 0.0007620613323524594
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38f0>
salience        : 0.0007592023466713727
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e40>
salience        : 0.0007533435127697885
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3170>
salience        : 0.0007435894221998751
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde37b0>
salience        : 0.0007410820689983666
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3cb0>
salience        : 0.0007377641159109771
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3350>
salience        : 0.0007328612264245749
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d50>
salience        : 0.0007328612264245749
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde70d0>
salience        : 0.0007233350770547986
wikipedia_url   : -
====================
name            : wabbey rcwestminster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7080>
salience        : 0.0007213295320980251
wikipedia_url   : -
====================
name            : response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7350>
salience        : 0.0007033739821054041
wikipedia_url   : -
====================
name            : trafalgarsquare leicaq leicam240 london lumiere lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7670>
salience        : 0.0007015150622464716
wikipedia_url   : -
====================
name            : marvel ones
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b70>
salience        : 0.0006981909973546863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a80>
salience        : 0.0006877405103296041
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78f0>
salience        : 0.0006877405103296041
wikipedia_url   : -
====================
name            : talklandscape light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78a0>
salience        : 0.000686937477439642
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde77b0>
salience        : 0.0006859575514681637
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7620>
salience        : 0.0006843165610916913
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ee0>
salience        : 0.0006813335348851979
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f80>
salience        : 0.0006785569712519646
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c60>
salience        : 0.0006782211712561548
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73a0>
salience        : 0.0006733544869348407
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7990>
salience        : 0.0006733544869348407
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde74e0>
salience        : 0.000672738126013428
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c10>
salience        : 0.0006700020749121904
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7490>
salience        : 0.0006693887989968061
wikipedia_url   : -
====================
name            : street london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde79e0>
salience        : 0.0006676336051896214
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7710>
salience        : 0.0006676336051896214
wikipedia_url   : -
====================
name            : awork london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73f0>
salience        : 0.0006676336051896214
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b20>
salience        : 0.0006662869709543884
wikipedia_url   : -
====================
name            : wheat lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7800>
salience        : 0.0006658022757619619
wikipedia_url   : -
====================
name            : pa lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d50>
salience        : 0.000663050333969295
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7530>
salience        : 0.000663050333969295
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7440>
salience        : 0.0006619613850489259
wikipedia_url   : -
====================
name            : lighting london londonisopen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7300>
salience        : 0.0006601455970667303
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7260>
salience        : 0.0006586656672880054
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7030>
salience        : 0.0006586656672880054
wikipedia_url   : -
====================
name            : telephone box library
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7170>
salience        : 0.000658663921058178
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b20>
salience        : 0.0006582137430086732
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7940>
salience        : 0.0006568589014932513
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a30>
salience        : 0.0006563372444361448
wikipedia_url   : -
====================
name            : pa london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7e40>
salience        : 0.0006558476598002017
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7580>
salience        : 0.0006558476598002017
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7490>
salience        : 0.0006558476598002017
wikipedia_url   : -
====================
name            : nationalrailenq london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7080>
salience        : 0.0006558476598002017
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c10>
salience        : 0.0006553863640874624
wikipedia_url   : -
====================
name            : installation london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73f0>
salience        : 0.0006549502722918987
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78f0>
salience        : 0.0006542788469232619
wikipedia_url   : -
====================
name            : piccadilly lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7760>
salience        : 0.0006539486348628998
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc70d0>
salience        : 0.0006526214419864118
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc77b0>
salience        : 0.0006526214419864118
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5440>
salience        : 0.0006526214419864118
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5710>
salience        : 0.0006508312653750181
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5990>
salience        : 0.0006508312653750181
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5620>
salience        : 0.0006497718277387321
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5850>
salience        : 0.0006493722321465611
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5670>
salience        : 0.0006493722321465611
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58f0>
salience        : 0.0006493722321465611
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c56c0>
salience        : 0.0006481411401182413
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5350>
salience        : 0.0006481411401182413
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f30>
salience        : 0.0006481411401182413
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002bc0>
salience        : 0.0006481411401182413
wikipedia_url   : -
====================
name            : attractions lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0026c0>
salience        : 0.0006474112742580473
wikipedia_url   : -
====================
name            : colors lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002f30>
salience        : 0.0006472585373558104
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002b70>
salience        : 0.0006472585373558104
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ce9e0>
salience        : 0.0006470766384154558
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cea80>
salience        : 0.0006470766384154558
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cecb0>
salience        : 0.0006461391458287835
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ced50>
salience        : 0.0006453016540035605
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee90>
salience        : 0.0006449704524129629
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee40>
salience        : 0.0006449704524129629
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad760>
salience        : 0.0006445450126193464
wikipedia_url   : -
====================
name            : asalto installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad710>
salience        : 0.0006445450126193464
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adee0>
salience        : 0.0006438550190068781
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad3a0>
salience        : 0.0006438550190068781
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad2b0>
salience        : 0.0006432012305594981
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad210>
salience        : 0.0006426344043575227
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad5d0>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad080>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ada80>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad030>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad350>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad490>
salience        : 0.0006420888239517808
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad300>
salience        : 0.0006417592521756887
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad990>
salience        : 0.0006417126278392971
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ee0>
salience        : 0.0006415789248421788
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2080>
salience        : 0.0006415789248421788
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2210>
salience        : 0.0006415789248421788
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2bc0>
salience        : 0.0006415789248421788
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd29e0>
salience        : 0.0006415789248421788
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2940>
salience        : 0.0006411002832464874
wikipedia_url   : -
====================
name            : lighting installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2cb0>
salience        : 0.0006411002832464874
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2850>
salience        : 0.0006411002832464874
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28a0>
salience        : 0.0006406494067050517
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2620>
salience        : 0.0006406494067050517
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2440>
salience        : 0.0006406494067050517
wikipedia_url   : -
====================
name            : jamesglancy westend london lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2490>
salience        : 0.0006405425956472754
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2710>
salience        : 0.0006405425956472754
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2300>
salience        : 0.0006402231520041823
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2da0>
salience        : 0.0006402231520041823
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2df0>
salience        : 0.0006394906085915864
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1bfff030>
salience        : 0.0006394906085915864
wikipedia_url   : -
====================
name            : lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9440>
salience        : 0.0006394906085915864
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels fab lights
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015f80>
salience        : 0.0006394906085915864
wikipedia_url   : -
====================
name            : londoneye lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967210>
salience        : 0.0006394906085915864
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d50>
salience        : 0.0006391795468516648
wikipedia_url   : -
====================
name            : smdlibqmul light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e90>
salience        : 0.000639009231235832
wikipedia_url   : -
====================
name            : amateurphotography lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f80>
salience        : 0.0006385640590451658
wikipedia_url   : -
====================
name            : biggsytravels bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967170>
salience        : 0.0006385640590451658
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229679e0>
salience        : 0.0006385640590451658
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f30>
salience        : 0.0006377364043146372
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967300>
salience        : 0.0006377364043146372
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967490>
salience        : 0.0006377364043146372
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d00>
salience        : 0.0006369886104948819
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c10>
salience        : 0.0006367502501234412
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d50>
salience        : 0.0006363066495396197
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c48a0>
salience        : 0.0006356800440698862
wikipedia_url   : -
====================
name            : show lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6d00>
salience        : 0.000635100353974849
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6c60>
salience        : 0.0006345612346194685
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6940>
salience        : 0.0006334853824228048
wikipedia_url   : -
====================
name            : music lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37e90>
salience        : 0.0006331386393867433
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a931c0>
salience        : 0.0006327173323370516
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93350>
salience        : 0.0006327173323370516
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93440>
salience        : 0.0006323788547888398
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93530>
salience        : 0.0006313402554951608
wikipedia_url   : -
====================
name            : check night market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93620>
salience        : 0.0006274505867622793
wikipedia_url   : -
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93850>
salience        : 0.000627343833912164
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a939e0>
salience        : 0.0006270161247812212
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b20>
salience        : 0.0006194306188262999
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f30>
salience        : 0.0006182693759910762
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a30>
salience        : 0.0006177056347951293
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93210>
salience        : 0.0006175855523906648
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a936c0>
salience        : 0.0006175172165967524
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f80>
salience        : 0.0006162310019135475
wikipedia_url   : -
====================
name            : treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93760>
salience        : 0.0006070713279768825
wikipedia_url   : -
====================
name            : price
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8f0>
salience        : 0.0006012618541717529
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bec10>
salience        : 0.000598702288698405
wikipedia_url   : -
====================
name            : waterloo
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee40>
salience        : 0.0005965576856397092
wikipedia_url   : https://en.wikipedia.org/wiki/A301_road_(Great_Britain)
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8a0>
salience        : 0.0005954779335297644
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea30>
salience        : 0.0005944998702034354
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea80>
salience        : 0.0005935243680141866
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be120>
salience        : 0.0005787137197330594
wikipedia_url   : -
====================
name            : break amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e0d0>
salience        : 0.0005723223439417779
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e260>
salience        : 0.0005685054347850382
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e2b0>
salience        : 0.000567399081774056
wikipedia_url   : -
====================
name            : loki_lego lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e300>
salience        : 0.0005665231728926301
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb20>
salience        : 0.0005665231728926301
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e940>
salience        : 0.0005645203054882586
wikipedia_url   : -
====================
name            : poetry water lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed00>
salience        : 0.0005645203054882586
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef30>
salience        : 0.0005645203054882586
wikipedia_url   : -
====================
name            : londonisopen lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e620>
salience        : 0.0005606444901786745
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8f0>
salience        : 0.0005597235867753625
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3f0>
salience        : 0.0005585306789726019
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed50>
salience        : 0.0005569366039708257
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3a0>
salience        : 0.0005560918943956494
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3080>
salience        : 0.0005558806587941945
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3580>
salience        : 0.0005558806587941945
wikipedia_url   : -
====================
name            : londonisopen lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33a0>
salience        : 0.0005554087110795081
wikipedia_url   : -
====================
name            : installation london lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde30d0>
salience        : 0.0005549676134251058
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38a0>
salience        : 0.0005545535823330283
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b20>
salience        : 0.0005513825453817844
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e90>
salience        : 0.0005493937060236931
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde39e0>
salience        : 0.0005492353811860085
wikipedia_url   : -
====================
name            : polychrome
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3bc0>
salience        : 0.0005486509180627763
wikipedia_url   : -
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d00>
salience        : 0.0005474513745866716
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3760>
salience        : 0.0005474513745866716
wikipedia_url   : -
====================
name            : amyelizabethtv london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3620>
salience        : 0.0005445089773274958
wikipedia_url   : -
====================
name            : kingscross fitzrovia mayfair london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2030>
salience        : 0.0005439271917566657
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c60>
salience        : 0.0005439267843030393
wikipedia_url   : -
====================
name            : southbank london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a80>
salience        : 0.0005431390600278974
wikipedia_url   : https://en.wikipedia.org/wiki/South_Bank
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d50>
salience        : 0.0005427996511571109
wikipedia_url   : -
====================
name            : rainbow nightingale
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd25d0>
salience        : 0.0005413105245679617
wikipedia_url   : -
====================
name            : nightlife
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2530>
salience        : 0.0005390728474594653
wikipedia_url   : -
====================
name            : timeout londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2f30>
salience        : 0.0005380982183851302
wikipedia_url   : -
====================
name            : menus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2120>
salience        : 0.0005328078405000269
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ad0>
salience        : 0.0005275656585581601
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd26c0>
salience        : 0.0005235349526628852
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd27b0>
salience        : 0.0005230542737990618
wikipedia_url   : -
====================
name            : illuminations westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b70>
salience        : 0.0005096027161926031
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081080>
salience        : 0.000507604272570461
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081490>
salience        : 0.0005062475684098899
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081120>
salience        : 0.0005060298717580736
wikipedia_url   : https://en.wikipedia.org/wiki/Soho
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a80>
salience        : 0.0005041190306656063
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220815d0>
salience        : 0.0005032909102737904
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d50>
salience        : 0.0005025616264902055
wikipedia_url   : -
====================
name            : westend amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b20>
salience        : 0.0005025616264902055
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081530>
salience        : 0.0005025616264902055
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081850>
salience        : 0.000501910166349262
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220817b0>
salience        : 0.0005013215122744441
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220811c0>
salience        : 0.0005002915277145803
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220814e0>
salience        : 0.0005002915277145803
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081940>
salience        : 0.0004998352378606796
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b70>
salience        : 0.0004990142188034952
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813f0>
salience        : 0.0004990142188034952
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818f0>
salience        : 0.0004990142188034952
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081da0>
salience        : 0.0004986418643966317
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081030>
salience        : 0.0004986418643966317
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081580>
salience        : 0.0004986418643966317
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c210>
salience        : 0.0004982911050319672
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c120>
salience        : 0.0004982911050319672
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c7b0>
salience        : 0.0004982911050319672
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c620>
salience        : 0.0004979594959877431
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3f0>
salience        : 0.0004979594959877431
wikipedia_url   : -
====================
name            : timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cee0>
salience        : 0.0004977953503839672
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cda0>
salience        : 0.0004967196146026254
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc10>
salience        : 0.000496120483148843
wikipedia_url   : -
====================
name            : coren
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c490>
salience        : 0.0004950897418893874
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8f0>
salience        : 0.0004929839633405209
wikipedia_url   : -
====================
name            : sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c350>
salience        : 0.000492841936647892
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c800>
salience        : 0.000485295953694731
wikipedia_url   : -
====================
name            : get
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c6c0>
salience        : 0.0004852952260989696
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c580>
salience        : 0.00048441518447361887
wikipedia_url   : -
====================
name            : iphonese
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb70>
salience        : 0.00048401669482700527
wikipedia_url   : https://en.wikipedia.org/wiki/IPhone_SE
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce90>
salience        : 0.00048287937534041703
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c9e0>
salience        : 0.00048255803994834423
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ccb0>
salience        : 0.0004820029716938734
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca30>
salience        : 0.0004820029716938734
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c300>
salience        : 0.00047970155719667673
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c670>
salience        : 0.00047451467253267765
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c1c0>
salience        : 0.0004738459247164428
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd50>
salience        : 0.00047148633166216314
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c940>
salience        : 0.0004632227064576
wikipedia_url   : -
====================
name            : walk regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c2b0>
salience        : 0.0004626285226549953
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf580>
salience        : 0.0004625718866009265
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf530>
salience        : 0.0004625718866009265
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe40>
salience        : 0.000461053365143016
wikipedia_url   : -
====================
name            : visitlondon visitlondon createvictoria
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff30>
salience        : 0.0004596250946633518
wikipedia_url   : -
====================
name            : jermyn street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb20>
salience        : 0.00045816655620001256
wikipedia_url   : https://en.wikipedia.org/wiki/Jermyn_Street
====================
name            : londonisopen lumiere kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfad0>
salience        : 0.00045307562686502934
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf940>
salience        : 0.00045105352182872593
wikipedia_url   : -
====================
name            : momento
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf990>
salience        : 0.0004497376212384552
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf760>
salience        : 0.0004479929048102349
wikipedia_url   : -
====================
name            : pa kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf080>
salience        : 0.0004479929048102349
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf350>
salience        : 0.0004479929048102349
wikipedia_url   : -
====================
name            : backdrop king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfee0>
salience        : 0.0004469883569981903
wikipedia_url   : -
====================
name            : installations kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfda0>
salience        : 0.0004469883569981903
wikipedia_url   : -
====================
name            : backdrop king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf850>
salience        : 0.0004469883569981903
wikipedia_url   : -
====================
name            : installations kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb70>
salience        : 0.0004461407952476293
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf670>
salience        : 0.0004454079025890678
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf300>
salience        : 0.0004447624378371984
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa80>
salience        : 0.0004439252079464495
wikipedia_url   : -
====================
name            : kingscross kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf710>
salience        : 0.0004427533131092787
wikipedia_url   : -
====================
name            : nightmare kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfbc0>
salience        : 0.0004419738834258169
wikipedia_url   : -
====================
name            : soho loki_lego lumierelondon trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf6c0>
salience        : 0.00043930293759331107
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf120>
salience        : 0.0004377271397970617
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c60>
salience        : 0.00043506250949576497
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893f0>
salience        : 0.0004346416098996997
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089300>
salience        : 0.0004335852281656116
wikipedia_url   : -
====================
name            : mobile payments
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089350>
salience        : 0.0004329202638473362
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089260>
salience        : 0.00043088625534437597
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220890d0>
salience        : 0.00043087798985652626
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089030>
salience        : 0.00042873225174844265
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220896c0>
salience        : 0.00042721632053144276
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898a0>
salience        : 0.0004272125952411443
wikipedia_url   : -
====================
name            : pa light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e90>
salience        : 0.0004260441637597978
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089cb0>
salience        : 0.0004260441637597978
wikipedia_url   : -
====================
name            : londonisopen lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089bc0>
salience        : 0.0004260441637597978
wikipedia_url   : -
====================
name            : dancer feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a80>
salience        : 0.0004259062116034329
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220899e0>
salience        : 0.00042557588312774897
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220892b0>
salience        : 0.0004229719052091241
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089080>
salience        : 0.00041937740752473474
wikipedia_url   : -
====================
name            : land lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a30>
salience        : 0.00041937740752473474
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089580>
salience        : 0.00041922563104890287
wikipedia_url   : -
====================
name            : love festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b70>
salience        : 0.0004190983308944851
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089530>
salience        : 0.00041766781941987574
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893a0>
salience        : 0.00041732160025276244
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089990>
salience        : 0.0004152577312197536
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ee0>
salience        : 0.00041465595131739974
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e90>
salience        : 0.0004141183744650334
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678f0>
salience        : 0.00041287665953859687
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067440>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220672b0>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673a0>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067bc0>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b20>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d00>
salience        : 0.000412782741477713
wikipedia_url   : -
====================
name            : robwdawkins visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067cb0>
salience        : 0.0004126350104343146
wikipedia_url   : -
====================
name            : chinatown flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067670>
salience        : 0.0004117803182452917
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067990>
salience        : 0.0004108959110453725
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d50>
salience        : 0.000410830311011523
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067210>
salience        : 0.0004043139051645994
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067850>
salience        : 0.0004043139051645994
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon meletispix
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678a0>
salience        : 0.000398290780140087
wikipedia_url   : -
====================
name            : lumieres london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067f30>
salience        : 0.0003944873169530183
wikipedia_url   : -
====================
name            : lumierelondon neonbikes robynwright brownhagardens mayfair london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067300>
salience        : 0.0003917784197255969
wikipedia_url   : -
====================
name            : poal lumierelondon lumierelondon piccadilly london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b70>
salience        : 0.00039113478851504624
wikipedia_url   : -
====================
name            : carloslumiere lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ee0>
salience        : 0.0003900615847669542
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067da0>
salience        : 0.00038887179107405245
wikipedia_url   : -
====================
name            : lumierelondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9ff80>
salience        : 0.00038880351348780096
wikipedia_url   : -
====================
name            : lumiere anaorsatti lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643f0>
salience        : 0.00038781072362326086
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220646c0>
salience        : 0.0003874811518471688
wikipedia_url   : -
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064580>
salience        : 0.00038591644261032343
wikipedia_url   : -
====================
name            : city south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a80>
salience        : 0.0003853571543004364
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064800>
salience        : 0.00038440615753643215
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064760>
salience        : 0.00038361625047400594
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220645d0>
salience        : 0.00038361625047400594
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f80>
salience        : 0.00038361625047400594
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f30>
salience        : 0.00038361625047400594
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c10>
salience        : 0.0003832663642242551
wikipedia_url   : -
====================
name            : gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ad0>
salience        : 0.0003826533502433449
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon paulkingstonnnp westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064120>
salience        : 0.0003820791025646031
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064350>
salience        : 0.0003803286817856133
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a30>
salience        : 0.0003799480036832392
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643a0>
salience        : 0.00037918530870229006
wikipedia_url   : -
====================
name            : westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064670>
salience        : 0.0003785632143262774
wikipedia_url   : -
====================
name            : pieces
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064170>
salience        : 0.00037828367203474045
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064620>
salience        : 0.00037742897984571755
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b70>
salience        : 0.0003772940835915506
wikipedia_url   : -
====================
name            : spot
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064030>
salience        : 0.00037640504888258874
wikipedia_url   : -
====================
name            : londonisopen lumiere lampounette light installations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064bc0>
salience        : 0.0003761767875403166
wikipedia_url   : -
====================
name            : london lumiere lumierelondon2018 westminsterabbey victoria
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064490>
salience        : 0.00037514264113269746
wikipedia_url   : -
====================
name            : newwestend miss installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21300>
salience        : 0.0003743706620298326
wikipedia_url   : -
====================
name            : bike
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a214e0>
salience        : 0.0003740516840480268
wikipedia_url   : -
====================
name            : visitlondon visitlondon createvictoria
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21120>
salience        : 0.00037123257061466575
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21210>
salience        : 0.00036998401628807187
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a212b0>
salience        : 0.0003658942296169698
wikipedia_url   : -
====================
name            : robwdawkins visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213a0>
salience        : 0.0003649784193839878
wikipedia_url   : -
====================
name            : light show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21530>
salience        : 0.00036484230076894164
wikipedia_url   : -
====================
name            : amp socket ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a216c0>
salience        : 0.0003627239784691483
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21850>
salience        : 0.0003627239784691483
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a219e0>
salience        : 0.0003627239784691483
wikipedia_url   : -
====================
name            : amp socket ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b20>
salience        : 0.0003621653886511922
wikipedia_url   : -
====================
name            : amp socket ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c10>
salience        : 0.0003621653886511922
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21cb0>
salience        : 0.0003609778359532356
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d50>
salience        : 0.00035960334935225546
wikipedia_url   : -
====================
name            : wabbey rcwestminster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ee0>
salience        : 0.00035838611074723303
wikipedia_url   : -
====================
name            : household bar team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21170>
salience        : 0.0003562899073585868
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21710>
salience        : 0.00035390883567743003
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218a0>
salience        : 0.000351532333297655
wikipedia_url   : -
====================
name            : aworks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ad0>
salience        : 0.0003507440269459039
wikipedia_url   : -
====================
name            : lumierelondon bbcclick bbcworld bbcnews bbcnewsnight paulj71 westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c60>
salience        : 0.0003495134587865323
wikipedia_url   : -
====================
name            : aworks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e90>
salience        : 0.00034950373810715973
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48a0>
salience        : 0.0003494625852908939
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon tgjenkins westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4620>
salience        : 0.00034936590236611664
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c60>
salience        : 0.00034854470868594944
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a30>
salience        : 0.00034854470868594944
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48f0>
salience        : 0.00034845570917241275
wikipedia_url   : -
====================
name            : aworks
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd44e0>
salience        : 0.0003474205150268972
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ee0>
salience        : 0.0003465543268248439
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d50>
salience        : 0.00034549421980045736
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4710>
salience        : 0.00034255790524184704
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c10>
salience        : 0.00034255790524184704
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b70>
salience        : 0.00034255790524184704
wikipedia_url   : -
====================
name            : songs amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e90>
salience        : 0.0003425304894335568
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d00>
salience        : 0.00034234573831781745
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ad0>
salience        : 0.00033997895661741495
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4990>
salience        : 0.0003364935691934079
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4300>
salience        : 0.00033517275005578995
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd49e0>
salience        : 0.00033350347075611353
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987440>
salience        : 0.0003298310039099306
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229876c0>
salience        : 0.0003295355709269643
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7440>
salience        : 0.0003294518101029098
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7260>
salience        : 0.0003278586664237082
wikipedia_url   : -
====================
name            : uk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7850>
salience        : 0.0003262488462496549
wikipedia_url   : https://en.wikipedia.org/wiki/United_Kingdom
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde72b0>
salience        : 0.00032622579601593316
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7d00>
salience        : 0.0003238726931158453
wikipedia_url   : -
====================
name            : city lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e90>
salience        : 0.0003193961747456342
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde75d0>
salience        : 0.00031846651108935475
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7940>
salience        : 0.0003171497373841703
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e40>
salience        : 0.0003139376058243215
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7120>
salience        : 0.00031290543847717345
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7760>
salience        : 0.00031229303567670286
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7580>
salience        : 0.00031229303567670286
wikipedia_url   : -
====================
name            : england
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f30>
salience        : 0.00031209804001264274
wikipedia_url   : https://en.wikipedia.org/wiki/England
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc74e0>
salience        : 0.00031152807059697807
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7670>
salience        : 0.0003114650025963783
wikipedia_url   : -
====================
name            : westminsterabbey wabbey aichoketrust victoriabid visitlondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7120>
salience        : 0.0003094382118433714
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c60>
salience        : 0.00030860031256452203
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a80>
salience        : 0.00030540055013261735
wikipedia_url   : -
====================
name            : westminster projectservator southbank
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78a0>
salience        : 0.00030493258964270353
wikipedia_url   : -
====================
name            : planning guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d00>
salience        : 0.0003043317119590938
wikipedia_url   : -
====================
name            : planning guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73a0>
salience        : 0.0003043317119590938
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7bc0>
salience        : 0.0003042171592824161
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7850>
salience        : 0.00030340769444592297
wikipedia_url   : -
====================
name            : concierge weekend guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc72b0>
salience        : 0.0003032154345419258
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7710>
salience        : 0.0003029679646715522
wikipedia_url   : -
====================
name            : lumierelondon westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5b20>
salience        : 0.00030166286160238087
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c55d0>
salience        : 0.0003013213281519711
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58a0>
salience        : 0.0003007374471053481
wikipedia_url   : -
====================
name            : haya luz segunda edición del festival de luces en londres lumierelondon lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5580>
salience        : 0.0003002687299158424
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels anaorsatti lumiere london wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002df0>
salience        : 0.0002987888583447784
wikipedia_url   : -
====================
name            : que haya luz segunda edición del festival de luces en londres lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cebc0>
salience        : 0.00029877322958782315
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceb20>
salience        : 0.0002984813181683421
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad170>
salience        : 0.0002983825106639415
wikipedia_url   : -
====================
name            : lightbulb installation ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad120>
salience        : 0.0002973864902742207
wikipedia_url   : -
====================
name            : lumiere em londres london londres lumierelondon lumierelondonfestival lumiere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad6c0>
salience        : 0.00029689972870983183
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad4e0>
salience        : 0.00029686157358810306
wikipedia_url   : -
====================
name            : nursecommunity kingscross lumierelondon lumiere flamingos lumierelondon lumiere visitlondon
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad8a0>
salience        : 0.00029518629889935255
wikipedia_url   : -
====================
name            : piccadilly lightupthenight seethelight lightupthesky illuminations lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015b20>
salience        : 0.0002940309641417116
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ad0>
salience        : 0.00029361667111516
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d69e0>
salience        : 0.00029361667111516
wikipedia_url   : -
====================
name            : da londra lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6ad0>
salience        : 0.00029315907158888876
wikipedia_url   : -
====================
name            : aichoketrust mayoroflondon lumierelightfestival2018
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4a30>
salience        : 0.0002926774031948298
wikipedia_url   : -
====================
name            : aichoketrust mayoroflondon lumierelightfestival2018 lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93120>
salience        : 0.0002926774031948298
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93710>
salience        : 0.0002925145672634244
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e90>
salience        : 0.00029247585916891694
wikipedia_url   : -
====================
name            : visitlondon aichoketrust cedricleborgne london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93170>
salience        : 0.00029225321486592293
wikipedia_url   : -
====================
name            : one
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ee0>
salience        : 0.00029104697750881314
wikipedia_url   : -
====================
name            : regent street love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93800>
salience        : 0.00029029775760136545
wikipedia_url   : -
====================
name            : congratulations friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938f0>
salience        : 0.00028976466273888946
wikipedia_url   : -
====================
name            : acoustic rock n pop show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220becb0>
salience        : 0.0002879778912756592
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be210>
salience        : 0.0002869776217266917
wikipedia_url   : -
====================
name            : trail head
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec60>
salience        : 0.00028690905310213566
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e670>
salience        : 0.0002860736276488751
wikipedia_url   : -
====================
name            : favourite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ecb0>
salience        : 0.00028573352028615773
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e990>
salience        : 0.00028573352028615773
wikipedia_url   : -
====================
name            : planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e350>
salience        : 0.0002846860443241894
wikipedia_url   : -
====================
name            : broadwick street plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eee0>
salience        : 0.00028404759359546006
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e7b0>
salience        : 0.00028330564964562654
wikipedia_url   : -
====================
name            : visitlondon keeponwalking aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea30>
salience        : 0.00028316909447312355
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3440>
salience        : 0.0002819795336108655
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde36c0>
salience        : 0.000281807326246053
wikipedia_url   : -
====================
name            : favourite
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f30>
salience        : 0.0002806202683132142
wikipedia_url   : -
====================
name            : favorites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f80>
salience        : 0.0002803643001243472
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3710>
salience        : 0.00027934880927205086
wikipedia_url   : -
====================
name            : people streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd21c0>
salience        : 0.00027774283080361784
wikipedia_url   : -
====================
name            : evening highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd20d0>
salience        : 0.00027648292598314583
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d00>
salience        : 0.00027594424318522215
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a30>
salience        : 0.00027470762142911553
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2670>
salience        : 0.00027427103486843407
wikipedia_url   : -
====================
name            : regent street wabbey stas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd22b0>
salience        : 0.0002735805173870176
wikipedia_url   : -
====================
name            : thisissoho
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2990>
salience        : 0.0002732503635343164
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd24e0>
salience        : 0.00027136498829349875
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2350>
salience        : 0.0002705857332330197
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23f0>
salience        : 0.0002684150531422347
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2170>
salience        : 0.0002679711615201086
wikipedia_url   : -
====================
name            : youtube
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d00>
salience        : 0.00026720279129222035
wikipedia_url   : https://en.wikipedia.org/wiki/YouTube
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081350>
salience        : 0.0002667318331077695
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081710>
salience        : 0.0002667318331077695
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e40>
salience        : 0.0002667318331077695
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c10>
salience        : 0.0002628726069815457
wikipedia_url   : -
====================
name            : westminstercathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081990>
salience        : 0.0002626560744829476
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e90>
salience        : 0.00026054022600874305
wikipedia_url   : -
====================
name            : lumiere lumière lumiere2018 wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081260>
salience        : 0.00026025419356301427
wikipedia_url   : -
====================
name            : catering team honour installation echelle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220816c0>
salience        : 0.00025894780992530286
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081bc0>
salience        : 0.0002565104514360428
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081620>
salience        : 0.00025498136528767645
wikipedia_url   : -
====================
name            : wonder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a30>
salience        : 0.0002544086310081184
wikipedia_url   : -
====================
name            : night shift
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081760>
salience        : 0.0002544086310081184
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220810d0>
salience        : 0.0002540074638091028
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc60>
salience        : 0.0002525903983041644
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c170>
salience        : 0.000252445723162964
wikipedia_url   : -
====================
name            : umbrella project cirque
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c0d0>
salience        : 0.0002520553534850478
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c5d0>
salience        : 0.0002519959525670856
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf30>
salience        : 0.00025192691828124225
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cdf0>
salience        : 0.00025180986267514527
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd00>
salience        : 0.00025180986267514527
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987120>
salience        : 0.0002516971144359559
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987210>
salience        : 0.0002512835490051657
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c10>
salience        : 0.0002511883503757417
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a80>
salience        : 0.0002510960039217025
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b70>
salience        : 0.00025091934367083013
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8940>
salience        : 0.00025075231678783894
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8760>
salience        : 0.0002503356954548508
wikipedia_url   : -
====================
name            : fe_photograph illumaphonium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8710>
salience        : 0.00024948030477389693
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8440>
salience        : 0.00024914482492022216
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e90>
salience        : 0.00024874607333913445
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e40>
salience        : 0.00024814833886921406
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8080>
salience        : 0.0002479831746313721
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c60>
salience        : 0.0002474530483596027
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88f0>
salience        : 0.0002474304928909987
wikipedia_url   : -
====================
name            : londonisopen
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc86c0>
salience        : 0.00024716276675462723
wikipedia_url   : -
====================
name            : smiles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8530>
salience        : 0.0002471568004693836
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc87b0>
salience        : 0.00024702749215066433
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f80>
salience        : 0.00024689806741662323
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc89e0>
salience        : 0.00024689806741662323
wikipedia_url   : -
====================
name            : lighting london londonisopen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8490>
salience        : 0.00024689806741662323
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b20>
salience        : 0.00024689806741662323
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8210>
salience        : 0.0002467739686835557
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8cb0>
salience        : 0.0002467739686835557
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220752b0>
salience        : 0.00024665481760166585
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220750d0>
salience        : 0.00024665481760166585
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220754e0>
salience        : 0.00024665481760166585
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075530>
salience        : 0.00024665481760166585
wikipedia_url   : -
====================
name            : walkers
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075800>
salience        : 0.0002464971039444208
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753f0>
salience        : 0.0002463233540765941
wikipedia_url   : -
====================
name            : lights london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d00>
salience        : 0.00024612111155875027
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075bc0>
salience        : 0.0002460248942952603
wikipedia_url   : -
====================
name            : aichoketrust mayoroflondon lumierelightfestival2018 lumierelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220759e0>
salience        : 0.00024598976597189903
wikipedia_url   : -
====================
name            : shift london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d50>
salience        : 0.00024593170383013785
wikipedia_url   : -
====================
name            : lighting london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075580>
salience        : 0.0002457535592839122
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f30>
salience        : 0.00024559113080613315
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f80>
salience        : 0.00024558542645536363
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e40>
salience        : 0.0002448621380608529
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075490>
salience        : 0.0002448621380608529
wikipedia_url   : -
====================
name            : railway station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075080>
salience        : 0.0002442780532874167
wikipedia_url   : -
====================
name            : rain aquarium phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b70>
salience        : 0.00024410616606473923
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a30>
salience        : 0.00024347868748009205
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758f0>
salience        : 0.00024339836090803146
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075620>
salience        : 0.00024300253426190466
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075260>
salience        : 0.00024300253426190466
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075940>
salience        : 0.00024300253426190466
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753a0>
salience        : 0.00024300253426190466
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e90>
salience        : 0.00024278086493723094
wikipedia_url   : -
====================
name            : check visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075670>
salience        : 0.00024191474949475378
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075210>
salience        : 0.00024188653333112597
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8a0>
salience        : 0.00024188653333112597
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d030>
salience        : 0.00024188653333112597
wikipedia_url   : -
====================
name            : instalation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d800>
salience        : 0.00024188653333112597
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d530>
salience        : 0.00024188653333112597
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d0d0>
salience        : 0.00024174124700948596
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf5d0>
salience        : 0.00024174124700948596
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf120>
salience        : 0.00024174124700948596
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bfcb0>
salience        : 0.00024174124700948596
wikipedia_url   : -
====================
name            : londonlifeon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf2b0>
salience        : 0.0002416817587800324
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf210>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf170>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2530>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d50>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2620>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e90>
salience        : 0.00024160278553608805
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a30>
salience        : 0.0002414705668343231
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b70>
salience        : 0.0002414705668343231
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c60>
salience        : 0.0002414705668343231
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28a0>
salience        : 0.0002414705668343231
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2760>
salience        : 0.00024141893663909286
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2f30>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b20>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2cb0>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28f0>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ad0>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd25d0>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2710>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc760>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cca80>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc710>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ee0>
salience        : 0.00024134403793141246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9760>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9620>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9300>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a80>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98a0>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9800>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd97b0>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9710>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e40>
salience        : 0.00024122274771798402
wikipedia_url   : -
====================
name            : cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c60>
salience        : 0.00024112795654218644
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9210>
salience        : 0.00024110625963658094
wikipedia_url   : -
====================
name            : concierge weekend guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd96c0>
salience        : 0.00024100094742607325
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9670>
salience        : 0.00024099422444123775
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b20>
salience        : 0.00024099422444123775
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd99e0>
salience        : 0.0002408863219898194
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9850>
salience        : 0.0002408863219898194
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9120>
salience        : 0.00024078224669210613
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9cb0>
salience        : 0.00024078224669210613
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9350>
salience        : 0.0002406817366136238
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9530>
salience        : 0.0002406817366136238
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a30>
salience        : 0.00024058455892372876
wikipedia_url   : -
====================
name            : lines
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9490>
salience        : 0.00024054387176875025
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f30>
salience        : 0.00024049052444752306
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e4e0>
salience        : 0.00024031104112509638
wikipedia_url   : -
====================
name            : rhyscoren installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e170>
salience        : 0.00024031104112509638
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e670>
salience        : 0.00024022525758482516
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e580>
salience        : 0.00024022525758482516
wikipedia_url   : -
====================
name            : techniciansmakeithappen butterfly lanterns nightlife light installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e940>
salience        : 0.00024022525758482516
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e9e0>
salience        : 0.00024014193331822753
wikipedia_url   : -
====================
name            : dot installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ead0>
salience        : 0.00024014193331822753
wikipedia_url   : -
====================
name            : prosecco quote lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec10>
salience        : 0.00023961054102983326
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec60>
salience        : 0.00023956158838700503
wikipedia_url   : -
====================
name            : prosecco quote lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed00>
salience        : 0.0002395318733761087
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee40>
salience        : 0.00023904957924969494
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef80>
salience        : 0.00023890598095022142
wikipedia_url   : -
====================
name            : installation regent street lumierelondon regentstreet london light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e030>
salience        : 0.00023890598095022142
wikipedia_url   : -
====================
name            : fish telephone box greatbritain london lights
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e1c0>
salience        : 0.00023876916384324431
wikipedia_url   : -
====================
name            : lightbulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e800>
salience        : 0.00023876916384324431
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea80>
salience        : 0.00023876916384324431
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed50>
salience        : 0.00023863848764449358
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e120>
salience        : 0.00023863848764449358
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e490>
salience        : 0.00023863848764449358
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e7b0>
salience        : 0.00023851344303693622
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea30>
salience        : 0.00023851344303693622
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb20>
salience        : 0.00023827844415791333
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209edf0>
salience        : 0.00023827844415791333
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eee0>
salience        : 0.0002380610822001472
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f30>
salience        : 0.00023795822926331311
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9e40>
salience        : 0.00023795822926331311
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f80>
salience        : 0.00023795822926331311
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9120>
salience        : 0.00023795822926331311
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9620>
salience        : 0.00023792998399585485
wikipedia_url   : -
====================
name            : loki_lego lumierelondon trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9c60>
salience        : 0.0002379246725467965
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d92b0>
salience        : 0.00023785889788996428
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9710>
salience        : 0.00023785889788996428
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9670>
salience        : 0.0002377628698013723
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9760>
salience        : 0.0002377628698013723
wikipedia_url   : -
====================
name            : souvenir guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d99e0>
salience        : 0.00023776228772476315
wikipedia_url   : -
====================
name            : souvenir guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9440>
salience        : 0.00023776228772476315
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9580>
salience        : 0.00023768683604430407
wikipedia_url   : -
====================
name            : check london lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9530>
salience        : 0.0002376699267188087
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d00>
salience        : 0.0002376699267188087
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47df0>
salience        : 0.00023757987946737558
wikipedia_url   : -
====================
name            : ruth chittock
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47bc0>
salience        : 0.0002375712210778147
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47080>
salience        : 0.00023749255342409015
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47710>
salience        : 0.00023749255342409015
wikipedia_url   : -
====================
name            : motion light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47120>
salience        : 0.0002374077885178849
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b70>
salience        : 0.00023727705411147326
wikipedia_url   : -
====================
name            : droplets lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47800>
salience        : 0.0002372453745920211
wikipedia_url   : -
====================
name            : nohern lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47990>
salience        : 0.0002372453745920211
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473a0>
salience        : 0.00023703456099610776
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47350>
salience        : 0.00023703456099610776
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47620>
salience        : 0.0002362958766752854
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf440>
salience        : 0.00023598075495101511
wikipedia_url   : -
====================
name            : leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd50>
salience        : 0.00023590234923176467
wikipedia_url   : https://en.wikipedia.org/wiki/Leicester_Square
====================
name            : visitlondon aichoketrust loki_lego leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa30>
salience        : 0.00023514787608291954
wikipedia_url   : -
====================
name            : lumiere thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8f0>
salience        : 0.00023501980467699468
wikipedia_url   : -
====================
name            : lumierelondon brightnights lightsoflondon thisislondon mydarlinglondon londondisclosure london_only liveloveldntown urbanphotography cano tubemaplondon lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf7b0>
salience        : 0.00023423085804097354
wikipedia_url   : -
====================
name            : lumierelondon map guide gallery list thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf490>
salience        : 0.00023366340610664338
wikipedia_url   : -
====================
name            : lumierelondon map guide gallery list thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf2b0>
salience        : 0.00023348901595454663
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf4e0>
salience        : 0.00023311306722462177
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd00>
salience        : 0.00023311306722462177
wikipedia_url   : -
====================
name            : thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf030>
salience        : 0.0002324425586266443
wikipedia_url   : -
====================
name            : saws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf3f0>
salience        : 0.0002320212370250374
wikipedia_url   : -
====================
name            : poals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfdf0>
salience        : 0.0002320212370250374
wikipedia_url   : -
====================
name            : tips visits
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf0d0>
salience        : 0.00023197817790787667
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff80>
salience        : 0.000231861587963067
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e40>
salience        : 0.000231861587963067
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220891c0>
salience        : 0.00023143818543758243
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089210>
salience        : 0.00023143818543758243
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898f0>
salience        : 0.00023082272673491389
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ad0>
salience        : 0.00023009112919680774
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220897b0>
salience        : 0.00023009112919680774
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089f30>
salience        : 0.00023005811090115458
wikipedia_url   : -
====================
name            : waves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089120>
salience        : 0.00023000876535661519
wikipedia_url   : -
====================
name            : wlondonhotel visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089df0>
salience        : 0.00022967300901655108
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089940>
salience        : 0.00022942267241887748
wikipedia_url   : -
====================
name            : lumierelondon visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089170>
salience        : 0.00022923741198610514
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089da0>
salience        : 0.00022901663032826036
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c10>
salience        : 0.000228583172429353
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d50>
salience        : 0.0002277716266689822
wikipedia_url   : -
====================
name            : display lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067580>
salience        : 0.0002275267179356888
wikipedia_url   : -
====================
name            : stores
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220674e0>
salience        : 0.00022721037385053933
wikipedia_url   : -
====================
name            : visitlondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067350>
salience        : 0.0002268106327392161
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067080>
salience        : 0.0002268106327392161
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220679e0>
salience        : 0.0002266402298118919
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a30>
salience        : 0.0002266402298118919
wikipedia_url   : -
====================
name            : biggsytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c10>
salience        : 0.0002266402298118919
wikipedia_url   : -
====================
name            : biggsytravels biggsytravels
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067940>
salience        : 0.00022631172032561153
wikipedia_url   : -
====================
name            : nightphotography visitlondon london1visit aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067120>
salience        : 0.00022479158360511065
wikipedia_url   : -
====================
name            : ritatudela este fin de semana en londres la segunda edición del festival de luces visitlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067760>
salience        : 0.00022423674818128347
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220671c0>
salience        : 0.00022419332526624203
wikipedia_url   : -
====================
name            : londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067df0>
salience        : 0.00022362088202498853
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220640d0>
salience        : 0.00022321251162793487
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220644e0>
salience        : 0.0002232032857136801
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064990>
salience        : 0.00022311933571472764
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064850>
salience        : 0.00022310683561954647
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064710>
salience        : 0.00022302925935946405
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220641c0>
salience        : 0.00022302925935946405
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064440>
salience        : 0.00022302925935946405
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064940>
salience        : 0.0002229420788353309
wikipedia_url   : -
====================
name            : swing
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e90>
salience        : 0.00022280779376160353
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b20>
salience        : 0.00022261892445385456
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064300>
salience        : 0.00022261892445385456
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21080>
salience        : 0.00022261892445385456
wikipedia_url   : -
====================
name            : eventprofs
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a211c0>
salience        : 0.00022251353948377073
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213f0>
salience        : 0.00022251353948377073
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21760>
salience        : 0.00022210546012502164
wikipedia_url   : -
====================
name            : photography london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21800>
salience        : 0.00022146002447698265
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21940>
salience        : 0.00022099916532170027
wikipedia_url   : -
====================
name            : city world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d00>
salience        : 0.00022039382020011544
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21670>
salience        : 0.00021956411364953965
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21990>
salience        : 0.00021933364041615278
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b70>
salience        : 0.00021933364041615278
wikipedia_url   : -
====================
name            : study
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21da0>
salience        : 0.0002192971296608448
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f30>
salience        : 0.00021912182273808867
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4530>
salience        : 0.00021912182273808867
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4da0>
salience        : 0.00021912182273808867
wikipedia_url   : -
====================
name            : datingtips location
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b20>
salience        : 0.00021912067313678563
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4580>
salience        : 0.00021880421263631433
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4800>
salience        : 0.00021870509954169393
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4760>
salience        : 0.00021870509954169393
wikipedia_url   : -
====================
name            : aworks aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4490>
salience        : 0.0002186585625167936
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4670>
salience        : 0.00021725815895479172
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcc2df0>
salience        : 0.00021725815895479172
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a30>
salience        : 0.00021704410028178245
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7210>
salience        : 0.00021687250409740955
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7030>
salience        : 0.0002168461069231853
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde71c0>
salience        : 0.00021666193788405508
wikipedia_url   : -
====================
name            : brightnights gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7da0>
salience        : 0.00021664038649760187
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7620>
salience        : 0.0002164897887269035
wikipedia_url   : -
====================
name            : location
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7ad0>
salience        : 0.00021632821881212294
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7800>
salience        : 0.000216175991226919
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc71c0>
salience        : 0.0002160321018891409
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5760>
salience        : 0.00021597569866571575
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5d00>
salience        : 0.00021597569866571575
wikipedia_url   : -
====================
name            : lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec60>
salience        : 0.00021562082110904157
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adad0>
salience        : 0.00021556134743150324
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ade90>
salience        : 0.00021492828091140836
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad850>
salience        : 0.00021477683912962675
wikipedia_url   : -
====================
name            : joshua reynolds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad260>
salience        : 0.00021463801385834813
wikipedia_url   : https://en.wikipedia.org/wiki/Joshua_Reynolds
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d00>
salience        : 0.0002141398872481659
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6a30>
salience        : 0.0002141398872481659
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a932b0>
salience        : 0.0002139842981705442
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933f0>
salience        : 0.00021395801741164178
wikipedia_url   : -
====================
name            : folly blueprintmag highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d50>
salience        : 0.00021395801741164178
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed00>
salience        : 0.00021395801741164178
wikipedia_url   : -
====================
name            : londonisopen lumiere blueprintmag highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed50>
salience        : 0.00021395801741164178
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be0d0>
salience        : 0.0002137140545528382
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e6c0>
salience        : 0.00021362847473938018
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e530>
salience        : 0.00021362847473938018
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e080>
salience        : 0.00021362847473938018
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3210>
salience        : 0.00021362847473938018
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c60>
salience        : 0.00021337487851269543
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3940>
salience        : 0.00021333605400286615
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3300>
salience        : 0.000213171006180346
wikipedia_url   : -
====================
name            : lumierelondon secret_ldn lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c10>
salience        : 0.000212069193366915
wikipedia_url   : -
====================
name            : shots details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23a0>
salience        : 0.0002120359567925334
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b20>
salience        : 0.00021098500292282552
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2580>
salience        : 0.0002096218231599778
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818a0>
salience        : 0.0002096218231599778
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081170>
salience        : 0.0002095905365422368
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ee0>
salience        : 0.00020909516024403274
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081800>
salience        : 0.00020886103447992355
wikipedia_url   : -
====================
name            : amp restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081df0>
salience        : 0.000208667668630369
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081cb0>
salience        : 0.00020864667021669447
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c030>
salience        : 0.00020864667021669447
wikipedia_url   : -
====================
name            : photography lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c530>
salience        : 0.00020844901155214757
wikipedia_url   : -
====================
name            : photography lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca80>
salience        : 0.00020844901155214757
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf80>
salience        : 0.00020817870972678065
wikipedia_url   : -
====================
name            : performance piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce40>
salience        : 0.00020785394008271396
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c260>
salience        : 0.00020778387261088938
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8a0>
salience        : 0.0002077077515423298
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c710>
salience        : 0.0002066731540253386
wikipedia_url   : -
====================
name            : lumierelondon loki_lego trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb20>
salience        : 0.0002064998698187992
wikipedia_url   : -
====================
name            : child
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987670>
salience        : 0.00020639105059672147
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8bc0>
salience        : 0.00020478000806178898
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8df0>
salience        : 0.00020471691095735878
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47440>
salience        : 0.00020448415307328105
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e40>
salience        : 0.00020448415307328105
wikipedia_url   : -
====================
name            : sculpture music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d50>
salience        : 0.00020420888904482126
wikipedia_url   : -
====================
name            : sound music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc476c0>
salience        : 0.00020420888904482126
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47490>
salience        : 0.0002041975676547736
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c60>
salience        : 0.00020413049787748605
wikipedia_url   : -
====================
name            : beer craftbeer ale london thames river brewery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc474e0>
salience        : 0.0002037715894402936
wikipedia_url   : -
====================
name            : lemonjellie
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47760>
salience        : 0.0002037715894402936
wikipedia_url   : -
====================
name            : check guide rupe street food drink requirements
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47030>
salience        : 0.0002037715894402936
wikipedia_url   : -
====================
name            : cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47670>
salience        : 0.00020351012062747031
wikipedia_url   : -
====================
name            : animations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d1c0>
salience        : 0.00020310933177825063
wikipedia_url   : -
====================
name            : nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8f0>
salience        : 0.00020289255189709365
wikipedia_url   : -
====================
name            : londonisopen lumiere butterflies nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3a0>
salience        : 0.00020254362607374787
wikipedia_url   : -
====================
name            : everywhere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dcb0>
salience        : 0.00020234045223332942
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dbc0>
salience        : 0.00020206061890348792
wikipedia_url   : -
====================
name            : video projection voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db70>
salience        : 0.0002019174280576408
wikipedia_url   : -
====================
name            : aichoketrust elizabethfell1 thewave veigo southbank londonwhispers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d9e0>
salience        : 0.00020153631339780986
wikipedia_url   : -
====================
name            : shots voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d940>
salience        : 0.00020146455790381879
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d5d0>
salience        : 0.00019996624905616045
wikipedia_url   : -
====================
name            : telephone box library
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d6c0>
salience        : 0.00019996624905616045
wikipedia_url   : -
====================
name            : visitlondon lumierelondon londonwhispers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206df80>
salience        : 0.00019982323283329606
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d260>
salience        : 0.00019975207396782935
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d080>
salience        : 0.0001995552738662809
wikipedia_url   : -
====================
name            : evening lots
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d440>
salience        : 0.00019942462677136064
wikipedia_url   : -
====================
name            : installation voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc10>
salience        : 0.00019920388876926154
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da80>
salience        : 0.00019904562213923782
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d490>
salience        : 0.00019904562213923782
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3f0>
salience        : 0.00019904562213923782
wikipedia_url   : -
====================
name            : amp music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de40>
salience        : 0.00019904562213923782
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d300>
salience        : 0.00019904562213923782
wikipedia_url   : -
====================
name            : londonisopen lumiere ukinargentina es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d710>
salience        : 0.000198827896383591
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da30>
salience        : 0.00019805802730843425
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dda0>
salience        : 0.00019757587870117277
wikipedia_url   : -
====================
name            : ladder cupcakes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d850>
salience        : 0.00019741852884180844
wikipedia_url   : -
====================
name            : leicester
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7490>
salience        : 0.00019739661365747452
wikipedia_url   : -
====================
name            : spirits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7210>
salience        : 0.00019721308490261436
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7350>
salience        : 0.00019649807654786855
wikipedia_url   : -
====================
name            : drink
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73a0>
salience        : 0.00019595881167333573
wikipedia_url   : -
====================
name            : carnival
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78a0>
salience        : 0.00019595881167333573
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7da0>
salience        : 0.0001957562199095264
wikipedia_url   : -
====================
name            : love lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e40>
salience        : 0.0001951634621946141
wikipedia_url   : -
====================
name            : space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7260>
salience        : 0.00019478113972581923
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a72b0>
salience        : 0.00019455798610579222
wikipedia_url   : https://en.wikipedia.org/wiki/Fitzrovia
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ad0>
salience        : 0.0001921634830068797
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7580>
salience        : 0.00019208728917874396
wikipedia_url   : -
====================
name            : broadwick street plan visit shots details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7030>
salience        : 0.0001916825567604974
wikipedia_url   : -
====================
name            : westend
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7170>
salience        : 0.00019168191647622734
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a79e0>
salience        : 0.00019167849677614868
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7300>
salience        : 0.00019150512525811791
wikipedia_url   : -
====================
name            : cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c60>
salience        : 0.00019088585395365953
wikipedia_url   : -
====================
name            : lumierelondon london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7620>
salience        : 0.00019072780560236424
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7cb0>
salience        : 0.00019063742365688086
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a80>
salience        : 0.00019017454178538173
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7670>
salience        : 0.00019012689881492406
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7710>
salience        : 0.00019004917703568935
wikipedia_url   : -
====================
name            : break amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78f0>
salience        : 0.00018823868595063686
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a30>
salience        : 0.00018811981135513633
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2cb0>
salience        : 0.00018811981135513633
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a29e0>
salience        : 0.00018811981135513633
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2760>
salience        : 0.00018800680118147284
wikipedia_url   : -
====================
name            : southbank amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e90>
salience        : 0.00018789911700878292
wikipedia_url   : -
====================
name            : visitlondon lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d00>
salience        : 0.00018775831267703325
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2940>
salience        : 0.00018757178622763604
wikipedia_url   : -
====================
name            : soho amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a20d0>
salience        : 0.00018734186596702784
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a22b0>
salience        : 0.00018721602100413293
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23a0>
salience        : 0.00018721602100413293
wikipedia_url   : -
====================
name            : westend amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a25d0>
salience        : 0.00018710718723013997
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a80>
salience        : 0.00018710718723013997
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ee0>
salience        : 0.00018705341790337116
wikipedia_url   : -
====================
name            : check london trailclues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2580>
salience        : 0.00018690839351620525
wikipedia_url   : -
====================
name            : sea containers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2da0>
salience        : 0.00018666413961909711
wikipedia_url   : -
====================
name            : night sky
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c10>
salience        : 0.00018583034398034215
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2260>
salience        : 0.00018562463810667396
wikipedia_url   : -
====================
name            : streetaglobe southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a26c0>
salience        : 0.00018560448370408267
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2df0>
salience        : 0.00018522341269999743
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels piccadilly
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2030>
salience        : 0.00018517192802391946
wikipedia_url   : -
====================
name            : mayfair
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ad0>
salience        : 0.00018461336730979383
wikipedia_url   : https://en.wikipedia.org/wiki/Mayfair
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a27b0>
salience        : 0.00018459968850947917
wikipedia_url   : -
====================
name            : shots greenscreen technology
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a21c0>
salience        : 0.0001823687634896487
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f30>
salience        : 0.00018236080359201878
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3da0>
salience        : 0.0001822996127884835
wikipedia_url   : -
====================
name            : paners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d00>
salience        : 0.000181827912456356
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e90>
salience        : 0.00018171151168644428
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3cb0>
salience        : 0.00018162706692237407
wikipedia_url   : -
====================
name            : twambassadors light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c60>
salience        : 0.00018162706692237407
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3490>
salience        : 0.0001812614209484309
wikipedia_url   : -
====================
name            : ladder bellringing light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3350>
salience        : 0.00018092364189215004
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3990>
salience        : 0.00018054858082905412
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38f0>
salience        : 0.0001790850074030459
wikipedia_url   : -
====================
name            : aquarium pop
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3080>
salience        : 0.0001785935164662078
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3580>
salience        : 0.00017789681442081928
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3670>
salience        : 0.0001778902078513056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3620>
salience        : 0.00017778831534087658
wikipedia_url   : -
====================
name            : aichoketrust
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ee0>
salience        : 0.00017773022409528494
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3260>
salience        : 0.00017762977222446352
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b20>
salience        : 0.00017742290219757706
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a30>
salience        : 0.00017734045104589313
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3940>
salience        : 0.00017734045104589313
wikipedia_url   : -
====================
name            : content
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3800>
salience        : 0.00017730533727444708
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ad0>
salience        : 0.00017726104124449193
wikipedia_url   : -
====================
name            : content
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc32b0>
salience        : 0.0001771873066900298
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3210>
salience        : 0.0001771873066900298
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33a0>
salience        : 0.0001771169190760702
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f80>
salience        : 0.00017696977010928094
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3df0>
salience        : 0.00017690271488390863
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc30d0>
salience        : 0.00017683768237475306
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3710>
salience        : 0.0001767132489476353
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3760>
salience        : 0.00017659561126492918
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc35d0>
salience        : 0.00017590055358596146
wikipedia_url   : -
====================
name            : page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3120>
salience        : 0.00017550602206028998
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3170>
salience        : 0.0001751731469994411
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1710>
salience        : 0.0001742007298162207
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1df0>
salience        : 0.0001740141597110778
wikipedia_url   : -
====================
name            : jar face prison dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18a0>
salience        : 0.0001740141597110778
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f30>
salience        : 0.00017368410772178322
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1530>
salience        : 0.00017353658040519804
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13a0>
salience        : 0.00017353658040519804
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1350>
salience        : 0.00017353658040519804
wikipedia_url   : -
====================
name            : animations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1bc0>
salience        : 0.00017339515034109354
wikipedia_url   : -
====================
name            : london kings cross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1760>
salience        : 0.00017186121840495616
wikipedia_url   : -
====================
name            : lightfestival lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1120>
salience        : 0.00017150193161796778
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1cb0>
salience        : 0.00017120101256296039
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d50>
salience        : 0.00017106485029216856
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1e90>
salience        : 0.00017075284267775714
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f80>
salience        : 0.00017028601723723114
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8580>
salience        : 0.00017021493113134056
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83a0>
salience        : 0.00017021493113134056
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc80d0>
salience        : 0.00017018028302118182
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8170>
salience        : 0.00017018028302118182
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88a0>
salience        : 0.00017014621698763222
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc85d0>
salience        : 0.00017014621698763222
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8260>
salience        : 0.00017011268937494606
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8800>
salience        : 0.00017011268937494606
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ee0>
salience        : 0.00017007970018312335
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc84e0>
salience        : 0.00017004722030833364
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8300>
salience        : 0.00017004722030833364
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220755d0>
salience        : 0.0001700152497505769
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220751c0>
salience        : 0.0001700152497505769
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075300>
salience        : 0.0001700152497505769
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075350>
salience        : 0.0001700152497505769
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c60>
salience        : 0.0001699920103419572
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075990>
salience        : 0.00016998375940602273
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075df0>
salience        : 0.00016995274927467108
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075170>
salience        : 0.00016995274927467108
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075440>
salience        : 0.0001699221902526915
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758a0>
salience        : 0.0001699221902526915
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075ad0>
salience        : 0.0001699221902526915
wikipedia_url   : -
====================
name            : kids
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d940>
salience        : 0.0001699006388662383
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d350>
salience        : 0.00016989208234008402
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8f0>
salience        : 0.00016989208234008402
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf8a0>
salience        : 0.00016989208234008402
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf6c0>
salience        : 0.00016989208234008402
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf710>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2da0>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd27b0>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a80>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2990>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c10>
salience        : 0.00016986241098493338
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2580>
salience        : 0.00016983314708340913
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2df0>
salience        : 0.00016983314708340913
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2bc0>
salience        : 0.00016983314708340913
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc0d0>
salience        : 0.00016983314708340913
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b70>
salience        : 0.00016983314708340913
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd94e0>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9bc0>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98f0>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9260>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9d50>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd92b0>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c10>
salience        : 0.0001698043051874265
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9080>
salience        : 0.00016979257634375244
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e90>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3f0>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ebc0>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef30>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e530>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb70>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e2b0>
salience        : 0.00016977585619315505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ecb0>
salience        : 0.00016974778554867953
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9a80>
salience        : 0.00016974778554867953
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d93f0>
salience        : 0.00016974778554867953
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d94e0>
salience        : 0.00016972010780591518
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9490>
salience        : 0.0001696027466095984
wikipedia_url   : -
====================
name            : sparkles lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d95d0>
salience        : 0.00016954468446783721
wikipedia_url   : -
====================
name            : city amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f30>
salience        : 0.00016943714581429958
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47cb0>
salience        : 0.00016897312889341265
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc478f0>
salience        : 0.00016892174608074129
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47530>
salience        : 0.00016892174608074129
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47260>
salience        : 0.0001688716292846948
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc477b0>
salience        : 0.0001688226911937818
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe90>
salience        : 0.00016877490270417184
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf9e0>
salience        : 0.00016872819105628878
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf5d0>
salience        : 0.00016868252714630216
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8a0>
salience        : 0.00016868252714630216
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfcb0>
salience        : 0.0001686535106273368
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220895d0>
salience        : 0.00016863785276655108
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089440>
salience        : 0.00016863785276655108
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220894e0>
salience        : 0.00016859413881320506
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089710>
salience        : 0.00016859413881320506
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b20>
salience        : 0.00016859413881320506
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089490>
salience        : 0.00016850938845891505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220675d0>
salience        : 0.00016846829385031015
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673f0>
salience        : 0.00016846829385031015
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067030>
salience        : 0.00016842801414895803
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a80>
salience        : 0.0001683117006905377
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e40>
salience        : 0.0001682743604760617
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067710>
salience        : 0.00016823768964968622
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067620>
salience        : 0.00016704945301171392
wikipedia_url   : -
====================
name            : regent street lumierelondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064080>
salience        : 0.00016675784718245268
wikipedia_url   : -
====================
name            : lumierelondon london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220647b0>
salience        : 0.00016672213678248227
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ee0>
salience        : 0.00016672213678248227
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e40>
salience        : 0.00016658524691592902
wikipedia_url   : -
====================
name            : route london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064da0>
salience        : 0.00016655241779517382
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648a0>
salience        : 0.00016642619448248297
wikipedia_url   : -
====================
name            : installation london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c60>
salience        : 0.0001663958391873166
wikipedia_url   : -
====================
name            : southbank london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a210d0>
salience        : 0.00016636592044960707
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21350>
salience        : 0.00016634906933177263
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21620>
salience        : 0.0001663364382693544
wikipedia_url   : -
====================
name            : installation london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218f0>
salience        : 0.00016630737809464335
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e40>
salience        : 0.00016630737809464335
wikipedia_url   : -
====================
name            : kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a30>
salience        : 0.0001661046699155122
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e40>
salience        : 0.00016604529810138047
wikipedia_url   : -
====================
name            : kings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4bc0>
salience        : 0.00016578962095081806
wikipedia_url   : -
====================
name            : gin amp tonic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd42b0>
salience        : 0.00016571758897043765
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd43a0>
salience        : 0.00016545447579119354
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a80>
salience        : 0.0001653346116654575
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd45d0>
salience        : 0.00016531150322407484
wikipedia_url   : -
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd46c0>
salience        : 0.0001652772625675425
wikipedia_url   : -
====================
name            : facebook page view london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7170>
salience        : 0.00016519690689165145
wikipedia_url   : -
====================
name            : show london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7bc0>
salience        : 0.00016494245210196823
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ad0>
salience        : 0.00016478913312312216
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7df0>
salience        : 0.00016475256416015327
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7350>
salience        : 0.00016424412024207413
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7210>
salience        : 0.00016401929315179586
wikipedia_url   : -
====================
name            : response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7cb0>
salience        : 0.00016401929315179586
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc75d0>
salience        : 0.00016393167607020587
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b70>
salience        : 0.00016382474859710783
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc79e0>
salience        : 0.0001637908280827105
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f80>
salience        : 0.00016370088269468397
wikipedia_url   : -
====================
name            : noches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cef30>
salience        : 0.00016367901116609573
wikipedia_url   : -
====================
name            : polychrome
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec10>
salience        : 0.0001635618245927617
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adf80>
salience        : 0.00016300629067700356
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229673f0>
salience        : 0.00016300629067700356
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ee0>
salience        : 0.0001629713806323707
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d00>
salience        : 0.0001629713806323707
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be4e0>
salience        : 0.00016290333587676287
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e170>
salience        : 0.00016287018661387265
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e580>
salience        : 0.00016287018661387265
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3530>
salience        : 0.00016287018661387265
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ee0>
salience        : 0.00016287018661387265
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb15d0>
salience        : 0.00016283757577184588
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1620>
salience        : 0.00016283757577184588
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a30>
salience        : 0.00016283757577184588
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb14e0>
salience        : 0.00016283757577184588
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1260>
salience        : 0.00016277391114272177
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb11c0>
salience        : 0.00016274282825179398
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb17b0>
salience        : 0.00016274282825179398
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb19e0>
salience        : 0.00016274282825179398
wikipedia_url   : -
====================
name            : freefestibal light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b20>
salience        : 0.00016271222557406873
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d00>
salience        : 0.00016269950720015913
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1850>
salience        : 0.00016269950720015913
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1580>
salience        : 0.000162682103109546
wikipedia_url   : -
====================
name            : freefestibal light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb12b0>
salience        : 0.000162682103109546
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1990>
salience        : 0.0001626528101041913
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa760>
salience        : 0.0001625379518372938
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa670>
salience        : 0.0001625379518372938
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa710>
salience        : 0.00016243215941358358
wikipedia_url   : -
====================
name            : price entry abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaee0>
salience        : 0.00016231850895565003
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae40>
salience        : 0.0001621967094251886
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa2b0>
salience        : 0.0001621967094251886
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa120>
salience        : 0.0001621967094251886
wikipedia_url   : -
====================
name            : oxfordcircus london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa0d0>
salience        : 0.0001619016838958487
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae90>
salience        : 0.00016181706450879574
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab20>
salience        : 0.00016181706450879574
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa4e0>
salience        : 0.00016179634258151054
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa080>
salience        : 0.00016176530334632844
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa440>
salience        : 0.00016171486640814692
wikipedia_url   : -
====================
name            : gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa030>
salience        : 0.00016171469178516418
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa850>
salience        : 0.00016166569548659027
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa8a0>
salience        : 0.00016166569548659027
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaacb0>
salience        : 0.00016166569548659027
wikipedia_url   : -
====================
name            : space lampounette installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa530>
salience        : 0.00016161773237399757
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa170>
salience        : 0.00016157088975887746
wikipedia_url   : -
====================
name            : illumination installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad00>
salience        : 0.00016148044960573316
wikipedia_url   : -
====================
name            : illumination installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa6c0>
salience        : 0.00016148044960573316
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa620>
salience        : 0.00016148044960573316
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3a0>
salience        : 0.00016148044960573316
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf80>
salience        : 0.00016143675020430237
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab70>
salience        : 0.00016139399667736143
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa5d0>
salience        : 0.00016131649317685515
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa80>
salience        : 0.0001613111817277968
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac10>
salience        : 0.0001613111817277968
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaada0>
salience        : 0.0001613111817277968
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3f0>
salience        : 0.0001613111817277968
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce350>
salience        : 0.00016127104754559696
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce030>
salience        : 0.00016115535981953144
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce210>
salience        : 0.00016111826698761433
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3a0>
salience        : 0.00016111826698761433
wikipedia_url   : -
====================
name            : installat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce2b0>
salience        : 0.00016111826698761433
wikipedia_url   : -
====================
name            : waterlicht installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce1c0>
salience        : 0.00016111826698761433
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce080>
salience        : 0.00016108185809571296
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce260>
salience        : 0.00016108185809571296
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce300>
salience        : 0.00016105981194414198
wikipedia_url   : -
====================
name            : music patterns sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce620>
salience        : 0.00016105760005302727
wikipedia_url   : -
====================
name            : music patterns sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce170>
salience        : 0.00016105760005302727
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098df0>
salience        : 0.00016105141548905522
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b20>
salience        : 0.00016105141548905522
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e90>
salience        : 0.00016105141548905522
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098cb0>
salience        : 0.00016105141548905522
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098300>
salience        : 0.0001610461185919121
wikipedia_url   : -
====================
name            : aichoketrust lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098210>
salience        : 0.00016099258209578693
wikipedia_url   : -
====================
name            : aichoketrust lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220981c0>
salience        : 0.00016095981118269265
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098120>
salience        : 0.00016093120211735368
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098030>
salience        : 0.00016081795911304653
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983f0>
salience        : 0.00016081795911304653
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098620>
salience        : 0.00016081795911304653
wikipedia_url   : -
====================
name            : bloombergdotorg london london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b70>
salience        : 0.00016081596550066024
wikipedia_url   : -
====================
name            : checking lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a30>
salience        : 0.00016074460290838033
wikipedia_url   : -
====================
name            : neon bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220984e0>
salience        : 0.00016074143059086055
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220987b0>
salience        : 0.00016071090067271143
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098760>
salience        : 0.000160631476319395
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988f0>
salience        : 0.0001597909431438893
wikipedia_url   : -
====================
name            : lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e40>
salience        : 0.000159769449965097
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f80>
salience        : 0.000159722039825283
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098490>
salience        : 0.000159722039825283
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098260>
salience        : 0.00015967576473485678
wikipedia_url   : -
====================
name            : night lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098080>
salience        : 0.00015967576473485678
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098170>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : aichoketrust lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220985d0>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220989e0>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : aichoketrust lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098990>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098850>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098350>
salience        : 0.00015958638687152416
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f30>
salience        : 0.00015954318223521113
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098c10>
salience        : 0.00015941909805405885
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ad0>
salience        : 0.00015937942953314632
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220980d0>
salience        : 0.00015926509513519704
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ee0>
salience        : 0.0001592284388607368
wikipedia_url   : -
====================
name            : love festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c10>
salience        : 0.0001584195124451071
wikipedia_url   : -
====================
name            : kingscross lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095490>
salience        : 0.00015813559002708644
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220952b0>
salience        : 0.00015796435764059424
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095300>
salience        : 0.00015791253827046603
wikipedia_url   : -
====================
name            : check lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220957b0>
salience        : 0.00015788496239110827
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095800>
salience        : 0.00015788496239110827
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095580>
salience        : 0.00015788496239110827
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095940>
salience        : 0.00015787985466886312
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953a0>
salience        : 0.0001576647482579574
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095260>
salience        : 0.00015759661619085819
wikipedia_url   : -
====================
name            : paparazzi cocktail ping pong light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b20>
salience        : 0.00015753082698211074
wikipedia_url   : -
====================
name            : paparazzi cocktail ping pong light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b70>
salience        : 0.00015753082698211074
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d00>
salience        : 0.00015753082698211074
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095a30>
salience        : 0.00015740566595923156
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095df0>
salience        : 0.00015734601765871048
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095990>
salience        : 0.00015734601765871048
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220951c0>
salience        : 0.00015728817379567772
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095080>
salience        : 0.00015723203250672668
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095710>
salience        : 0.00015723203250672668
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095530>
salience        : 0.00015717749192845076
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ee0>
salience        : 0.0001571244647493586
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d50>
salience        : 0.0001571244647493586
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f30>
salience        : 0.00015705343685112894
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958f0>
salience        : 0.00015661345969419926
wikipedia_url   : -
====================
name            : city visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e90>
salience        : 0.0001565810525789857
wikipedia_url   : -
====================
name            : city visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095120>
salience        : 0.00015654916933272034
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220954e0>
salience        : 0.0001563398545840755
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095760>
salience        : 0.0001563398545840755
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7300>
salience        : 0.00015571442781947553
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73f0>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a30>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78f0>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78a0>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b77b0>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7260>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7030>
salience        : 0.00015570115647278726
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a80>
salience        : 0.000155676098074764
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2800>
salience        : 0.000155676098074764
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e40>
salience        : 0.000155676098074764
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081440>
salience        : 0.000155676098074764
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220812b0>
salience        : 0.000155676098074764
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c60>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081300>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081210>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c440>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3a0>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c990>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c4e0>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229870d0>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d4e0>
salience        : 0.0001556513598188758
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d0d0>
salience        : 0.0001556269417051226
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d7b0>
salience        : 0.0001556269417051226
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dad0>
salience        : 0.0001556269417051226
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ddf0>
salience        : 0.0001556269417051226
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d620>
salience        : 0.00015560282918158919
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d030>
salience        : 0.00015560282918158919
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc60>
salience        : 0.00015560282918158919
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dee0>
salience        : 0.00015557902224827558
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8a0>
salience        : 0.00015557902224827558
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d170>
salience        : 0.00015557902224827558
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d350>
salience        : 0.00015557902224827558
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7120>
salience        : 0.00015555550635326654
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a75d0>
salience        : 0.00015555550635326654
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b20>
salience        : 0.0001555322960484773
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7990>
salience        : 0.0001555322960484773
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d50>
salience        : 0.00015550934767816216
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a71c0>
salience        : 0.00015550934767816216
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d00>
salience        : 0.0001554866903461516
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73f0>
salience        : 0.0001554866903461516
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ee0>
salience        : 0.0001554421614855528
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f80>
salience        : 0.0001554421614855528
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b70>
salience        : 0.00015543869812972844
wikipedia_url   : -
====================
name            : info visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7df0>
salience        : 0.00015543869812972844
wikipedia_url   : -
====================
name            : bloomsbury
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2670>
salience        : 0.00015542151231784374
wikipedia_url   : https://en.wikipedia.org/wiki/Bloomsbury
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a30>
salience        : 0.00015542027540504932
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f80>
salience        : 0.00015542027540504932
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2990>
salience        : 0.0001553772744955495
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2170>
salience        : 0.00015535613056272268
wikipedia_url   : -
====================
name            : mount street visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2300>
salience        : 0.00015530030941590667
wikipedia_url   : -
====================
name            : market visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23f0>
salience        : 0.00015525633352808654
wikipedia_url   : -
====================
name            : market visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28a0>
salience        : 0.00015525633352808654
wikipedia_url   : -
====================
name            : thames
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2120>
salience        : 0.00015523319598287344
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2850>
salience        : 0.00015493723913095891
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2440>
salience        : 0.00015486523625440896
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f30>
salience        : 0.00015486523625440896
wikipedia_url   : -
====================
name            : plan visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d50>
salience        : 0.00015479588182643056
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3300>
salience        : 0.00015479588182643056
wikipedia_url   : -
====================
name            : justefe2 london lumiere visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a80>
salience        : 0.00015479588182643056
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3850>
salience        : 0.00015479588182643056
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc37b0>
salience        : 0.00015383133722934872
wikipedia_url   : -
====================
name            : julian crowe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c10>
salience        : 0.00015375696239061654
wikipedia_url   : -
====================
name            : american
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc31c0>
salience        : 0.00015372244524769485
wikipedia_url   : https://en.wikipedia.org/wiki/United_States
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc39e0>
salience        : 0.0001537106727482751
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1170>
salience        : 0.0001536644995212555
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1ee0>
salience        : 0.00015364184218924493
wikipedia_url   : -
====================
name            : londonworker
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1940>
salience        : 0.00015229986456688493
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8da0>
salience        : 0.00015229986456688493
wikipedia_url   : -
====================
name            : well
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8850>
salience        : 0.00015228237316478044
wikipedia_url   : -
====================
name            : city london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a30>
salience        : 0.00015227713447529823
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8350>
salience        : 0.0001522324891993776
wikipedia_url   : -
====================
name            : wildlife london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83f0>
salience        : 0.00015221055946312845
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8990>
salience        : 0.00015221055946312845
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8670>
salience        : 0.00015218459884636104
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220756c0>
salience        : 0.00015214628365356475
wikipedia_url   : -
====================
name            : conversation lumierelondon cazzapanda london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075710>
salience        : 0.00015212535799946636
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c10>
salience        : 0.0001519378274679184
wikipedia_url   : -
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075cb0>
salience        : 0.00015178781177382916
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075da0>
salience        : 0.00015152381092775613
wikipedia_url   : -
====================
name            : justice plan adventure visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a80>
salience        : 0.0001512780727352947
wikipedia_url   : -
====================
name            : chance repeat event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d850>
salience        : 0.00015071149391587824
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01dad0>
salience        : 0.0001506054395576939
wikipedia_url   : -
====================
name            : alanstweets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf300>
salience        : 0.0001502970844740048
wikipedia_url   : -
====================
name            : price entry abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf080>
salience        : 0.0001499817008152604
wikipedia_url   : -
====================
name            : power action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2940>
salience        : 0.0001499508070992306
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2800>
salience        : 0.00014986838505137712
wikipedia_url   : -
====================
name            : londonisopen lumiere leakestreet
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2850>
salience        : 0.00014982906577643007
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d00>
salience        : 0.00014979721163399518
wikipedia_url   : -
====================
name            : sho person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd93f0>
salience        : 0.00014970439951866865
wikipedia_url   : -
====================
name            : work imakefings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd95d0>
salience        : 0.00014962392742745578
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ad0>
salience        : 0.0001495066680945456
wikipedia_url   : -
====================
name            : go fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f80>
salience        : 0.00014929354074411094
wikipedia_url   : -
====================
name            : pa lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9da0>
salience        : 0.00014923237904440612
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9030>
salience        : 0.00014898892550263554
wikipedia_url   : -
====================
name            : greatbritain london lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9440>
salience        : 0.00014890053716953844
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e8f0>
salience        : 0.00014889602607581764
wikipedia_url   : -
====================
name            : ocean waterlicht instalation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eda0>
salience        : 0.00014889602607581764
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e990>
salience        : 0.00014889602607581764
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e6c0>
salience        : 0.00014887351426295936
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9850>
salience        : 0.00014885129348840564
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d98f0>
salience        : 0.00014885129348840564
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47da0>
salience        : 0.00014885129348840564
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ad0>
salience        : 0.00014882934920024127
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f80>
salience        : 0.00014882934920024127
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc472b0>
salience        : 0.00014882934920024127
wikipedia_url   : -
====================
name            : robwdawkins
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc471c0>
salience        : 0.00014881190145388246
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c10>
salience        : 0.00014876502973493189
wikipedia_url   : -
====================
name            : power installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a30>
salience        : 0.00014874408952891827
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a80>
salience        : 0.00014872339670546353
wikipedia_url   : -
====================
name            : installations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc60>
salience        : 0.00014872339670546353
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf620>
salience        : 0.00014870293671265244
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf800>
salience        : 0.00014870293671265244
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089670>
salience        : 0.0001486826949985698
wikipedia_url   : -
====================
name            : hayward gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089850>
salience        : 0.0001486761320848018
wikipedia_url   : -
====================
name            : canary wharf london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089800>
salience        : 0.0001485500979470089
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067800>
salience        : 0.00014846184058114886
wikipedia_url   : -
====================
name            : lighting person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067530>
salience        : 0.00014832103624939919
wikipedia_url   : -
====================
name            : sky blue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067170>
salience        : 0.00014832103624939919
wikipedia_url   : -
====================
name            : rehearsal pegasuschoir conce
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220649e0>
salience        : 0.00014832103624939919
wikipedia_url   : -
====================
name            : lumierelondon waterlicht granarysquare kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064530>
salience        : 0.00014816588372923434
wikipedia_url   : -
====================
name            : londonisopen lumiere plan pit stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064260>
salience        : 0.00014811799337621778
wikipedia_url   : -
====================
name            : priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064d50>
salience        : 0.00014783156802877784
wikipedia_url   : -
====================
name            : trafalgar square este fin de semana en londres la segunda edición del festival de
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220642b0>
salience        : 0.00014749019464943558
wikipedia_url   : -
====================
name            : visualisation light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064df0>
salience        : 0.00014724134234711528
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21490>
salience        : 0.0001471720461267978
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21bc0>
salience        : 0.00014704102068208158
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f80>
salience        : 0.00014699938765261322
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21df0>
salience        : 0.00014697892765980214
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4df0>
salience        : 0.0001469587004976347
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4940>
salience        : 0.00014693870616611093
wikipedia_url   : -
====================
name            : teamworktomakethedreamwork southbankcentre kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4cb0>
salience        : 0.00014650319644715637
wikipedia_url   : -
====================
name            : pa visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7530>
salience        : 0.00014622442540712655
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b74e0>
salience        : 0.00014601599832531065
wikipedia_url   : -
====================
name            : londonisopen lumiere trafalgarsquare london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7d50>
salience        : 0.0001458596088923514
wikipedia_url   : -
====================
name            : southbank lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7f30>
salience        : 0.0001458596088923514
wikipedia_url   : -
====================
name            : aichoketrust london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0300>
salience        : 0.00014564816956408322
wikipedia_url   : -
====================
name            : visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0350>
salience        : 0.00014558294788002968
wikipedia_url   : -
====================
name            : world bet trump
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d50>
salience        : 0.00014427074347622693
wikipedia_url   : -
====================
name            : somewhere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0210>
salience        : 0.00014427074347622693
wikipedia_url   : -
====================
name            : hotel facade
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03f0>
salience        : 0.0001439471379853785
wikipedia_url   : -
====================
name            : bollywood style
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0670>
salience        : 0.00014323009236250073
wikipedia_url   : -
====================
name            : city visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0710>
salience        : 0.0001431391719961539
wikipedia_url   : -
====================
name            : triangle trail south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0760>
salience        : 0.00014310091501101851
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0cb0>
salience        : 0.0001430742850061506
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b05d0>
salience        : 0.00014304435171652585
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f80>
salience        : 0.00014299956092145294
wikipedia_url   : -
====================
name            : visitor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0df0>
salience        : 0.00014295135042630136
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b01c0>
salience        : 0.00014295135042630136
wikipedia_url   : -
====================
name            : get
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0440>
salience        : 0.00014258286682888865
wikipedia_url   : -
====================
name            : get
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0580>
salience        : 0.00014258286682888865
wikipedia_url   : -
====================
name            : surroundings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b07b0>
salience        : 0.00014245278725866228
wikipedia_url   : -
====================
name            : pop bar
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ee0>
salience        : 0.0001420125481672585
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b00d0>
salience        : 0.00014084552822168916
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f30>
salience        : 0.00014081777771934867
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0080>
salience        : 0.00014061058755032718
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e760d0>
salience        : 0.00014058637316338718
wikipedia_url   : -
====================
name            : light installations london lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76120>
salience        : 0.00013996282359585166
wikipedia_url   : -
====================
name            : vlog lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e761c0>
salience        : 0.0001397498999722302
wikipedia_url   : -
====================
name            : pa lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76260>
salience        : 0.00013959688658360392
wikipedia_url   : -
====================
name            : blur lumierelondon2018
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e762b0>
salience        : 0.00013956069597043097
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76350>
salience        : 0.0001394231803715229
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76440>
salience        : 0.0001393268903484568
wikipedia_url   : -
====================
name            : check lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e764e0>
salience        : 0.0001393268903484568
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e765d0>
salience        : 0.0001393268903484568
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76670>
salience        : 0.0001389820099575445
wikipedia_url   : -
====================
name            : idea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e766c0>
salience        : 0.00013888056855648756
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76710>
salience        : 0.00013860961189493537
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76800>
salience        : 0.00013816110731568187
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76850>
salience        : 0.0001378240849589929
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e768f0>
salience        : 0.00013731236685998738
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76990>
salience        : 0.00013709042104892433
wikipedia_url   : -
====================
name            : lumiere2018 lumierefestival lovelondon ourlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76a30>
salience        : 0.00013706997560802847
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76ad0>
salience        : 0.00013658509124070406
wikipedia_url   : -
====================
name            : umbrella pop performance goodge street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76b70>
salience        : 0.00013638507516589016
wikipedia_url   : -
====================
name            : idea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76bc0>
salience        : 0.00013615473289974034
wikipedia_url   : -
====================
name            : joinin247
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76c60>
salience        : 0.00013615473289974034
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76d50>
salience        : 0.00013599626254290342
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76df0>
salience        : 0.00013597549695987254
wikipedia_url   : -
====================
name            : inspiration color amyelizabethtv london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76e40>
salience        : 0.00013588946603704244
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76f30>
salience        : 0.00013588460569735616
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf030>
salience        : 0.0001358314766548574
wikipedia_url   : -
====================
name            : regents street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf0d0>
salience        : 0.00013578000653069466
wikipedia_url   : -
====================
name            : judgeworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf1c0>
salience        : 0.00013571720046456903
wikipedia_url   : -
====================
name            : pocock nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf260>
salience        : 0.0001356433640467003
wikipedia_url   : -
====================
name            : bachelor
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf300>
salience        : 0.0001355916610918939
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf3f0>
salience        : 0.0001355916610918939
wikipedia_url   : -
====================
name            : winter nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf490>
salience        : 0.00013520575885195285
wikipedia_url   : -
====================
name            : cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf4e0>
salience        : 0.00013517260958906263
wikipedia_url   : -
====================
name            : cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf530>
salience        : 0.00013508263509720564
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf620>
salience        : 0.0001349884842056781
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf670>
salience        : 0.0001346831559203565
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf760>
salience        : 0.0001342773757642135
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf850>
salience        : 0.00013388700608629733
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf940>
salience        : 0.00013388700608629733
wikipedia_url   : -
====================
name            : wrap warm
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf9e0>
salience        : 0.0001332074316451326
wikipedia_url   : -
====================
name            : billy st james
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafa80>
salience        : 0.00013174927153158933
wikipedia_url   : -
====================
name            : city tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafb20>
salience        : 0.00013100432988721877
wikipedia_url   : -
====================
name            : complaint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafbc0>
salience        : 0.00013100432988721877
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafc60>
salience        : 0.00013097911141812801
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafd00>
salience        : 0.00013088135165162385
wikipedia_url   : -
====================
name            : esgolondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafdf0>
salience        : 0.00013035173469688743
wikipedia_url   : -
====================
name            : ldn_gov
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafee0>
salience        : 0.00012924365000799298
wikipedia_url   : -
====================
name            : panorama
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daff80>
salience        : 0.0001289984938921407
wikipedia_url   : -
====================
name            : esgolondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db10d0>
salience        : 0.0001289984938921407
wikipedia_url   : -
====================
name            : cubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1120>
salience        : 0.0001289984938921407
wikipedia_url   : -
====================
name            : morvan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1210>
salience        : 0.0001289984938921407
wikipedia_url   : -
====================
name            : panorama
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db12b0>
salience        : 0.0001289984938921407
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1300>
salience        : 0.0001289327919948846
wikipedia_url   : -
====================
name            : lumiere lumierelondon lumiere2018 mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1350>
salience        : 0.0001289190404349938
wikipedia_url   : -
====================
name            : check lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db13f0>
salience        : 0.00012882627197541296
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1490>
salience        : 0.00012880630674771965
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1580>
salience        : 0.00012878660345450044
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1670>
salience        : 0.0001287671475438401
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1710>
salience        : 0.00012874792446382344
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db17b0>
salience        : 0.00012871016224380583
wikipedia_url   : -
====================
name            : child hood v2 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1850>
salience        : 0.00012869162310380489
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1940>
salience        : 0.00012863728625234216
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1a30>
salience        : 0.00012863728625234216
wikipedia_url   : -
====================
name            : piccadilly ritatudela este fin de semana en londres la segunda edición del festival de luces visitlondon karizmatic_k lumiere london kingscrossn1c lumierelondon mikegarnettpics
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1ad0>
salience        : 0.00012863619485870004
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1bc0>
salience        : 0.00012861959112342447
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1cb0>
salience        : 0.00012860208516940475
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1da0>
salience        : 0.00012860208516940475
wikipedia_url   : -
====================
name            : balloon invasion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1df0>
salience        : 0.00012843305012211204
wikipedia_url   : -
====================
name            : invasion
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1e90>
salience        : 0.00012843305012211204
wikipedia_url   : -
====================
name            : waterlight balloon invasion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1ee0>
salience        : 0.00012828237959183753
wikipedia_url   : -
====================
name            : butcherantony balloon invasion
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1f30>
salience        : 0.00012828237959183753
wikipedia_url   : -
====================
name            : offices
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b080>
salience        : 0.00012801871343981475
wikipedia_url   : -
====================
name            : old school
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b120>
salience        : 0.00012801871343981475
wikipedia_url   : -
====================
name            : westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b1c0>
salience        : 0.0001279080315725878
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b260>
salience        : 0.0001275252434425056
wikipedia_url   : -
====================
name            : bill quote
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b300>
salience        : 0.00012742175022140145
wikipedia_url   : -
====================
name            : boulevard business district kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b350>
salience        : 0.00012740636884700507
wikipedia_url   : -
====================
name            : trafalgarsquare leicaq leicam240 london lumiere lumierelondon lanterncompany
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b3f0>
salience        : 0.0001271956425625831
wikipedia_url   : -
====================
name            : ifo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b440>
salience        : 0.00012706537381745875
wikipedia_url   : -
====================
name            : alifestylerebel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b490>
salience        : 0.0001270218926947564
wikipedia_url   : -
====================
name            : thejoprice amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b530>
salience        : 0.00012674366007559001
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b580>
salience        : 0.00012674366007559001
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b620>
salience        : 0.00012671698641497642
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b670>
salience        : 0.00012671698641497642
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b6c0>
salience        : 0.00012671698641497642
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b760>
salience        : 0.00012659009371418506
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b7b0>
salience        : 0.00012659009371418506
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b800>
salience        : 0.00012659009371418506
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b850>
salience        : 0.00012659009371418506
wikipedia_url   : -
====================
name            : canada
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b940>
salience        : 0.00012645588140003383
wikipedia_url   : https://en.wikipedia.org/wiki/Canada
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b990>
salience        : 0.00012645045353565365
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ba30>
salience        : 0.00012576644076034427
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ba80>
salience        : 0.00012572819832712412
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bad0>
salience        : 0.00012569088721647859
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bb70>
salience        : 0.00012555014109238982
wikipedia_url   : -
====================
name            : samanthaovens thejoprice amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bbc0>
salience        : 0.00012548433733172715
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bc10>
salience        : 0.00012545248318929225
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bc60>
salience        : 0.00012539068120531738
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bcb0>
salience        : 0.00012530243839137256
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bd50>
salience        : 0.0001252930669579655
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bda0>
salience        : 0.00012527412036433816
wikipedia_url   : -
====================
name            : techniciansmakea amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bdf0>
salience        : 0.00012521902681328356
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7be90>
salience        : 0.00012517874711193144
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde76c0>
salience        : 0.0001251246576430276
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7cb0>
salience        : 0.000125072430819273
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc76c0>
salience        : 0.00012502192112151533
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c52b0>
salience        : 0.00012502192112151533
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adc60>
salience        : 0.0001249293563887477
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93bc0>
salience        : 0.00012483519094530493
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ead0>
salience        : 0.00012478101416490972
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c10>
salience        : 0.00012476345000322908
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa800>
salience        : 0.00012474978575482965
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf30>
salience        : 0.0001247289328603074
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa350>
salience        : 0.0001247119507752359
wikipedia_url   : -
====================
name            : littleboots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3f0>
salience        : 0.0001239155826624483
wikipedia_url   : -
====================
name            : pong lumiere lumière lumiere2018 lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac60>
salience        : 0.0001236086100107059
wikipedia_url   : -
====================
name            : visitlondon mikebloomberg
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaadf0>
salience        : 0.00012343436537776142
wikipedia_url   : -
====================
name            : map information photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad50>
salience        : 0.00012322414841037244
wikipedia_url   : -
====================
name            : blogger photographer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa9e0>
salience        : 0.00012314632476773113
wikipedia_url   : -
====================
name            : blogger photographer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce120>
salience        : 0.0001230723428307101
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce0d0>
salience        : 0.00012270627485122532
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce4e0>
salience        : 0.00012269198487047106
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098940>
salience        : 0.00012258405331522226
wikipedia_url   : -
====================
name            : amp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098800>
salience        : 0.0001225623273057863
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098440>
salience        : 0.00012234413588885218
wikipedia_url   : -
====================
name            : lumierelondon paulj71
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098580>
salience        : 0.00012166206579422578
wikipedia_url   : -
====================
name            : westminsterabbey light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220986c0>
salience        : 0.00012148194218752906
wikipedia_url   : -
====================
name            : show lift spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220982b0>
salience        : 0.00012139804312027991
wikipedia_url   : -
====================
name            : shambles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098d00>
salience        : 0.00012136220902903005
wikipedia_url   : -
====================
name            : thevoiceuk touch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988a0>
salience        : 0.00012136220902903005
wikipedia_url   : -
====================
name            : post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220950d0>
salience        : 0.00012136220902903005
wikipedia_url   : -
====================
name            : audience
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220956c0>
salience        : 0.00012136220902903005
wikipedia_url   : -
====================
name            : craft
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953f0>
salience        : 0.00012093294935766608
wikipedia_url   : -
====================
name            : craft
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095da0>
salience        : 0.00012093294935766608
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c60>
salience        : 0.00012083908950444311
wikipedia_url   : -
====================
name            : tribute
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095850>
salience        : 0.00012060104199917987
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ad0>
salience        : 0.00012052449164912105
wikipedia_url   : -
====================
name            : indian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e40>
salience        : 0.00012037964188493788
wikipedia_url   : -
====================
name            : edgar allen poe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7350>
salience        : 0.00012037964188493788
wikipedia_url   : https://en.wikipedia.org/wiki/Edgar_Allan_Poe
====================
name            : fox
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7850>
salience        : 0.00012033052189508453
wikipedia_url   : -
====================
name            : hares
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7940>
salience        : 0.00012033052189508453
wikipedia_url   : -
====================
name            : god
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b75d0>
salience        : 0.00012033052189508453
wikipedia_url   : -
====================
name            : adventures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7440>
salience        : 0.00012010228238068521
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2760>
salience        : 0.00011994889791822061
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e90>
salience        : 0.00011992320651188493
wikipedia_url   : -
====================
name            : firstaidcover nurse
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2260>
salience        : 0.00011990492203040048
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081670>
salience        : 0.00011987314792349935
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220819e0>
salience        : 0.00011987314792349935
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081f30>
salience        : 0.00011984874436166137
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c080>
salience        : 0.0001198388563352637
wikipedia_url   : -
====================
name            : timeoutlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c760>
salience        : 0.0001198388563352637
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d2b0>
salience        : 0.00011983302101725712
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d120>
salience        : 0.00011982474097749218
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d580>
salience        : 0.00011982474097749218
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d760>
salience        : 0.00011982474097749218
wikipedia_url   : -
====================
name            : morvan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d210>
salience        : 0.00011980935232713819
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d530>
salience        : 0.00011980113049503416
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d990>
salience        : 0.00011980113049503416
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de90>
salience        : 0.00011977789836237207
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd00>
salience        : 0.00011975502275163308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd50>
salience        : 0.00011975502275163308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d800>
salience        : 0.0001197325109387748
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a76c0>
salience        : 0.0001197325109387748
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7440>
salience        : 0.0001197325109387748
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7850>
salience        : 0.0001197325109387748
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e90>
salience        : 0.00011971033381996676
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7800>
salience        : 0.00011968849139520898
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c10>
salience        : 0.00011968849139520898
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7bc0>
salience        : 0.00011968849139520898
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7940>
salience        : 0.00011966697638854384
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f30>
salience        : 0.00011966697638854384
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7080>
salience        : 0.00011966697638854384
wikipedia_url   : -
====================
name            : aichoketrust
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a74e0>
salience        : 0.00011965653538936749
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c60>
salience        : 0.0001196457669720985
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2710>
salience        : 0.0001196457669720985
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e40>
salience        : 0.0001196457669720985
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2080>
salience        : 0.0001196457669720985
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2210>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2350>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2490>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2620>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2b20>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a24e0>
salience        : 0.00011962487042183056
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2bc0>
salience        : 0.0001196042649098672
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2800>
salience        : 0.0001196042649098672
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28f0>
salience        : 0.0001196042649098672
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d50>
salience        : 0.0001196042649098672
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33f0>
salience        : 0.0001196042649098672
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc36c0>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b70>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc34e0>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3440>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3bc0>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38a0>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3030>
salience        : 0.00011958394316025078
wikipedia_url   : -
====================
name            : roast dinner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1670>
salience        : 0.00011957583046751097
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1030>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1210>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18f0>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1da0>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13f0>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1c60>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1490>
salience        : 0.00011956390517298132
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb16c0>
salience        : 0.0001195441436721012
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a80>
salience        : 0.0001195441436721012
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1440>
salience        : 0.0001195441436721012
wikipedia_url   : -
====================
name            : aichoke
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb10d0>
salience        : 0.0001195255244965665
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1300>
salience        : 0.00011952464410569519
wikipedia_url   : -
====================
name            : cold
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ad0>
salience        : 0.00011930761684197932
wikipedia_url   : -
====================
name            : god
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8120>
salience        : 0.00011930761684197932
wikipedia_url   : -
====================
name            : gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8620>
salience        : 0.00011930761684197932
wikipedia_url   : -
====================
name            : visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d50>
salience        : 0.00011926787556149065
wikipedia_url   : -
====================
name            : city aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075030>
salience        : 0.00011926787556149065
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075760>
salience        : 0.00011899856326635927
wikipedia_url   : -
====================
name            : mate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075850>
salience        : 0.000118980162369553
wikipedia_url   : -
====================
name            : apa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b20>
salience        : 0.000118980162369553
wikipedia_url   : -
====================
name            : stewards shame
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220757b0>
salience        : 0.000118980162369553
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf1c0>
salience        : 0.00011896237992914394
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf620>
salience        : 0.00011896237992914394
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2670>
salience        : 0.00011892707698279992
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ee0>
salience        : 0.00011889261804753914
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd24e0>
salience        : 0.00011885895219165832
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e40>
salience        : 0.0001187938978546299
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc3a0>
salience        : 0.0001187938978546299
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9940>
salience        : 0.0001187938978546299
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9990>
salience        : 0.00011876243661390617
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9df0>
salience        : 0.00011876243661390617
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9580>
salience        : 0.00011873164476128295
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3a0>
salience        : 0.00011873164476128295
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee90>
salience        : 0.00011873164476128295
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e0d0>
salience        : 0.0001186719600809738
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d96c0>
salience        : 0.0001186430235975422
wikipedia_url   : -
====================
name            : lumierelondon alifestylerebel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9ee0>
salience        : 0.0001186342560686171
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47940>
salience        : 0.00011861464736284688
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473f0>
salience        : 0.00011858682410093024
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e90>
salience        : 0.00011850643204525113
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc479e0>
salience        : 0.00011850643204525113
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ee0>
salience        : 0.00011847292626043782
wikipedia_url   : -
====================
name            : city waterstonespicc
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47300>
salience        : 0.00011842165986308828
wikipedia_url   : -
====================
name            : royalacademy wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47170>
salience        : 0.00011840919614769518
wikipedia_url   : -
====================
name            : waterstonespicc
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089620>
salience        : 0.00011834063479909673
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bf30>
salience        : 0.00011819611972896382
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97030>
salience        : 0.00011784556409111246
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e970d0>
salience        : 0.00011779464693972841
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97170>
salience        : 0.00011765191447921097
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97210>
salience        : 0.00011752212594728917
wikipedia_url   : -
====================
name            : visit southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e972b0>
salience        : 0.00011721232294803485
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97300>
salience        : 0.00011703355994541198
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e973a0>
salience        : 0.00011698107118718326
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e973f0>
salience        : 0.00011571141658350825
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97440>
salience        : 0.00011569494381546974
wikipedia_url   : -
====================
name            : kingscross dots drake amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e974e0>
salience        : 0.0001156786602223292
wikipedia_url   : -
====================
name            : weather
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97580>
salience        : 0.00011497967352624983
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97670>
salience        : 0.00011458068911451846
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97710>
salience        : 0.00011443965195212513
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97800>
salience        : 0.0001144336347351782
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e978f0>
salience        : 0.00011424021067796275
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97990>
salience        : 0.00011421710951253772
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e979e0>
salience        : 0.00011373979941708967
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97ad0>
salience        : 0.00011366989929229021
wikipedia_url   : -
====================
name            : grosvenor_ldn lumierelondon visitlondon visitbritain visitengland timeoutlondon mayoroflondon londonist mpsonthewater southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97b70>
salience        : 0.00011354660819051787
wikipedia_url   : -
====================
name            : westminster fitzrovia mayfair
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97c10>
salience        : 0.0001133050536736846
wikipedia_url   : -
====================
name            : weekends weekendfun mpsonthewater southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97cb0>
salience        : 0.00011323496437398717
wikipedia_url   : -
====================
name            : westminster westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97d50>
salience        : 0.00011244978668401018
wikipedia_url   : -
====================
name            : visitlondon aichoketrust lumiere
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97df0>
salience        : 0.00011237322178203613
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97e90>
salience        : 0.00011219698353670537
wikipedia_url   : -
====================
name            : lewisham
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97f80>
salience        : 0.00011214064579689875
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Lewisham
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19080>
salience        : 0.00011213834659429267
wikipedia_url   : -
====================
name            : lumiere london king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a190d0>
salience        : 0.00011213834659429267
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19170>
salience        : 0.00011209231161046773
wikipedia_url   : -
====================
name            : amp light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a191c0>
salience        : 0.00011208384239580482
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19260>
salience        : 0.00011207741044927388
wikipedia_url   : -
====================
name            : head kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19300>
salience        : 0.00011202604946447536
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a193a0>
salience        : 0.00011196285777259618
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19440>
salience        : 0.00011196285777259618
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a194e0>
salience        : 0.00011196285777259618
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19580>
salience        : 0.00011179765715496615
wikipedia_url   : -
====================
name            : mardixon w_stanley drinksthing
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a195d0>
salience        : 0.0001116175772040151
wikipedia_url   : -
====================
name            : thisislondon visitlondon piccadillycircus
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19670>
salience        : 0.00011135496606584638
wikipedia_url   : -
====================
name            : coal drop yard project king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a196c0>
salience        : 0.00011133185762446374
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a197b0>
salience        : 0.0001112633035518229
wikipedia_url   : -
====================
name            : kingscross kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19850>
salience        : 0.0001112633035518229
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a198f0>
salience        : 0.0001112633035518229
wikipedia_url   : -
====================
name            : eyes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19940>
salience        : 0.00011123538570245728
wikipedia_url   : -
====================
name            : pleasures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a199e0>
salience        : 0.00011123538570245728
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19a80>
salience        : 0.00011123028525616974
wikipedia_url   : -
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19b20>
salience        : 0.00011123028525616974
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19bc0>
salience        : 0.00011116657697129995
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19c60>
salience        : 0.00011107630416518077
wikipedia_url   : -
====================
name            : fitzrovia king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19cb0>
salience        : 0.00011093807552242652
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19d50>
salience        : 0.00011093807552242652
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d00>
salience        : 0.00011081270349677652
wikipedia_url   : -
====================
name            : swimming pool light spirit pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067260>
salience        : 0.0001106902418541722
wikipedia_url   : -
====================
name            : mess
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e40>
salience        : 0.0001106812633224763
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ad0>
salience        : 0.00011056172661483288
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067490>
salience        : 0.00011042552068829536
wikipedia_url   : -
====================
name            : noveltyat
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4440>
salience        : 0.00011028978042304516
wikipedia_url   : -
====================
name            : lumiere john_pahl lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4850>
salience        : 0.00011025339335901663
wikipedia_url   : -
====================
name            : canary wharf aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d00>
salience        : 0.00011021998943760991
wikipedia_url   : -
====================
name            : light bulb ox circus
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e90>
salience        : 0.00011018864461220801
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0530>
salience        : 0.00011017236101906747
wikipedia_url   : -
====================
name            : westminster cathedral grosvenor_ldn lumierelondon visitlondon visitbritain visitengland timeoutlondon mayoroflondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0a80>
salience        : 0.00011002078099409118
wikipedia_url   : -
====================
name            : cultureisgreat paulj71
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0bc0>
salience        : 0.00010986673441948369
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0030>
salience        : 0.00010985412518493831
wikipedia_url   : -
====================
name            : excuse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b04e0>
salience        : 0.00010974036558764055
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b70>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b20>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0260>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03a0>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0490>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0800>
salience        : 0.00010965139517793432
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76030>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76080>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76170>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76210>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76300>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e763a0>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e763f0>
salience        : 0.0001096337364288047
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76490>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76530>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76580>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76620>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76760>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e767b0>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e768a0>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76940>
salience        : 0.00010961631778627634
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e769e0>
salience        : 0.00010959911742247641
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76a80>
salience        : 0.00010959911742247641
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76b20>
salience        : 0.00010959911742247641
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76c10>
salience        : 0.00010959911742247641
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76cb0>
salience        : 0.00010959911742247641
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76d00>
salience        : 0.00010958214261336252
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76da0>
salience        : 0.00010958214261336252
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76e90>
salience        : 0.00010958214261336252
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76ee0>
salience        : 0.00010956537153106183
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e76f80>
salience        : 0.00010956537153106183
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf080>
salience        : 0.00010956537153106183
wikipedia_url   : -
====================
name            : この周辺 より凄い人 paulj71
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf170>
salience        : 0.00010956519690807909
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf210>
salience        : 0.00010954881872748956
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf2b0>
salience        : 0.00010954881872748956
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf350>
salience        : 0.00010954881872748956
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf3a0>
salience        : 0.00010953246237477288
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf440>
salience        : 0.00010953246237477288
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf580>
salience        : 0.00010951630974886939
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf5d0>
salience        : 0.00010951630974886939
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf6c0>
salience        : 0.00010950034629786387
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf710>
salience        : 0.00010950034629786387
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf7b0>
salience        : 0.00010950034629786387
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf800>
salience        : 0.00010948457202175632
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf8a0>
salience        : 0.00010946898692054674
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf8f0>
salience        : 0.00010946898692054674
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf990>
salience        : 0.0001094535764423199
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafa30>
salience        : 0.0001094535764423199
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafad0>
salience        : 0.0001094383405870758
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafb70>
salience        : 0.00010942328663077205
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafc10>
salience        : 0.00010940839274553582
wikipedia_url   : -
====================
name            : saws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafcb0>
salience        : 0.0001091936937882565
wikipedia_url   : -
====================
name            : awork tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafd50>
salience        : 0.00010881284106289968
wikipedia_url   : -
====================
name            : thoughts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafe40>
salience        : 0.00010860108159249648
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daff30>
salience        : 0.00010798557923408225
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1080>
salience        : 0.00010798557923408225
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db11c0>
salience        : 0.00010798557923408225
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db13a0>
salience        : 0.00010798557923408225
wikipedia_url   : -
====================
name            : wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1530>
salience        : 0.00010790458327392116
wikipedia_url   : -
====================
name            : wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db16c0>
salience        : 0.00010786661005113274
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1800>
salience        : 0.00010766895138658583
wikipedia_url   : -
====================
name            : cloud laser show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db18a0>
salience        : 0.00010765497427200899
wikipedia_url   : -
====================
name            : lumierelondon brightnights lightsoflondon thisislondon mydarlinglondon londondisclosure london_only liveloveldntown urbanphotography canon600d mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db18f0>
salience        : 0.00010739476419985294
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db19e0>
salience        : 0.00010735727119026706
wikipedia_url   : -
====================
name            : acoustic rock n pop show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1a80>
salience        : 0.00010720120189944282
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1c10>
salience        : 0.00010677820682758465
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1d00>
salience        : 0.00010657735401764512
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1e40>
salience        : 0.00010655635560397059
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1f80>
salience        : 0.00010653568460838869
wikipedia_url   : -
====================
name            : motions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b0d0>
salience        : 0.00010653422941686586
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b170>
salience        : 0.00010648514580680057
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b210>
salience        : 0.00010647559247445315
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b2b0>
salience        : 0.0001064181633410044
wikipedia_url   : -
====================
name            : night light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b3a0>
salience        : 0.00010639957326930016
wikipedia_url   : -
====================
name            : fitzpanership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b5d0>
salience        : 0.00010637733794283122
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b8f0>
salience        : 0.00010637733794283122
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bb20>
salience        : 0.0001063277741195634
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7530>
salience        : 0.0001062061928678304
wikipedia_url   : -
====================
name            : motions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7990>
salience        : 0.00010620497778290883
wikipedia_url   : -
====================
name            : go motions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceee0>
salience        : 0.00010594280320219696
wikipedia_url   : -
====================
name            : see festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bebc0>
salience        : 0.00010587551514618099
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8a0>
salience        : 0.00010584250412648544
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa990>
salience        : 0.0001058103225659579
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa210>
salience        : 0.00010574826592346653
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaad0>
salience        : 0.00010574826592346653
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa7b0>
salience        : 0.00010574826592346653
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce440>
salience        : 0.00010574826592346653
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983a0>
salience        : 0.00010571832535788417
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098bc0>
salience        : 0.00010571832535788417
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098710>
salience        : 0.00010571832535788417
wikipedia_url   : -
====================
name            : city check lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958a0>
salience        : 0.00010568906873231754
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095670>
salience        : 0.00010568906873231754
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095bc0>
salience        : 0.00010563553223619238
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095620>
salience        : 0.00010563247633399442
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220955d0>
salience        : 0.00010550102888373658
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b79e0>
salience        : 0.00010547628335189074
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7490>
salience        : 0.00010544057295192033
wikipedia_url   : -
====================
name            : lights festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73a0>
salience        : 0.00010542816744418815
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7ad0>
salience        : 0.00010540477524045855
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ad0>
salience        : 0.00010540477524045855
wikipedia_url   : -
====================
name            : frictions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c850>
salience        : 0.00010538537026150152
wikipedia_url   : -
====================
name            : lizziemidd favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cbc0>
salience        : 0.000105380175227765
wikipedia_url   : -
====================
name            : favorites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7530>
salience        : 0.00010521438525756821
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf940>
salience        : 0.00010517659393372014
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c92b0>
salience        : 0.00010516356996959075
wikipedia_url   : -
====================
name            : lumierelondon aichoketrust aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015490>
salience        : 0.00010510074207559228
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2295b300>
salience        : 0.00010486441169632599
wikipedia_url   : -
====================
name            : favorites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a80>
salience        : 0.00010477925388840958
wikipedia_url   : -
====================
name            : favorites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21580>
salience        : 0.00010470756387803704
wikipedia_url   : -
====================
name            : favorites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19da0>
salience        : 0.00010470756387803704
wikipedia_url   : -
====================
name            : favorites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19e90>
salience        : 0.00010467317042639479
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19f80>
salience        : 0.00010458574251970276
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a300d0>
salience        : 0.00010458574251970276
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30120>
salience        : 0.00010448568355059251
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30170>
salience        : 0.00010446441592648625
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a301c0>
salience        : 0.00010440265759825706
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a302b0>
salience        : 0.0001039143608068116
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30350>
salience        : 0.00010333234240533784
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a303f0>
salience        : 0.0001032992877298966
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30490>
salience        : 0.00010272967483615503
wikipedia_url   : -
====================
name            : aichoketrust kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30530>
salience        : 0.00010253833897877485
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30580>
salience        : 0.00010253833897877485
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30620>
salience        : 0.00010250596096739173
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30670>
salience        : 0.0001024946104735136
wikipedia_url   : -
====================
name            : ai revolution aether em king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a306c0>
salience        : 0.00010249007755191997
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30760>
salience        : 0.0001024743978632614
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30800>
salience        : 0.0001024743978632614
wikipedia_url   : -
====================
name            : canopy king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a308a0>
salience        : 0.00010245891462545842
wikipedia_url   : -
====================
name            : kingscross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30990>
salience        : 0.00010245891462545842
wikipedia_url   : -
====================
name            : waterlicht kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a309e0>
salience        : 0.00010242850839858875
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30a80>
salience        : 0.00010236983507638797
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30b70>
salience        : 0.00010236983507638797
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30c60>
salience        : 0.0001023555887513794
wikipedia_url   : -
====================
name            : kingdom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30d50>
salience        : 0.0001023555887513794
wikipedia_url   : -
====================
name            : favorites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30df0>
salience        : 0.00010234259389108047
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30e90>
salience        : 0.00010234150249743834
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30f30>
salience        : 0.00010203362035099417
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c030>
salience        : 0.00010199101961916313
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c0d0>
salience        : 0.00010194983769906685
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c170>
salience        : 0.00010194983769906685
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c210>
salience        : 0.00010194983769906685
wikipedia_url   : -
====================
name            : city facltd teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c2b0>
salience        : 0.00010194983769906685
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c350>
salience        : 0.00010190998000325635
wikipedia_url   : -
====================
name            : education teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c3f0>
salience        : 0.0001017975591821596
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c490>
salience        : 0.00010176224895985797
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c530>
salience        : 0.00010176224895985797
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c5d0>
salience        : 0.00010176224895985797
wikipedia_url   : -
====================
name            : politics
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c670>
salience        : 0.00010073611338157207
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c710>
salience        : 0.00010066232061944902
wikipedia_url   : -
====================
name            : londonlumiere visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c7b0>
salience        : 0.00010041164205176756
wikipedia_url   : -
====================
name            : regents
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c8a0>
salience        : 0.00010038104664999992
wikipedia_url   : -
====================
name            : phone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c940>
salience        : 9.993877756642178e-05
wikipedia_url   : -
====================
name            : soup
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c990>
salience        : 9.959238377632573e-05
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c9e0>
salience        : 9.949721425073221e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cad0>
salience        : 9.927131031872705e-05
wikipedia_url   : -
====================
name            : bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cb70>
salience        : 9.901236626319587e-05
wikipedia_url   : -
====================
name            : visitlondon lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cc10>
salience        : 9.892239177133888e-05
wikipedia_url   : -
====================
name            : canary wharf wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ccb0>
salience        : 9.879579010885209e-05
wikipedia_url   : -
====================
name            : westminster londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cd50>
salience        : 9.849083289736882e-05
wikipedia_url   : -
====================
name            : mickfusion aichoketrust gdifestival london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cdf0>
salience        : 9.835270611802116e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cee0>
salience        : 9.80896656983532e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cf80>
salience        : 9.802935528568923e-05
wikipedia_url   : -
====================
name            : londonwalks ghosts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66030>
salience        : 9.769048483576626e-05
wikipedia_url   : -
====================
name            : regent street pity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66080>
salience        : 9.769048483576626e-05
wikipedia_url   : -
====================
name            : signs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a660d0>
salience        : 9.769048483576626e-05
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66120>
salience        : 9.752861660672352e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a661c0>
salience        : 9.751291509019211e-05
wikipedia_url   : -
====================
name            : sister paicipation festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66210>
salience        : 9.746701834956184e-05
wikipedia_url   : -
====================
name            : london londonlumiere lumierelondon visitlondon lumierelondon2018 londonislovinit london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a662b0>
salience        : 9.746318391989917e-05
wikipedia_url   : -
====================
name            : favourites festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66300>
salience        : 9.743738337419927e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a663a0>
salience        : 9.742283873492852e-05
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a663f0>
salience        : 9.739427332533523e-05
wikipedia_url   : -
====================
name            : lanterncompany pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66440>
salience        : 9.738023800309747e-05
wikipedia_url   : -
====================
name            : visit lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66490>
salience        : 9.735266939969733e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a664e0>
salience        : 9.735266939969733e-05
wikipedia_url   : -
====================
name            : ldnwinefood london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66580>
salience        : 9.732723992783576e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a665d0>
salience        : 9.732572652865201e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66620>
salience        : 9.732572652865201e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a666c0>
salience        : 9.732572652865201e-05
wikipedia_url   : -
====================
name            : twitter trends
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66710>
salience        : 9.720382513478398e-05
wikipedia_url   : -
====================
name            : money
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66760>
salience        : 9.720382513478398e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66850>
salience        : 9.719724039314315e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66940>
salience        : 9.717642387840897e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66a30>
salience        : 9.713585313875228e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66ad0>
salience        : 9.70018663792871e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66bc0>
salience        : 9.69687826000154e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66cb0>
salience        : 9.69687826000154e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66da0>
salience        : 9.690150181995705e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66e90>
salience        : 9.68852691585198e-05
wikipedia_url   : -
====================
name            : medicine
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66f30>
salience        : 9.686000703368336e-05
wikipedia_url   : -
====================
name            : glow sticks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd030>
salience        : 9.686000703368336e-05
wikipedia_url   : -
====================
name            : abuela
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd0d0>
salience        : 9.659416537033394e-05
wikipedia_url   : -
====================
name            : soy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd120>
salience        : 9.659416537033394e-05
wikipedia_url   : -
====================
name            : sin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd170>
salience        : 9.659416537033394e-05
wikipedia_url   : -
====================
name            : drug warnings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd210>
salience        : 9.659416537033394e-05
wikipedia_url   : -
====================
name            : gt
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd2b0>
salience        : 9.640523785492405e-05
wikipedia_url   : -
====================
name            : saw frog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd350>
salience        : 9.637749462854117e-05
wikipedia_url   : -
====================
name            : advice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd3f0>
salience        : 9.61946789175272e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd4e0>
salience        : 9.616248280508444e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd5d0>
salience        : 9.613903239369392e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd6c0>
salience        : 9.61160403676331e-05
wikipedia_url   : -
====================
name            : parent taxi teenagers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd760>
salience        : 9.577300806995481e-05
wikipedia_url   : -
====================
name            : hit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd7b0>
salience        : 9.577300806995481e-05
wikipedia_url   : -
====================
name            : candy floss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd850>
salience        : 9.577300806995481e-05
wikipedia_url   : -
====================
name            : evening beats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd8f0>
salience        : 9.577300806995481e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd990>
salience        : 9.569809481035918e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbda30>
salience        : 9.569809481035918e-05
wikipedia_url   : -
====================
name            : precision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdad0>
salience        : 9.555817814543843e-05
wikipedia_url   : -
====================
name            : exercise
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdb70>
salience        : 9.555817814543843e-05
wikipedia_url   : -
====================
name            : shit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdbc0>
salience        : 9.555817814543843e-05
wikipedia_url   : -
====================
name            : lights goals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdc60>
salience        : 9.546401997795328e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdd00>
salience        : 9.538542508380488e-05
wikipedia_url   : -
====================
name            : store street redlionmayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdd50>
salience        : 9.53769194893539e-05
wikipedia_url   : -
====================
name            : craigaharman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbde40>
salience        : 9.53769194893539e-05
wikipedia_url   : -
====================
name            : touring lights pop simit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbde90>
salience        : 9.529590897727758e-05
wikipedia_url   : -
====================
name            : luck
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30b20>
salience        : 9.529590897727758e-05
wikipedia_url   : -
====================
name            : pub 2hrs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b70>
salience        : 9.529590897727758e-05
wikipedia_url   : -
====================
name            : raspberry ripple
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f30>
salience        : 9.529590897727758e-05
wikipedia_url   : -
====================
name            : amp socket ganton street plus
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d00>
salience        : 9.514910925645381e-05
wikipedia_url   : -
====================
name            : appearance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b20>
salience        : 9.508214861853048e-05
wikipedia_url   : -
====================
name            : peeps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc10>
salience        : 9.508214861853048e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97080>
salience        : 9.464855975238606e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97260>
salience        : 9.464543109061196e-05
wikipedia_url   : -
====================
name            : brightnights gt wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97490>
salience        : 9.446637704968452e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97530>
salience        : 9.442513692192733e-05
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97620>
salience        : 9.425249299965799e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97760>
salience        : 9.402146679349244e-05
wikipedia_url   : -
====================
name            : visit half
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97850>
salience        : 9.378651157021523e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97940>
salience        : 9.366848826175556e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97a80>
salience        : 9.361204138258472e-05
wikipedia_url   : -
====================
name            : lumierelondon bayswaterboys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97bc0>
salience        : 9.356392547488213e-05
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97c60>
salience        : 9.341122495243326e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97d00>
salience        : 9.305812272941694e-05
wikipedia_url   : -
====================
name            : visitlondon info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97da0>
salience        : 9.29612506297417e-05
wikipedia_url   : -
====================
name            : smiles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97ee0>
salience        : 9.28679874050431e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97f30>
salience        : 9.273098839912564e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19120>
salience        : 9.270352893508971e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a192b0>
salience        : 9.252768359147012e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a193f0>
salience        : 9.244908869732171e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19530>
salience        : 9.23756233532913e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19710>
salience        : 9.22105900826864e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19800>
salience        : 9.218030754709616e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19990>
salience        : 9.218030754709616e-05
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19b70>
salience        : 9.202528599416837e-05
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c60>
salience        : 9.200623753713444e-05
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064210>
salience        : 9.195096208713949e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0120>
salience        : 9.18247242225334e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b02b0>
salience        : 9.172757563646883e-05
wikipedia_url   : -
====================
name            : back
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0170>
salience        : 9.160990157397464e-05
wikipedia_url   : -
====================
name            : state
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ad0>
salience        : 9.147759556071833e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daf120>
salience        : 9.130717808147892e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1030>
salience        : 9.128007513936609e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1440>
salience        : 9.128007513936609e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1620>
salience        : 9.128007513936609e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1b20>
salience        : 9.128007513936609e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1d50>
salience        : 9.128007513936609e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b030>
salience        : 9.125362703343853e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b8a0>
salience        : 9.125362703343853e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7be40>
salience        : 9.125362703343853e-05
wikipedia_url   : -
====================
name            : pkuparliament lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5cb0>
salience        : 9.120654431171715e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa300>
salience        : 9.117785521084443e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa580>
salience        : 9.117785521084443e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce490>
salience        : 9.110794781008735e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a80>
salience        : 9.110794781008735e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f80>
salience        : 9.110693645197898e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095cb0>
salience        : 9.108426456805319e-05
wikipedia_url   : -
====================
name            : city streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdf80>
salience        : 9.106205106945708e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e830d0>
salience        : 9.10189191927202e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e831c0>
salience        : 9.097740257857367e-05
wikipedia_url   : -
====================
name            : app check visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83210>
salience        : 9.057924035005271e-05
wikipedia_url   : -
====================
name            : illumination installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83260>
salience        : 9.051426604855806e-05
wikipedia_url   : -
====================
name            : checking lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e832b0>
salience        : 9.005386527860537e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk livedesignmag london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83350>
salience        : 8.99839578778483e-05
wikipedia_url   : -
====================
name            : aichoketrust lumierelondon cazzapanda london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e833f0>
salience        : 8.990478818304837e-05
wikipedia_url   : -
====================
name            : londoneye oxfordcircus londonlumiere lumierelondon visitlondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83490>
salience        : 8.98921352927573e-05
wikipedia_url   : -
====================
name            : westminster london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83530>
salience        : 8.985502790892497e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83580>
salience        : 8.955876546679065e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e835d0>
salience        : 8.955876546679065e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83670>
salience        : 8.950260962592438e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83710>
salience        : 8.943224383983761e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e837b0>
salience        : 8.941616397351027e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83850>
salience        : 8.941616397351027e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e838f0>
salience        : 8.941616397351027e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83990>
salience        : 8.941616397351027e-05
wikipedia_url   : -
====================
name            : rainbow colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e839e0>
salience        : 8.937612437875941e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83ad0>
salience        : 8.932026685215533e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83bc0>
salience        : 8.92789030331187e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83c60>
salience        : 8.92032912815921e-05
wikipedia_url   : -
====================
name            : route nationaltheatre pa weekend
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83cb0>
salience        : 8.914551290217787e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83d50>
salience        : 8.906982839107513e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83df0>
salience        : 8.895278006093577e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83ee0>
salience        : 8.883846021490172e-05
wikipedia_url   : -
====================
name            : beer illumination
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83f30>
salience        : 8.881370013114065e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a080>
salience        : 8.8796645286493e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a170>
salience        : 8.875638741301373e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a260>
salience        : 8.866791904438287e-05
wikipedia_url   : -
====================
name            : woman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a300>
salience        : 8.866346615832299e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3a0>
salience        : 8.863114635460079e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル tgjenkins westminster abbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a440>
salience        : 8.858709770720452e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk mesmerising waterlicht daan roosegaarde sroosegaarde publica lighta tgjenkins westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a530>
salience        : 8.85735425981693e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a5d0>
salience        : 8.845544653013349e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a670>
salience        : 8.845544653013349e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a710>
salience        : 8.837227505864576e-05
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a800>
salience        : 8.827414421830326e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8f0>
salience        : 8.821820665616542e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a9e0>
salience        : 8.821820665616542e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aad0>
salience        : 8.81976739037782e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab70>
salience        : 8.781692304182798e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 visitlondon blueprintmag
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac10>
salience        : 8.77549173310399e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad00>
salience        : 8.76698613865301e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad50>
salience        : 8.763326331973076e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2adf0>
salience        : 8.762169454712421e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aee0>
salience        : 8.755642920732498e-05
wikipedia_url   : -
====================
name            : square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82030>
salience        : 8.754651207709685e-05
wikipedia_url   : -
====================
name            : architecture awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82080>
salience        : 8.724864892428741e-05
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e820d0>
salience        : 8.713051647646353e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82170>
salience        : 8.701373735675588e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82210>
salience        : 8.694107964402065e-05
wikipedia_url   : -
====================
name            : music hea winter city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e822b0>
salience        : 8.694107964402065e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82350>
salience        : 8.687309309607372e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e823f0>
salience        : 8.684067142894492e-05
wikipedia_url   : -
====================
name            : lumierelondon southbanklondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82490>
salience        : 8.681753388373181e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82580>
salience        : 8.68059869389981e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82620>
salience        : 8.676372090121731e-05
wikipedia_url   : -
====================
name            : visit half
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e826c0>
salience        : 8.665079076308757e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82760>
salience        : 8.637887367513031e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82800>
salience        : 8.637887367513031e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828a0>
salience        : 8.629806688986719e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82940>
salience        : 8.627246279502288e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e829e0>
salience        : 8.627246279502288e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a80>
salience        : 8.627246279502288e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82b20>
salience        : 8.624746260466054e-05
wikipedia_url   : -
====================
name            : cityscape
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c10>
salience        : 8.624746260466054e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82cb0>
salience        : 8.619917934993282e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d50>
salience        : 8.598638669354841e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82df0>
salience        : 8.596730185672641e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e90>
salience        : 8.593202073825523e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f30>
salience        : 8.569547935621813e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61030>
salience        : 8.564641757402569e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61120>
salience        : 8.547844481654465e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a611c0>
salience        : 8.542445721104741e-05
wikipedia_url   : -
====================
name            : taster
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61260>
salience        : 8.520150004187599e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61300>
salience        : 8.512561907991767e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a613a0>
salience        : 8.512561907991767e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61440>
salience        : 8.507116581313312e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61530>
salience        : 8.503440039930865e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a615d0>
salience        : 8.499890100210905e-05
wikipedia_url   : -
====================
name            : school workshops
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61670>
salience        : 8.493135828757659e-05
wikipedia_url   : -
====================
name            : city life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61710>
salience        : 8.48679628688842e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a617b0>
salience        : 8.47796254674904e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61850>
salience        : 8.461673132842407e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a618f0>
salience        : 8.456749492324889e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61990>
salience        : 8.455158967990428e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61a30>
salience        : 8.453593181911856e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61ad0>
salience        : 8.450531458947808e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61b70>
salience        : 8.450531458947808e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61c10>
salience        : 8.449034066870809e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61cb0>
salience        : 8.449034066870809e-05
wikipedia_url   : -
====================
name            : lovelondon visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61d50>
salience        : 8.445918501820415e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61df0>
salience        : 8.441857062280178e-05
wikipedia_url   : -
====================
name            : surroundings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61ee0>
salience        : 8.419815276283771e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61f80>
salience        : 8.417318895226344e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f030>
salience        : 8.415256161242723e-05
wikipedia_url   : -
====================
name            : holbid regentst_assoc grosvenor_gbi thecrownestate cedricleborgne visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f0d0>
salience        : 8.412924944423139e-05
wikipedia_url   : -
====================
name            : westminsterabbey wabbey aichoketrust victoriabid visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f170>
salience        : 8.407871064264327e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f210>
salience        : 8.405949483858421e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f2b0>
salience        : 8.40401989989914e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f350>
salience        : 8.40401989989914e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f3f0>
salience        : 8.40401989989914e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f4e0>
salience        : 8.398544014198706e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f580>
salience        : 8.391145820496604e-05
wikipedia_url   : -
====================
name            : landscape waves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f5d0>
salience        : 8.389247523155063e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f670>
salience        : 8.386652916669846e-05
wikipedia_url   : -
====================
name            : lumierelondon aichoketrust holbid grosvenor_gbi thewpa thecrownestate dream cédric le borgne
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f710>
salience        : 8.375153265660629e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f7b0>
salience        : 8.374251774512231e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f850>
salience        : 8.359763887710869e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f8f0>
salience        : 8.352538861799985e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f990>
salience        : 8.347084076376632e-05
wikipedia_url   : -
====================
name            : excuse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fa30>
salience        : 8.316731691593304e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fa80>
salience        : 8.311103738378733e-05
wikipedia_url   : -
====================
name            : reasons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fb20>
salience        : 8.309679833473638e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fc10>
salience        : 8.294920553453267e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fd00>
salience        : 8.294920553453267e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fdf0>
salience        : 8.288220851682127e-05
wikipedia_url   : -
====================
name            : swing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fe40>
salience        : 8.282858470920473e-05
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fee0>
salience        : 8.280428301077336e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5030>
salience        : 8.274600259028375e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd50d0>
salience        : 8.25874594738707e-05
wikipedia_url   : -
====================
name            : awork lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5170>
salience        : 8.246568904723972e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5210>
salience        : 8.230618550442159e-05
wikipedia_url   : -
====================
name            : map information photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd52b0>
salience        : 8.230191451730207e-05
wikipedia_url   : -
====================
name            : map information photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5350>
salience        : 8.230191451730207e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd53f0>
salience        : 8.224866905948147e-05
wikipedia_url   : -
====================
name            : map information photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5490>
salience        : 8.21635767351836e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5580>
salience        : 8.214227273128927e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5670>
salience        : 8.210098167182878e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5760>
salience        : 8.208096551243216e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5850>
salience        : 8.206133497878909e-05
wikipedia_url   : -
====================
name            : city world
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5940>
salience        : 8.191366941900924e-05
wikipedia_url   : -
====================
name            : lumierelondon aichoketrust holbid grosvenor_gbi thewpa thecrownestate aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd59e0>
salience        : 8.184405305655673e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5a80>
salience        : 8.176681876648217e-05
wikipedia_url   : -
====================
name            : night switch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5b20>
salience        : 8.159805292962119e-05
wikipedia_url   : -
====================
name            : remedy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5bc0>
salience        : 8.151845395332202e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5cb0>
salience        : 8.137409167829901e-05
wikipedia_url   : -
====================
name            : michael davis
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5da0>
salience        : 8.13450533314608e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5e90>
salience        : 8.126058673951775e-05
wikipedia_url   : -
====================
name            : exhibition people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5f30>
salience        : 8.126058673951775e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c080>
salience        : 8.119155972963199e-05
wikipedia_url   : -
====================
name            : location
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c170>
salience        : 8.112704381346703e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c260>
salience        : 8.103754953481257e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c350>
salience        : 8.103754953481257e-05
wikipedia_url   : -
====================
name            : embassy building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c3f0>
salience        : 8.100943523459136e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c490>
salience        : 8.078171958914027e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c4e0>
salience        : 8.057957893470302e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c580>
salience        : 8.057957893470302e-05
wikipedia_url   : -
====================
name            : lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c620>
salience        : 8.053117198869586e-05
wikipedia_url   : -
====================
name            : exhibitions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c6c0>
salience        : 8.035841165110469e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c7b0>
salience        : 8.033296035137028e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c8a0>
salience        : 8.027057629078627e-05
wikipedia_url   : -
====================
name            : leake street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c990>
salience        : 8.024118142202497e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Leake_Street
====================
name            : krittstweets
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ca80>
salience        : 8.01942078396678e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust cedricleborgne london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 carnaby street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cb20>
salience        : 8.018128573894501e-05
wikipedia_url   : -
====================
name            : fish lanterns
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cc10>
salience        : 8.01457863417454e-05
wikipedia_url   : -
====================
name            : waterlicht pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cc60>
salience        : 8.011444879230112e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cd50>
salience        : 8.009186421986669e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ce40>
salience        : 8.000206435099244e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cf30>
salience        : 7.994410407263786e-05
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cf80>
salience        : 7.992004975676537e-05
wikipedia_url   : -
====================
name            : _kwaters_ aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f080>
salience        : 7.989228470250964e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f120>
salience        : 7.965954137034714e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f1c0>
salience        : 7.964383985381573e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f260>
salience        : 7.95982195995748e-05
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f2b0>
salience        : 7.958347850944847e-05
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f300>
salience        : 7.958347850944847e-05
wikipedia_url   : -
====================
name            : visitlondon info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f350>
salience        : 7.955173350637779e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f3f0>
salience        : 7.951292354846373e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f490>
salience        : 7.949944847496226e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f530>
salience        : 7.94861261965707e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f5d0>
salience        : 7.947298581711948e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f670>
salience        : 7.945717516122386e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f710>
salience        : 7.944546086946502e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f7b0>
salience        : 7.937797636259347e-05
wikipedia_url   : -
====================
name            : mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f850>
salience        : 7.935091707622632e-05
wikipedia_url   : -
====================
name            : rossbolwill aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f8a0>
salience        : 7.920738426037133e-05
wikipedia_url   : -
====================
name            : marvel ones kings cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f8f0>
salience        : 7.913494482636452e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f990>
salience        : 7.913494482636452e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fa30>
salience        : 7.912162982393056e-05
wikipedia_url   : -
====================
name            : regentstreet regent street southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fad0>
salience        : 7.912162982393056e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fb70>
salience        : 7.910468411864713e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fc10>
salience        : 7.910468411864713e-05
wikipedia_url   : -
====================
name            : fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fcb0>
salience        : 7.907392864581198e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fd50>
salience        : 7.906274549895898e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fdf0>
salience        : 7.906274549895898e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fe40>
salience        : 7.89532859926112e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fe90>
salience        : 7.89328187238425e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fee0>
salience        : 7.89328187238425e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6ff30>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6ff80>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23030>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23080>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e230d0>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23120>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23170>
salience        : 7.891277346061543e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23210>
salience        : 7.889313565101475e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23260>
salience        : 7.889313565101475e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28f0>
salience        : 7.889313565101475e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7080>
salience        : 7.887389801908284e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db20>
salience        : 7.885503873694688e-05
wikipedia_url   : -
====================
name            : line king cross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a70d0>
salience        : 7.881838973844424e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9d00>
salience        : 7.876591553213075e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a217b0>
salience        : 7.862946949899197e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21030>
salience        : 7.853356510167941e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30030>
salience        : 7.849474059185013e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30210>
salience        : 7.835626456653699e-05
wikipedia_url   : -
====================
name            : info southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30300>
salience        : 7.827929221093655e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30440>
salience        : 7.827929221093655e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a305d0>
salience        : 7.824148633517325e-05
wikipedia_url   : -
====================
name            : mayfair southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a307b0>
salience        : 7.820512837497517e-05
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30850>
salience        : 7.800350431352854e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30a30>
salience        : 7.792636461090297e-05
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30c10>
salience        : 7.789694791426882e-05
wikipedia_url   : -
====================
name            : piece
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30d00>
salience        : 7.786414062138647e-05
wikipedia_url   : -
====================
name            : london bestofmayfair brownshotel rfhotels wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30e40>
salience        : 7.747510971967131e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30f80>
salience        : 7.734837708994746e-05
wikipedia_url   : -
====================
name            : event closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c080>
salience        : 7.730096695013344e-05
wikipedia_url   : -
====================
name            : event closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c120>
salience        : 7.730096695013344e-05
wikipedia_url   : -
====================
name            : lumierelondon keithjbalett
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c260>
salience        : 7.722438749624416e-05
wikipedia_url   : -
====================
name            : londonisopen lumiere love motion illumaphonium planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c300>
salience        : 7.721439760643989e-05
wikipedia_url   : -
====================
name            : city glow lumierelondon paulj71
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c440>
salience        : 7.706205360591412e-05
wikipedia_url   : -
====================
name            : oxford street leakestreet
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c4e0>
salience        : 7.700389687670395e-05
wikipedia_url   : -
====================
name            : visitlondon keeponwalking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c580>
salience        : 7.700389687670395e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c620>
salience        : 7.693329825997353e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c760>
salience        : 7.690095662837848e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c850>
salience        : 7.690095662837848e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ca80>
salience        : 7.675626693526283e-05
wikipedia_url   : -
====================
name            : winds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cb20>
salience        : 7.673835352761671e-05
wikipedia_url   : -
====================
name            : visitlondon keeponwalking
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cc60>
salience        : 7.673152140341699e-05
wikipedia_url   : -
====================
name            : westminsterabbey ilovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cda0>
salience        : 7.652091881027445e-05
wikipedia_url   : -
====================
name            : oranger entre les rangs
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ce90>
salience        : 7.652091881027445e-05
wikipedia_url   : -
====================
name            : taste power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66170>
salience        : 7.64289143262431e-05
wikipedia_url   : -
====================
name            : c lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66350>
salience        : 7.599104719702154e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66670>
salience        : 7.597285002702847e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66800>
salience        : 7.59201284381561e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a668f0>
salience        : 7.59074100642465e-05
wikipedia_url   : -
====================
name            : photograph photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a669e0>
salience        : 7.5723190093413e-05
wikipedia_url   : -
====================
name            : photographs
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66b70>
salience        : 7.571265450678766e-05
wikipedia_url   : -
====================
name            : photography photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66c60>
salience        : 7.570223533548415e-05
wikipedia_url   : -
====================
name            : sound sculpture mount street carlos place
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66d50>
salience        : 7.565395935671404e-05
wikipedia_url   : -
====================
name            : childhood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66e40>
salience        : 7.565395935671404e-05
wikipedia_url   : -
====================
name            : shots voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66f80>
salience        : 7.489321433240548e-05
wikipedia_url   : -
====================
name            : hat voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075120>
salience        : 7.489321433240548e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97350>
salience        : 7.487225957447663e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e976c0>
salience        : 7.478020415874198e-05
wikipedia_url   : -
====================
name            : attention detail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e977b0>
salience        : 7.474545418517664e-05
wikipedia_url   : -
====================
name            : attention detail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e978a0>
salience        : 7.474545418517664e-05
wikipedia_url   : -
====================
name            : attention detail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97a30>
salience        : 7.474545418517664e-05
wikipedia_url   : -
====================
name            : shots voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97e40>
salience        : 7.456092862412333e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19e40>
salience        : 7.448106771335006e-05
wikipedia_url   : -
====================
name            : friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19030>
salience        : 7.445593655575067e-05
wikipedia_url   : -
====================
name            : hotel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19350>
salience        : 7.445593655575067e-05
wikipedia_url   : -
====================
name            : hotel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19620>
salience        : 7.44314820622094e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a198a0>
salience        : 7.440967601723969e-05
wikipedia_url   : -
====================
name            : triumph circuits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19a30>
salience        : 7.437963358825073e-05
wikipedia_url   : -
====================
name            : londoncalling londoncity london_masters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19c10>
salience        : 7.436626765411347e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648f0>
salience        : 7.435055158566684e-05
wikipedia_url   : -
====================
name            : leicestersquare
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4f30>
salience        : 7.432237907778472e-05
wikipedia_url   : -
====================
name            : outdooras aichoketrust lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b08a0>
salience        : 7.430906407535076e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0620>
salience        : 7.42579359211959e-05
wikipedia_url   : -
====================
name            : lighta lightfestival lumierelondon lumiere paolaenergya lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafe90>
salience        : 7.424905197694898e-05
wikipedia_url   : -
====================
name            : lighta lightfestival lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1260>
salience        : 7.424905197694898e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1760>
salience        : 7.421771442750469e-05
wikipedia_url   : -
====================
name            : london ibipeople ibisocial lumierelondon lumiere lumierelondon2018
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1b70>
salience        : 7.417923916364089e-05
wikipedia_url   : -
====================
name            : london ibipeople ibisocial lumierelondon lumiere lumierelondon2018
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bee0>
salience        : 7.413980347337201e-05
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b4e0>
salience        : 7.394585554720834e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b9e0>
salience        : 7.370107050519437e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7300>
salience        : 7.357759750448167e-05
wikipedia_url   : -
====================
name            : exhibition projections
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967990>
salience        : 7.346298662014306e-05
wikipedia_url   : -
====================
name            : garden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce710>
salience        : 7.337396527873352e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095170>
salience        : 7.331919914577156e-05
wikipedia_url   : -
====================
name            : dancer feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd080>
salience        : 7.311083027161658e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd260>
salience        : 7.288430060725659e-05
wikipedia_url   : -
====================
name            : bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd3a0>
salience        : 7.287271728273481e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd490>
salience        : 7.286127947736531e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd580>
salience        : 7.284999446710572e-05
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd620>
salience        : 7.284999446710572e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd710>
salience        : 7.283884770004079e-05
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd8a0>
salience        : 7.281696889549494e-05
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd940>
salience        : 7.27645237930119e-05
wikipedia_url   : -
====================
name            : jcf traffic mate traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd9e0>
salience        : 7.275689858943224e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdcb0>
salience        : 7.255891978275031e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdee0>
salience        : 7.254795491462573e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83030>
salience        : 7.253313378896564e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83120>
salience        : 7.25127465557307e-05
wikipedia_url   : -
====================
name            : shows
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83300>
salience        : 7.249911141116172e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels john_pahl lumiere
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83440>
salience        : 7.249840564327314e-05
wikipedia_url   : -
====================
name            : flamingo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83620>
salience        : 7.24895580788143e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83760>
salience        : 7.24895580788143e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e838a0>
salience        : 7.245942833833396e-05
wikipedia_url   : -
====================
name            : hgn wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83a80>
salience        : 7.244628795888275e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83b70>
salience        : 7.240915147121996e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83d00>
salience        : 7.23970151739195e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83e40>
salience        : 7.23338162060827e-05
wikipedia_url   : -
====================
name            : london lumiere visitlondon piccadillycircus wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83f80>
salience        : 7.227324385894462e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a490>
salience        : 7.220727275125682e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a120>
salience        : 7.216389349196106e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a1c0>
salience        : 7.216389349196106e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a210>
salience        : 7.214990182546899e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3f0>
salience        : 7.20090902177617e-05
wikipedia_url   : -
====================
name            : light show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a620>
salience        : 7.195022044470534e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a6c0>
salience        : 7.172573532443494e-05
wikipedia_url   : -
====================
name            : restaurants
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a850>
salience        : 7.121750968508422e-05
wikipedia_url   : -
====================
name            : bubbles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a940>
salience        : 7.116766937542707e-05
wikipedia_url   : -
====================
name            : lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa80>
salience        : 7.105528493411839e-05
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2abc0>
salience        : 7.098773494362831e-05
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2acb0>
salience        : 7.098773494362831e-05
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae40>
salience        : 7.098773494362831e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2af30>
salience        : 7.098647620296106e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82120>
salience        : 7.098387141013518e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82300>
salience        : 7.09547457518056e-05
wikipedia_url   : -
====================
name            : tracey emin
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23300>
salience        : 7.094883039826527e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Tracey_Emin
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e233a0>
salience        : 7.092296436894685e-05
wikipedia_url   : -
====================
name            : organiser flamingo flyaway catch
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23440>
salience        : 7.089231803547591e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e234e0>
salience        : 7.089109567459673e-05
wikipedia_url   : -
====================
name            : londonisopen lumiere visitlondon wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23580>
salience        : 7.081775402184576e-05
wikipedia_url   : -
====================
name            : cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23670>
salience        : 7.080641807988286e-05
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23710>
salience        : 7.072840526234359e-05
wikipedia_url   : -
====================
name            : oxotowerwharf lumierelondon photograghy ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23760>
salience        : 7.057027687551454e-05
wikipedia_url   : -
====================
name            : favourite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23800>
salience        : 7.055407331790775e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e238a0>
salience        : 7.053207082208246e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e238f0>
salience        : 7.049442501738667e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23990>
salience        : 7.042982178973034e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23a30>
salience        : 7.035653834464028e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23ad0>
salience        : 7.035653834464028e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23b70>
salience        : 7.035598537186161e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23c10>
salience        : 7.032326539047062e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23cb0>
salience        : 7.025595550658181e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23d00>
salience        : 7.019993790891021e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23d50>
salience        : 7.009926048340276e-05
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23df0>
salience        : 6.97280338499695e-05
wikipedia_url   : -
====================
name            : amp rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23e90>
salience        : 6.965645297896117e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23f30>
salience        : 6.965645297896117e-05
wikipedia_url   : -
====================
name            : installation waterlicht
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23f80>
salience        : 6.959379243198782e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a400d0>
salience        : 6.939314334886149e-05
wikipedia_url   : -
====================
name            : installation pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40170>
salience        : 6.936836871318519e-05
wikipedia_url   : -
====================
name            : cocktails team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40210>
salience        : 6.887369090691209e-05
wikipedia_url   : -
====================
name            : cocktails team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a402b0>
salience        : 6.887369090691209e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40350>
salience        : 6.885283801238984e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403f0>
salience        : 6.883906462462619e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40490>
salience        : 6.848371413070709e-05
wikipedia_url   : -
====================
name            : amp check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40530>
salience        : 6.83711696183309e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40580>
salience        : 6.822649447713047e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a405d0>
salience        : 6.810757622588426e-05
wikipedia_url   : -
====================
name            : chinatown
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a406c0>
salience        : 6.81069286656566e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40710>
salience        : 6.807837053202093e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40800>
salience        : 6.803193537052721e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a408a0>
salience        : 6.794936052756384e-05
wikipedia_url   : -
====================
name            : circles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40940>
salience        : 6.793213833589107e-05
wikipedia_url   : -
====================
name            : leicestersquare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40990>
salience        : 6.792278873035684e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a30>
salience        : 6.782623677281663e-05
wikipedia_url   : -
====================
name            : london alamynews lumiere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ad0>
salience        : 6.782623677281663e-05
wikipedia_url   : -
====================
name            : borough redbridge regents
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b70>
salience        : 6.773858331143856e-05
wikipedia_url   : -
====================
name            : regentsplace
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c60>
salience        : 6.766034493921325e-05
wikipedia_url   : -
====================
name            : aichoketrust outdooras visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d00>
salience        : 6.731825124006718e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40df0>
salience        : 6.73154354444705e-05
wikipedia_url   : -
====================
name            : friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ee0>
salience        : 6.730664608767256e-05
wikipedia_url   : -
====================
name            : instagram stories
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f30>
salience        : 6.688400026177987e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb080>
salience        : 6.682427920168266e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb170>
salience        : 6.680910155409947e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb210>
salience        : 6.674051837762818e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb300>
salience        : 6.672740710200742e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3f0>
salience        : 6.665745604550466e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb440>
salience        : 6.661862425971776e-05
wikipedia_url   : -
====================
name            : walk traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb4e0>
salience        : 6.659687642240897e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb5d0>
salience        : 6.648822454735637e-05
wikipedia_url   : -
====================
name            : control control
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb620>
salience        : 6.648822454735637e-05
wikipedia_url   : -
====================
name            : bottle festoon installation chandeliers
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb6c0>
salience        : 6.64644903736189e-05
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb760>
salience        : 6.645800749538466e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb7b0>
salience        : 6.644143286393955e-05
wikipedia_url   : -
====================
name            : care
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb800>
salience        : 6.644143286393955e-05
wikipedia_url   : -
====================
name            : light show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8f0>
salience        : 6.62936145090498e-05
wikipedia_url   : -
====================
name            : todolistldn watelicht daan roosegaarde
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb990>
salience        : 6.62497550365515e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb9e0>
salience        : 6.604978261748329e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debad0>
salience        : 6.597814353881404e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb20>
salience        : 6.596840830752626e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debc10>
salience        : 6.595878949156031e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debd00>
salience        : 6.595878949156031e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debdf0>
salience        : 6.593990110559389e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon lumiere2018 3
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe90>
salience        : 6.567651871591806e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debee0>
salience        : 6.56105694361031e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf30>
salience        : 6.558254244737327e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99030>
salience        : 6.540353206219152e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a990d0>
salience        : 6.540353206219152e-05
wikipedia_url   : -
====================
name            : page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99120>
salience        : 6.5242187702097e-05
wikipedia_url   : -
====================
name            : movements p
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a991c0>
salience        : 6.521334580611438e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99210>
salience        : 6.519520684378222e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a992b0>
salience        : 6.500673043774441e-05
wikipedia_url   : -
====================
name            : page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99300>
salience        : 6.495272100437433e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993a0>
salience        : 6.494063563877717e-05
wikipedia_url   : -
====================
name            : street impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993f0>
salience        : 6.492884131148458e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99490>
salience        : 6.491155363619328e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99530>
salience        : 6.491155363619328e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a995d0>
salience        : 6.486415804829448e-05
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99620>
salience        : 6.486125494120643e-05
wikipedia_url   : -
====================
name            : find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99670>
salience        : 6.484801997430623e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99710>
salience        : 6.454451067838818e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a997b0>
salience        : 6.448190833907574e-05
wikipedia_url   : -
====================
name            : study
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99800>
salience        : 6.446996849263087e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998a0>
salience        : 6.445820326916873e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99940>
salience        : 6.443519669119269e-05
wikipedia_url   : -
====================
name            : google
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a30>
salience        : 6.4212923462037e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Google
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b20>
salience        : 6.41626538708806e-05
wikipedia_url   : -
====================
name            : al ldnの人混みナンバーワン繁華街
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99bc0>
salience        : 6.415433745132759e-05
wikipedia_url   : -
====================
name            : aichoketrust krittstweets
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c60>
salience        : 6.409984052879736e-05
wikipedia_url   : -
====================
name            : cirquebijou
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d00>
salience        : 6.40997604932636e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d50>
salience        : 6.40471262158826e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99df0>
salience        : 6.401143036782742e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e40>
salience        : 6.398597179213539e-05
wikipedia_url   : -
====================
name            : nightingale berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e90>
salience        : 6.396279786713421e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f80>
salience        : 6.391905480995774e-05
wikipedia_url   : -
====================
name            : photography students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77080>
salience        : 6.386487075360492e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77120>
salience        : 6.383573781931773e-05
wikipedia_url   : -
====================
name            : covent garden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77210>
salience        : 6.374390795826912e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Covent_Garden
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77300>
salience        : 6.357439269777387e-05
wikipedia_url   : -
====================
name            : 7dialslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773f0>
salience        : 6.357273377943784e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e774e0>
salience        : 6.352693890221417e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e775d0>
salience        : 6.35257747489959e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77670>
salience        : 6.351778574753553e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77760>
salience        : 6.346788723021746e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e777b0>
salience        : 6.340974505292252e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77800>
salience        : 6.335767830023542e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77850>
salience        : 6.335767830023542e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778a0>
salience        : 6.335767830023542e-05
wikipedia_url   : -
====================
name            : outreach amp sense community
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778f0>
salience        : 6.333291094051674e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77940>
salience        : 6.333291094051674e-05
wikipedia_url   : -
====================
name            : charm simplicity installation community
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77990>
salience        : 6.333291094051674e-05
wikipedia_url   : -
====================
name            : hotelcaferoyal visitlondon wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a30>
salience        : 6.331243639579043e-05
wikipedia_url   : -
====================
name            : look guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ad0>
salience        : 6.329657480819151e-05
wikipedia_url   : -
====================
name            : communities
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77bc0>
salience        : 6.328563176793978e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c10>
salience        : 6.324109563138336e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c60>
salience        : 6.324109563138336e-05
wikipedia_url   : -
====================
name            : calls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77cb0>
salience        : 6.324109563138336e-05
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d50>
salience        : 6.324109563138336e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e40>
salience        : 6.321975524770096e-05
wikipedia_url   : -
====================
name            : pa wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ee0>
salience        : 6.321282853605226e-05
wikipedia_url   : -
====================
name            : travel info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f80>
salience        : 6.309270247584209e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc030>
salience        : 6.307964213192463e-05
wikipedia_url   : -
====================
name            : lumierelondon aichoke
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc080>
salience        : 6.303558620857075e-05
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc120>
salience        : 6.30281720077619e-05
wikipedia_url   : -
====================
name            : feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc170>
salience        : 6.296602805377916e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc210>
salience        : 6.261939415708184e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc2b0>
salience        : 6.257025233935565e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc350>
salience        : 6.257025233935565e-05
wikipedia_url   : -
====================
name            : visitlondon info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc3a0>
salience        : 6.254592153709382e-05
wikipedia_url   : -
====================
name            : family experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc3f0>
salience        : 6.246153498068452e-05
wikipedia_url   : -
====================
name            : travel info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc490>
salience        : 6.244751421036199e-05
wikipedia_url   : -
====================
name            : night catch tonight event info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82440>
salience        : 6.24322856310755e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82530>
salience        : 6.242989911697805e-05
wikipedia_url   : -
====================
name            : teamlondon volunteer info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e825d0>
salience        : 6.238834612304345e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82670>
salience        : 6.224784010555595e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82710>
salience        : 6.221966759767383e-05
wikipedia_url   : -
====================
name            : stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828f0>
salience        : 6.206476246006787e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ad0>
salience        : 6.206476246006787e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c60>
salience        : 6.205191311892122e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82da0>
salience        : 6.184352241689339e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ee0>
salience        : 6.169386324472725e-05
wikipedia_url   : -
====================
name            : collection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61080>
salience        : 6.169386324472725e-05
wikipedia_url   : -
====================
name            : river
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61170>
salience        : 6.169386324472725e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61210>
salience        : 6.166720413602889e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a612b0>
salience        : 6.164145452203229e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61350>
salience        : 6.164145452203229e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a613f0>
salience        : 6.161656347103417e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61490>
salience        : 6.161656347103417e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a614e0>
salience        : 6.161656347103417e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61580>
salience        : 6.161656347103417e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61620>
salience        : 6.159961776575074e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a616c0>
salience        : 6.159247277537361e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61760>
salience        : 6.158043106552213e-05
wikipedia_url   : -
====================
name            : pleasures childhood return play
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61800>
salience        : 6.154649599920958e-05
wikipedia_url   : -
====================
name            : lateraloffice csdesign collection
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61940>
salience        : 6.154649599920958e-05
wikipedia_url   : -
====================
name            : seesaws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61a80>
salience        : 6.154649599920958e-05
wikipedia_url   : -
====================
name            : courses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61bc0>
salience        : 6.154649599920958e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61da0>
salience        : 6.154431321192533e-05
wikipedia_url   : -
====================
name            : cannon street mainline stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61e90>
salience        : 6.152689456939697e-05
wikipedia_url   : -
====================
name            : anglepoise lamp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61f30>
salience        : 6.152452988317236e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f120>
salience        : 6.152421701699495e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f1c0>
salience        : 6.150318222353235e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f260>
salience        : 6.150318222353235e-05
wikipedia_url   : -
====================
name            : breathing difficulties chest pain diabetic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f300>
salience        : 6.150318222353235e-05
wikipedia_url   : -
====================
name            : cycling bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f490>
salience        : 6.150318222353235e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f6c0>
salience        : 6.149920227471739e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f8a0>
salience        : 6.149920227471739e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f9e0>
salience        : 6.145203224150464e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fbc0>
salience        : 6.144696817500517e-05
wikipedia_url   : -
====================
name            : handyside canopy king cross pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fcb0>
salience        : 6.144065264379606e-05
wikipedia_url   : -
====================
name            : stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fe90>
salience        : 6.143008795334026e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5080>
salience        : 6.143008795334026e-05
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd51c0>
salience        : 6.143008795334026e-05
wikipedia_url   : -
====================
name            : surroundings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5300>
salience        : 6.141798803582788e-05
wikipedia_url   : -
====================
name            : birds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd53a0>
salience        : 6.139438482932746e-05
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd54e0>
salience        : 6.138601747807115e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5530>
salience        : 6.134439900051802e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd55d0>
salience        : 6.11028735875152e-05
wikipedia_url   : -
====================
name            : balloons
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5710>
salience        : 6.109655078034848e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5800>
salience        : 6.108627712819725e-05
wikipedia_url   : -
====================
name            : route tfltph road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd58a0>
salience        : 6.101067265262827e-05
wikipedia_url   : -
====================
name            : route tfltph road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd58f0>
salience        : 6.101067265262827e-05
wikipedia_url   : -
====================
name            : route tfltph road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5990>
salience        : 6.101067265262827e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5ad0>
salience        : 6.101067265262827e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5b70>
salience        : 6.0999362176517025e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5c10>
salience        : 6.0999362176517025e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5d00>
salience        : 6.098677476984449e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5d50>
salience        : 6.09823182458058e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5df0>
salience        : 6.09823182458058e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5ee0>
salience        : 6.0970265622017905e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c030>
salience        : 6.092283729230985e-05
wikipedia_url   : -
====================
name            : info pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c1c0>
salience        : 6.092283729230985e-05
wikipedia_url   : -
====================
name            : course meal amp cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c210>
salience        : 6.088183727115393e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c300>
salience        : 6.083177140681073e-05
wikipedia_url   : -
====================
name            : course meal amp cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c3a0>
salience        : 6.08293958066497e-05
wikipedia_url   : -
====================
name            : course meal amp cocktail
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c530>
salience        : 6.08293958066497e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c5d0>
salience        : 6.073873373679817e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c670>
salience        : 6.0700371250277385e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c710>
salience        : 6.0700371250277385e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c760>
salience        : 6.0700371250277385e-05
wikipedia_url   : -
====================
name            : gloves amp scarf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c800>
salience        : 6.0700371250277385e-05
wikipedia_url   : -
====================
name            : deco lighting exterior
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c850>
salience        : 6.059248335077427e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c8f0>
salience        : 6.037558341631666e-05
wikipedia_url   : -
====================
name            : walking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c9e0>
salience        : 6.033226600266062e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cad0>
salience        : 6.031837619957514e-05
wikipedia_url   : -
====================
name            : evening lots
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ccb0>
salience        : 6.01002320763655e-05
wikipedia_url   : -
====================
name            : johnconstablera
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cda0>
salience        : 6.005163595546037e-05
wikipedia_url   : -
====================
name            : inspiration color
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cdf0>
salience        : 6.001673318678513e-05
wikipedia_url   : -
====================
name            : souvenir guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ce90>
salience        : 5.999802306178026e-05
wikipedia_url   : -
====================
name            : elton john
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f0d0>
salience        : 5.998438427923247e-05
wikipedia_url   : -
====================
name            : illumination
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f210>
salience        : 5.991837315377779e-05
wikipedia_url   : -
====================
name            : check night market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f3a0>
salience        : 5.9866033552680165e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f440>
salience        : 5.98634360358119e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f580>
salience        : 5.9832946135429665e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f6c0>
salience        : 5.982733637210913e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f940>
salience        : 5.982733637210913e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f9e0>
salience        : 5.9818750742124394e-05
wikipedia_url   : -
====================
name            : installation beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fb20>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : flowers pa beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fc60>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : installation beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fda0>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : installation beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7b20>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d670>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : installation beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0154e0>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : installation beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229db530>
salience        : 5.9790414525195956e-05
wikipedia_url   : -
====================
name            : find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30080>
salience        : 5.978570698061958e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30260>
salience        : 5.977664841338992e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a303a0>
salience        : 5.976314059807919e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a304e0>
salience        : 5.976314059807919e-05
wikipedia_url   : -
====================
name            : kinetic energy powers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30710>
salience        : 5.97408834437374e-05
wikipedia_url   : -
====================
name            : human power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30940>
salience        : 5.97408834437374e-05
wikipedia_url   : -
====================
name            : café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30bc0>
salience        : 5.971824430162087e-05
wikipedia_url   : -
====================
name            : festivals
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30da0>
salience        : 5.964883166598156e-05
wikipedia_url   : -
====================
name            : gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30ee0>
salience        : 5.947923636995256e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c3a0>
salience        : 5.932565909461118e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c800>
salience        : 5.9256544773234054e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ca30>
salience        : 5.9198264352744445e-05
wikipedia_url   : -
====================
name            : fishlantern
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cd00>
salience        : 5.917697126278654e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66260>
salience        : 5.9147980209672824e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a667b0>
salience        : 5.897109440411441e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66990>
salience        : 5.8896384871331975e-05
wikipedia_url   : -
====================
name            : solomongreyband
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66b20>
salience        : 5.883882113266736e-05
wikipedia_url   : -
====================
name            : beige stone
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66d00>
salience        : 5.877563307876699e-05
wikipedia_url   : -
====================
name            : flower head walk giant desk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66ee0>
salience        : 5.876118302694522e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97120>
salience        : 5.874594717170112e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e975d0>
salience        : 5.874594717170112e-05
wikipedia_url   : -
====================
name            : pa thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e97b20>
salience        : 5.872915426152758e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19f30>
salience        : 5.862172838533297e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19210>
salience        : 5.858117583557032e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19760>
salience        : 5.847922511748038e-05
wikipedia_url   : -
====================
name            : lumierelondon london taster
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19ad0>
salience        : 5.817179044242948e-05
wikipedia_url   : -
====================
name            : mickfusion aichoketrust thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19d00>
salience        : 5.81412241444923e-05
wikipedia_url   : -
====================
name            : smiles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e40>
salience        : 5.810815855511464e-05
wikipedia_url   : -
====================
name            : taster
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dafda0>
salience        : 5.8100122259929776e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db15d0>
salience        : 5.8094094129046425e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bf80>
salience        : 5.805919136037119e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7bd00>
salience        : 5.805608452646993e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa490>
salience        : 5.805608452646993e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095440>
salience        : 5.805608452646993e-05
wikipedia_url   : -
====================
name            : rambedance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbda80>
salience        : 5.8025932958116755e-05
wikipedia_url   : -
====================
name            : public
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd440>
salience        : 5.8025932958116755e-05
wikipedia_url   : -
====================
name            : thames
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd800>
salience        : 5.799416976515204e-05
wikipedia_url   : -
====================
name            : thames
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdda0>
salience        : 5.787974441773258e-05
wikipedia_url   : -
====================
name            : thames
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83080>
salience        : 5.787974441773258e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e834e0>
salience        : 5.787974441773258e-05
wikipedia_url   : -
====================
name            : valeriejamieson cosmologists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83800>
salience        : 5.775874888058752e-05
wikipedia_url   : -
====================
name            : holland_tom
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83a30>
salience        : 5.770880670752376e-05
wikipedia_url   : -
====================
name            : illumination lazer laser lasershow
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83c10>
salience        : 5.767501352238469e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a030>
salience        : 5.7641191233415157e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a0d0>
salience        : 5.7629371440270916e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a350>
salience        : 5.7569730415707454e-05
wikipedia_url   : -
====================
name            : taster
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a580>
salience        : 5.756679456681013e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc530>
salience        : 5.7517703680787235e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc5d0>
salience        : 5.7517703680787235e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc620>
salience        : 5.747107934439555e-05
wikipedia_url   : -
====================
name            : smiles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc6c0>
salience        : 5.7382418162887916e-05
wikipedia_url   : -
====================
name            : smiles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc760>
salience        : 5.737424726248719e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc800>
salience        : 5.73164397792425e-05
wikipedia_url   : -
====================
name            : interview simonings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc8a0>
salience        : 5.727205643779598e-05
wikipedia_url   : -
====================
name            : visitlondon keeponwalking day20 redjanuary
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc940>
salience        : 5.72182034375146e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc990>
salience        : 5.712091297027655e-05
wikipedia_url   : -
====================
name            : mi comentario le va venir
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfca30>
salience        : 5.7061151892412454e-05
wikipedia_url   : -
====================
name            : pa con natthemaiden estamos persiguiendo congeladas adelante nuestro una de medias bucito
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcad0>
salience        : 5.7061151892412454e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcb20>
salience        : 5.705717921955511e-05
wikipedia_url   : -
====================
name            : biggsytravels
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcc10>
salience        : 5.7041022955672815e-05
wikipedia_url   : -
====================
name            : london bestofmayfair brownshotel rfhotels lumierelondon spoonsontrays
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfccb0>
salience        : 5.693315324606374e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcd00>
salience        : 5.6884458899730816e-05
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcd50>
salience        : 5.686134682036936e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcda0>
salience        : 5.6850487453630194e-05
wikipedia_url   : -
====================
name            : davina mccall
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfce90>
salience        : 5.6825156207196414e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Davina_McCall
====================
name            : ulrika jonsson
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcf30>
salience        : 5.6825156207196414e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Ulrika_Jonsson
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcf80>
salience        : 5.6723558373050764e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec030>
salience        : 5.6723558373050764e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec120>
salience        : 5.6707271141931415e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec170>
salience        : 5.663457704940811e-05
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec210>
salience        : 5.663457704940811e-05
wikipedia_url   : -
====================
name            : globetellers lumierelondon globetellers_uk globetellers visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec2b0>
salience        : 5.659967791871168e-05
wikipedia_url   : -
====================
name            : leicester square ritatudela este fin de semana en londres la segunda edición del festival de luces visitlondon blueprintmag
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec350>
salience        : 5.650967432302423e-05
wikipedia_url   : -
====================
name            : todolistldn wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec3a0>
salience        : 5.640945892082527e-05
wikipedia_url   : -
====================
name            : には巨大バブル バルーンが現る この光フェスティバルの期間は歩行者天国で
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec440>
salience        : 5.634206172544509e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec4e0>
salience        : 5.620833326247521e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec580>
salience        : 5.620833326247521e-05
wikipedia_url   : -
====================
name            : skintlondon john_pahl lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec620>
salience        : 5.620747833745554e-05
wikipedia_url   : -
====================
name            : vlog lumiere london hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec670>
salience        : 5.619568764814176e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec710>
salience        : 5.6152945035137236e-05
wikipedia_url   : -
====================
name            : leicestersq wildlifetrusts visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec7b0>
salience        : 5.6060667702695355e-05
wikipedia_url   : -
====================
name            : shops
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec850>
salience        : 5.594358663074672e-05
wikipedia_url   : -
====================
name            : lapse
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec8a0>
salience        : 5.5909975344548e-05
wikipedia_url   : -
====================
name            : visitlondon newwestend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec940>
salience        : 5.5909975344548e-05
wikipedia_url   : -
====================
name            : lapse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec990>
salience        : 5.5847362091299146e-05
wikipedia_url   : -
====================
name            : victoriabid businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deca30>
salience        : 5.582271114690229e-05
wikipedia_url   : -
====================
name            : londonisopen lumiere hop action
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deca80>
salience        : 5.5790034821256995e-05
wikipedia_url   : -
====================
name            : hayward gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decb20>
salience        : 5.573717498918995e-05
wikipedia_url   : -
====================
name            : film step
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decbc0>
salience        : 5.571221117861569e-05
wikipedia_url   : -
====================
name            : swing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decc10>
salience        : 5.559957571676932e-05
wikipedia_url   : -
====================
name            : installation light spirit chapter
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deccb0>
salience        : 5.5521279136883095e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decd50>
salience        : 5.547007094719447e-05
wikipedia_url   : -
====================
name            : canary wharf wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decdf0>
salience        : 5.5351392802549526e-05
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dece90>
salience        : 5.525007509277202e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decf30>
salience        : 5.521324055735022e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0030>
salience        : 5.521324055735022e-05
wikipedia_url   : -
====================
name            : greatbritain wash colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0080>
salience        : 5.51930206711404e-05
wikipedia_url   : -
====================
name            : amateurphotography lights colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea00d0>
salience        : 5.51930206711404e-05
wikipedia_url   : -
====================
name            : amateurphotography lights colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0120>
salience        : 5.5169977713376284e-05
wikipedia_url   : -
====================
name            : amateurphotography lights colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0170>
salience        : 5.5169977713376284e-05
wikipedia_url   : -
====================
name            : teams
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0210>
salience        : 5.50933436898049e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea02b0>
salience        : 5.493967910297215e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0350>
salience        : 5.4928677855059505e-05
wikipedia_url   : -
====================
name            : friyay gt tfltrafficnews switches
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea03f0>
salience        : 5.482760025188327e-05
wikipedia_url   : -
====================
name            : illuminations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0490>
salience        : 5.4698684834875166e-05
wikipedia_url   : -
====================
name            : animations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0580>
salience        : 5.4697036830475554e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0670>
salience        : 5.45171533303801e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0760>
salience        : 5.45013535884209e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0850>
salience        : 5.45013535884209e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0940>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0a30>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0b20>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0c10>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0d00>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0df0>
salience        : 5.446847717394121e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0e90>
salience        : 5.4441676184069365e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0f80>
salience        : 5.4400195949710906e-05
wikipedia_url   : -
====================
name            : switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e080>
salience        : 5.437392246676609e-05
wikipedia_url   : -
====================
name            : lumierelondon sonyuk sonyproeurope sonyrxmoments sony rx1r2 rx1rii rx1rm2 installationa kingscross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e120>
salience        : 5.436731589725241e-05
wikipedia_url   : -
====================
name            : london eye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e1c0>
salience        : 5.435652201413177e-05
wikipedia_url   : -
====================
name            : lumierelondon sonyproeurope sonyuk sonyrxmoments sony rx1r2 rx1rii rx1rm2 installationa streetphotography kingscross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e260>
salience        : 5.433755359263159e-05
wikipedia_url   : -
====================
name            : location
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e350>
salience        : 5.433637124951929e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e3f0>
salience        : 5.427620999398641e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e490>
salience        : 5.4264975915430114e-05
wikipedia_url   : -
====================
name            : checkout highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e4e0>
salience        : 5.424306073109619e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e580>
salience        : 5.424306073109619e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e670>
salience        : 5.4235613788478076e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e710>
salience        : 5.423237234936096e-05
wikipedia_url   : -
====================
name            : time highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e760>
salience        : 5.423237234936096e-05
wikipedia_url   : -
====================
name            : time highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e7b0>
salience        : 5.423237234936096e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e850>
salience        : 5.4221854952629656e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e8f0>
salience        : 5.421150126494467e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e940>
salience        : 5.417823194875382e-05
wikipedia_url   : -
====================
name            : opening night highlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e990>
salience        : 5.417163629317656e-05
wikipedia_url   : -
====================
name            : bulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e9e0>
salience        : 5.4116029787110165e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ead0>
salience        : 5.404848343459889e-05
wikipedia_url   : -
====================
name            : visit exhibitions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2eb20>
salience        : 5.390308069763705e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ec10>
salience        : 5.388583667809144e-05
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ed00>
salience        : 5.386689372244291e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Ron_Haselden
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2edf0>
salience        : 5.3836891311220825e-05
wikipedia_url   : -
====================
name            : exhibit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ee90>
salience        : 5.38366730324924e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ef80>
salience        : 5.3824944188818336e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c080>
salience        : 5.382106974138878e-05
wikipedia_url   : -
====================
name            : hello road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c0d0>
salience        : 5.379469075705856e-05
wikipedia_url   : -
====================
name            : canary wharf tfltrafficnews road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c120>
salience        : 5.379469075705856e-05
wikipedia_url   : -
====================
name            : museumchat highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c170>
salience        : 5.369523205445148e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c210>
salience        : 5.3646239393856376e-05
wikipedia_url   : -
====================
name            : hotel facade
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c300>
salience        : 5.3509465942624956e-05
wikipedia_url   : -
====================
name            : code
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c350>
salience        : 5.3509465942624956e-05
wikipedia_url   : -
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3a0>
salience        : 5.3481420764001086e-05
wikipedia_url   : -
====================
name            : pop bar
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c440>
salience        : 5.3481420764001086e-05
wikipedia_url   : -
====================
name            : river health
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c4e0>
salience        : 5.3481420764001086e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c580>
salience        : 5.341315409168601e-05
wikipedia_url   : -
====================
name            : pop bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c670>
salience        : 5.340388815966435e-05
wikipedia_url   : -
====================
name            : code
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c710>
salience        : 5.335690366337076e-05
wikipedia_url   : -
====================
name            : movement
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c7b0>
salience        : 5.335690366337076e-05
wikipedia_url   : -
====================
name            : movement
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a760>
salience        : 5.3334628319134936e-05
wikipedia_url   : -
====================
name            : finishes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8a0>
salience        : 5.329224586603232e-05
wikipedia_url   : -
====================
name            : hotel facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa30>
salience        : 5.327205144567415e-05
wikipedia_url   : -
====================
name            : visitlondon info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab20>
salience        : 5.326225436874665e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ada0>
salience        : 5.319703268469311e-05
wikipedia_url   : -
====================
name            : bit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae90>
salience        : 5.319703268469311e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40030>
salience        : 5.318595503922552e-05
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40080>
salience        : 5.315320231602527e-05
wikipedia_url   : -
====================
name            : surrealism
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a401c0>
salience        : 5.312981011229567e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40300>
salience        : 5.312775101629086e-05
wikipedia_url   : -
====================
name            : citycruises sightseeing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403a0>
salience        : 5.3106989071238786e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a404e0>
salience        : 5.309228799887933e-05
wikipedia_url   : -
====================
name            : festival granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40620>
salience        : 5.308903200784698e-05
wikipedia_url   : -
====================
name            : installation granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40670>
salience        : 5.3081559599377215e-05
wikipedia_url   : -
====================
name            : phone
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a407b0>
salience        : 5.3050225687911734e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a409e0>
salience        : 5.2789062465308234e-05
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b20>
salience        : 5.2765382861252874e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40bc0>
salience        : 5.257277734926902e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c10>
salience        : 5.257277734926902e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40cb0>
salience        : 5.251252878224477e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40da0>
salience        : 5.2440460422076285e-05
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e40>
salience        : 5.24336464877706e-05
wikipedia_url   : -
====================
name            : piece
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f80>
salience        : 5.24336464877706e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb0d0>
salience        : 5.237355799181387e-05
wikipedia_url   : -
====================
name            : piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb1c0>
salience        : 5.226810753811151e-05
wikipedia_url   : -
====================
name            : plans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb260>
salience        : 5.2211045840522274e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb350>
salience        : 5.20369503647089e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb490>
salience        : 5.20369503647089e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb530>
salience        : 5.202895408729091e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb670>
salience        : 5.202716783969663e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8a0>
salience        : 5.202716783969663e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba30>
salience        : 5.2017530833836645e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb70>
salience        : 5.200803934712894e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debcb0>
salience        : 5.197143764235079e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debda0>
salience        : 5.197143764235079e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf80>
salience        : 5.194530967855826e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99170>
salience        : 5.194530967855826e-05
wikipedia_url   : -
====================
name            : cirquebijou lumierelondon visitlondon aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99350>
salience        : 5.175272963242605e-05
wikipedia_url   : -
====================
name            : amp space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a994e0>
salience        : 5.173838508198969e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a996c0>
salience        : 5.1667979278136045e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99850>
salience        : 5.161928493180312e-05
wikipedia_url   : -
====================
name            : wind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998f0>
salience        : 5.160561340744607e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a80>
salience        : 5.156629777047783e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c10>
salience        : 5.154139216756448e-05
wikipedia_url   : -
====================
name            : westminsterabbey thelightofthespirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99cb0>
salience        : 5.132639125804417e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99da0>
salience        : 5.1318012992851436e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ee0>
salience        : 5.1277234888402745e-05
wikipedia_url   : -
====================
name            : hand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f30>
salience        : 5.118962872074917e-05
wikipedia_url   : -
====================
name            : ukinargentina es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e770d0>
salience        : 5.09953242726624e-05
wikipedia_url   : -
====================
name            : check tonight photo credit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77170>
salience        : 5.0959893997060135e-05
wikipedia_url   : -
====================
name            : gt visitlondon inlondon visitlondon mikebloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77260>
salience        : 5.091199273010716e-05
wikipedia_url   : -
====================
name            : makeover
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77350>
salience        : 5.0905306125059724e-05
wikipedia_url   : -
====================
name            : city world
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77490>
salience        : 5.085179873276502e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77620>
salience        : 5.083150608697906e-05
wikipedia_url   : -
====================
name            : menus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e776c0>
salience        : 5.083150608697906e-05
wikipedia_url   : -
====================
name            : smitf_london worry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77710>
salience        : 5.078678441350348e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e779e0>
salience        : 5.076558227301575e-05
wikipedia_url   : -
====================
name            : photo credit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b20>
salience        : 5.070601764600724e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b70>
salience        : 5.0700531573966146e-05
wikipedia_url   : -
====================
name            : roamingrequired
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d00>
salience        : 5.06873766425997e-05
wikipedia_url   : -
====================
name            : westminster ukinargentina es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77df0>
salience        : 5.068174141342752e-05
wikipedia_url   : -
====================
name            : check tonight photo credit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e90>
salience        : 5.066928133601323e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f30>
salience        : 5.063657954451628e-05
wikipedia_url   : -
====================
name            : moon death star
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc0d0>
salience        : 5.0634211220312864e-05
wikipedia_url   : -
====================
name            : moon death star
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc1c0>
salience        : 5.0634211220312864e-05
wikipedia_url   : -
====================
name            : bridge warming
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc260>
salience        : 5.061798219685443e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc300>
salience        : 5.059500108473003e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc440>
salience        : 5.059500108473003e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e821c0>
salience        : 5.0575217755977064e-05
wikipedia_url   : -
====================
name            : crowds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e823a0>
salience        : 5.0532849854789674e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82850>
salience        : 5.0522390665719286e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82990>
salience        : 5.051210246165283e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a30>
salience        : 5.0501988880569115e-05
wikipedia_url   : -
====================
name            : voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82bc0>
salience        : 5.0501988880569115e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d00>
salience        : 5.050189793109894e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e40>
salience        : 5.050189793109894e-05
wikipedia_url   : -
====================
name            : drug overdoses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f80>
salience        : 5.050189793109894e-05
wikipedia_url   : -
====================
name            : dancer feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a618a0>
salience        : 5.046311343903653e-05
wikipedia_url   : -
====================
name            : aichoketrust biggsytravels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61b20>
salience        : 5.0462622311897576e-05
wikipedia_url   : -
====================
name            : congratulations friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61d00>
salience        : 5.0444559747120366e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f080>
salience        : 5.0444559747120366e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f3a0>
salience        : 5.042655175202526e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f440>
salience        : 5.040905671194196e-05
wikipedia_url   : -
====================
name            : traffic flows
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f620>
salience        : 5.039401366957463e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f800>
salience        : 5.0240876589668915e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fc60>
salience        : 5.020291428081691e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ff30>
salience        : 5.018121737521142e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5120>
salience        : 5.0169401220045984e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5620>
salience        : 5.015344140701927e-05
wikipedia_url   : -
====================
name            : dancer feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd57b0>
salience        : 5.013850750401616e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5c60>
salience        : 5.013850750401616e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5f80>
salience        : 5.013850750401616e-05
wikipedia_url   : -
====================
name            : friend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c2b0>
salience        : 5.009491360397078e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c940>
salience        : 5.0054230086971074e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cb70>
salience        : 5.004573904443532e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cee0>
salience        : 5.004125341656618e-05
wikipedia_url   : -
====================
name            : installation music
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f760>
salience        : 5.004125341656618e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f030>
salience        : 5.004125341656618e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f4e0>
salience        : 5.004125341656618e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f800>
salience        : 5.004125341656618e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fbc0>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e232b0>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e233f0>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23530>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23620>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e237b0>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23940>
salience        : 5.002854595659301e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23a80>
salience        : 5.001609679311514e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23bc0>
salience        : 4.9980211770161986e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23c60>
salience        : 4.9946327635552734e-05
wikipedia_url   : -
====================
name            : wrap warm
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23e40>
salience        : 4.974833791493438e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813a0>
salience        : 4.9734175263438374e-05
wikipedia_url   : -
====================
name            : theatre home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a308f0>
salience        : 4.973065369995311e-05
wikipedia_url   : -
====================
name            : wrap warm
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30cb0>
salience        : 4.9719837988959625e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c6c0>
salience        : 4.967518543708138e-05
wikipedia_url   : -
====================
name            : drinks
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c850>
salience        : 4.966938286088407e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c940>
salience        : 4.966938286088407e-05
wikipedia_url   : -
====================
name            : commute home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca30>
salience        : 4.965026892023161e-05
wikipedia_url   : -
====================
name            : theatre home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb20>
salience        : 4.965026892023161e-05
wikipedia_url   : -
====================
name            : opening night highlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb70>
salience        : 4.9621554353507236e-05
wikipedia_url   : -
====================
name            : garden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cc60>
salience        : 4.96049651701469e-05
wikipedia_url   : -
====================
name            : theatre home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cd50>
salience        : 4.96049651701469e-05
wikipedia_url   : -
====================
name            : views
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cda0>
salience        : 4.960264413966797e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ce40>
salience        : 4.9596299504628405e-05
wikipedia_url   : -
====================
name            : miguel chevalier origin world bubble
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cee0>
salience        : 4.957102282787673e-05
wikipedia_url   : -
====================
name            : exhibits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cf80>
salience        : 4.954098767484538e-05
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85080>
salience        : 4.935200558975339e-05
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85120>
salience        : 4.935200558975339e-05
wikipedia_url   : -
====================
name            : trumble gardens
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a851c0>
salience        : 4.933661693939939e-05
wikipedia_url   : -
====================
name            : origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85210>
salience        : 4.9321613914798945e-05
wikipedia_url   : -
====================
name            : origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85260>
salience        : 4.9321613914798945e-05
wikipedia_url   : -
====================
name            : installations projections
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a852b0>
salience        : 4.9321613914798945e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a853a0>
salience        : 4.927872942062095e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85490>
salience        : 4.927872942062095e-05
wikipedia_url   : -
====================
name            : balloons
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85580>
salience        : 4.926509063807316e-05
wikipedia_url   : -
====================
name            : installations projections
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a855d0>
salience        : 4.926509063807316e-05
wikipedia_url   : -
====================
name            : fields wheat
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a856c0>
salience        : 4.924246240989305e-05
wikipedia_url   : -
====================
name            : balloons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85760>
salience        : 4.923871165374294e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a857b0>
salience        : 4.922594234813005e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85800>
salience        : 4.922594234813005e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85850>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a858a0>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a858f0>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85940>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85990>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a859e0>
salience        : 4.921344225294888e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85a80>
salience        : 4.918919876217842e-05
wikipedia_url   : -
====================
name            : food drink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85b20>
salience        : 4.9177433538716286e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85bc0>
salience        : 4.893958612228744e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85c60>
salience        : 4.893958612228744e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85d00>
salience        : 4.8918187530944124e-05
wikipedia_url   : -
====================
name            : sight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85d50>
salience        : 4.8918187530944124e-05
wikipedia_url   : -
====================
name            : festivaloflights wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85df0>
salience        : 4.8888752644415945e-05
wikipedia_url   : -
====================
name            : parking paner qpark_uk offering
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85e40>
salience        : 4.885621092398651e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85ee0>
salience        : 4.874175283475779e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon sadiqkhan wabbey smitf_london et al lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85f80>
salience        : 4.873107172898017e-05
wikipedia_url   : -
====================
name            : walk station
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd080>
salience        : 4.8702342610340565e-05
wikipedia_url   : -
====================
name            : daan roosegaarde granarysquare aichoketrust kingscrossn1c whatson wabbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd120>
salience        : 4.863277354161255e-05
wikipedia_url   : -
====================
name            : london londonlumiere lumierelondon visitlondon lumierelondon2018 londonislovinit wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd1c0>
salience        : 4.854912549490109e-05
wikipedia_url   : -
====================
name            : piccadilly lightupthenight seethelight lightupthesky illuminations lumierelondon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd260>
salience        : 4.854912549490109e-05
wikipedia_url   : -
====================
name            : royalacademy wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd300>
salience        : 4.848745811614208e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd3a0>
salience        : 4.846056253882125e-05
wikipedia_url   : -
====================
name            : holbid regentst_assoc grosvenor_gbi thecrownestate cedricleborgne wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd440>
salience        : 4.844238355872221e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd4e0>
salience        : 4.8393470933660865e-05
wikipedia_url   : -
====================
name            : tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd530>
salience        : 4.836863809032366e-05
wikipedia_url   : -
====================
name            : tfltravelales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd5d0>
salience        : 4.833324783248827e-05
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd620>
salience        : 4.830645048059523e-05
wikipedia_url   : -
====================
name            : stjames
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd6c0>
salience        : 4.815647116629407e-05
wikipedia_url   : -
====================
name            : bbcwthrwatchers joclarke7 cindyannemunro luketaplin42 __revel girlaboutthames barnet_foe cathpaget catrionacurrie nico1a_ mayoroflondon wanstead_meteo alanbarrierea bbcweather metoffice westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd760>
salience        : 4.8119272832991555e-05
wikipedia_url   : -
====================
name            : member businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd800>
salience        : 4.809713936992921e-05
wikipedia_url   : -
====================
name            : snapyourworld mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd850>
salience        : 4.800282113137655e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd8f0>
salience        : 4.7993959015002474e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd990>
salience        : 4.7993959015002474e-05
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfda80>
salience        : 4.7993959015002474e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdad0>
salience        : 4.799040107172914e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdb20>
salience        : 4.7980123781599104e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdb70>
salience        : 4.7980123781599104e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdbc0>
salience        : 4.7980123781599104e-05
wikipedia_url   : -
====================
name            : wave brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdc10>
salience        : 4.7980123781599104e-05
wikipedia_url   : -
====================
name            : roamingrequired promo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdcb0>
salience        : 4.7970777814043686e-05
wikipedia_url   : -
====================
name            : sea food restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdd50>
salience        : 4.797002111445181e-05
wikipedia_url   : -
====================
name            : aichoketrust outdooras london lumierelondon mikebloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfddf0>
salience        : 4.7962046664906666e-05
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfde90>
salience        : 4.795032873516902e-05
wikipedia_url   : -
====================
name            : rest
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdf30>
salience        : 4.7931276640156284e-05
wikipedia_url   : -
====================
name            : rest
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab030>
salience        : 4.7931276640156284e-05
wikipedia_url   : -
====================
name            : music video images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab0d0>
salience        : 4.7927009291015565e-05
wikipedia_url   : -
====================
name            : sculpture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab1c0>
salience        : 4.7927009291015565e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture shemyslocs publica aichoketrust outdooras london lumierelondon lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab260>
salience        : 4.791816172655672e-05
wikipedia_url   : -
====================
name            : microwave background maps galaxy surveys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab2b0>
salience        : 4.784824341186322e-05
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab3a0>
salience        : 4.783011172548868e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab440>
salience        : 4.783011172548868e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab4e0>
salience        : 4.783011172548868e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab580>
salience        : 4.7812529373914e-05
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab670>
salience        : 4.7812529373914e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab710>
salience        : 4.7812529373914e-05
wikipedia_url   : -
====================
name            : op ed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab7b0>
salience        : 4.779545997735113e-05
wikipedia_url   : -
====================
name            : cities
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab8a0>
salience        : 4.779545997735113e-05
wikipedia_url   : -
====================
name            : ceo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab940>
salience        : 4.779545997735113e-05
wikipedia_url   : -
====================
name            : lumiere update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab990>
salience        : 4.7778878069948405e-05
wikipedia_url   : -
====================
name            : guests
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daba80>
salience        : 4.7762754547875375e-05
wikipedia_url   : -
====================
name            : guests
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabb70>
salience        : 4.7747067583259195e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabc10>
salience        : 4.760178126161918e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabcb0>
salience        : 4.759467265103012e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabd50>
salience        : 4.757386341225356e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabdf0>
salience        : 4.7567089495714754e-05
wikipedia_url   : -
====================
name            : closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabe90>
salience        : 4.75603919767309e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabee0>
salience        : 4.754722976940684e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabf80>
salience        : 4.754722976940684e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8080>
salience        : 4.754722976940684e-05
wikipedia_url   : -
====================
name            : catch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df80d0>
salience        : 4.743448516819626e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df81c0>
salience        : 4.7400379116879776e-05
wikipedia_url   : -
====================
name            : iphonephotography amateurphotography visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8260>
salience        : 4.714580063591711e-05
wikipedia_url   : -
====================
name            : rainbow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8300>
salience        : 4.7067642299225554e-05
wikipedia_url   : -
====================
name            : view
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8350>
salience        : 4.7047651605680585e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8440>
salience        : 4.700965291704051e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8490>
salience        : 4.700053614214994e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8580>
salience        : 4.698272459791042e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8670>
salience        : 4.6974022552603856e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8760>
salience        : 4.6974022552603856e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8800>
salience        : 4.696545147453435e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df88a0>
salience        : 4.696545147453435e-05
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8940>
salience        : 4.694868403021246e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8a30>
salience        : 4.694048402598128e-05
wikipedia_url   : -
====================
name            : coat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8ad0>
salience        : 4.6927951188990846e-05
wikipedia_url   : -
====================
name            : patrice warrener pa
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8b70>
salience        : 4.6897130232537165e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8c60>
salience        : 4.6709268644917756e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8d00>
salience        : 4.668796464102343e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8df0>
salience        : 4.665312735596672e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8ee0>
salience        : 4.663991785491817e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8f80>
salience        : 4.663960135076195e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34080>
salience        : 4.660203921957873e-05
wikipedia_url   : -
====================
name            : trail
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34120>
salience        : 4.660203921957873e-05
wikipedia_url   : -
====================
name            : rain
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34170>
salience        : 4.652241477742791e-05
wikipedia_url   : -
====================
name            : rainbow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34210>
salience        : 4.649144102586433e-05
wikipedia_url   : -
====================
name            : piccadilly lumierelondon wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a342b0>
salience        : 4.6478417061734945e-05
wikipedia_url   : -
====================
name            : public
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a343a0>
salience        : 4.6466509957099333e-05
wikipedia_url   : -
====================
name            : justefe2 southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34440>
salience        : 4.617713057086803e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a344e0>
salience        : 4.6170756831998006e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34580>
salience        : 4.616386286215857e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34670>
salience        : 4.615032594301738e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34710>
salience        : 4.614367935573682e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a347b0>
salience        : 4.613710552803241e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34800>
salience        : 4.613061173586175e-05
wikipedia_url   : -
====================
name            : cross congrats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34850>
salience        : 4.613061173586175e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a348f0>
salience        : 4.6117846068227664e-05
wikipedia_url   : -
====================
name            : congratulations friends
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34990>
salience        : 4.6117846068227664e-05
wikipedia_url   : -
====================
name            : mickfusion durhamcathedral
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34a30>
salience        : 4.6117846068227664e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34a80>
salience        : 4.611156691680662e-05
wikipedia_url   : -
====================
name            : piccadilly london nightout lumierelondon tracyemin
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34b20>
salience        : 4.608902600011788e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34bc0>
salience        : 4.605706999427639e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ce40>
salience        : 4.6047993237152696e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66530>
salience        : 4.601309046847746e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66a80>
salience        : 4.60046976513695e-05
wikipedia_url   : -
====================
name            : 21st lovelondon londonlove wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66df0>
salience        : 4.599378371494822e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e971c0>
salience        : 4.594920756062493e-05
wikipedia_url   : -
====================
name            : visitlondon piccadillycircus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19df0>
salience        : 4.593142875819467e-05
wikipedia_url   : -
====================
name            : chinatownlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19ee0>
salience        : 4.5660814066650346e-05
wikipedia_url   : -
====================
name            : royalacademy rhyscoren
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a19490>
salience        : 4.562720641843043e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0da0>
salience        : 4.5610766392201185e-05
wikipedia_url   : -
====================
name            : work technician
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1170>
salience        : 4.559191074804403e-05
wikipedia_url   : -
====================
name            : form production manager ian bone technicians
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db1990>
salience        : 4.559191074804403e-05
wikipedia_url   : -
====================
name            : finery hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7b710>
salience        : 4.554481347440742e-05
wikipedia_url   : -
====================
name            : grosvenor_ldn
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095030>
salience        : 4.554059705697e-05
wikipedia_url   : -
====================
name            : technicians
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd530>
salience        : 4.554038241622038e-05
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbd670>
salience        : 4.5461034460458905e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbddf0>
salience        : 4.543232353171334e-05
wikipedia_url   : -
====================
name            : ball
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdf30>
salience        : 4.539841029327363e-05
wikipedia_url   : -
====================
name            : masterpiece projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83170>
salience        : 4.539186920737848e-05
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e836c0>
salience        : 4.537270069704391e-05
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83b20>
salience        : 4.537270069704391e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc4e0>
salience        : 4.5360284275375307e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc670>
salience        : 4.5075867092236876e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc7b0>
salience        : 4.499126225709915e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc8f0>
salience        : 4.4898515625391155e-05
wikipedia_url   : -
====================
name            : walk station
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfca80>
salience        : 4.482929944060743e-05
wikipedia_url   : -
====================
name            : alifestylerebel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcb70>
salience        : 4.480684219743125e-05
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcc60>
salience        : 4.476821777643636e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcee0>
salience        : 4.475389505387284e-05
wikipedia_url   : -
====================
name            : lumiere lumierelondon lumieremayfair wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec0d0>
salience        : 4.47507445642259e-05
wikipedia_url   : -
====================
name            : content
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec260>
salience        : 4.473994340514764e-05
wikipedia_url   : -
====================
name            : leytonstonebell wabbey wayhay wabbey wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec3f0>
salience        : 4.473792796488851e-05
wikipedia_url   : -
====================
name            : pleeeeeease wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec530>
salience        : 4.473163062357344e-05
wikipedia_url   : -
====================
name            : event book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec760>
salience        : 4.472633736440912e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec8f0>
salience        : 4.465115853236057e-05
wikipedia_url   : -
====================
name            : lumierelondon london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec9e0>
salience        : 4.465115853236057e-05
wikipedia_url   : -
====================
name            : lumierelondon london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decad0>
salience        : 4.4639578845817596e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decc60>
salience        : 4.4638840336119756e-05
wikipedia_url   : -
====================
name            : tick list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decda0>
salience        : 4.4638840336119756e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dece40>
salience        : 4.459559204406105e-05
wikipedia_url   : -
====================
name            : community groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decf80>
salience        : 4.458361945580691e-05
wikipedia_url   : -
====================
name            : home gym
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0260>
salience        : 4.458361945580691e-05
wikipedia_url   : -
====================
name            : mass happenings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0300>
salience        : 4.458361945580691e-05
wikipedia_url   : -
====================
name            : tfltravelales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0440>
salience        : 4.458161856746301e-05
wikipedia_url   : -
====================
name            : lumierelondon2018 lumierelondon westminsterabbey lumiere thelightofthespirit patricewarrener aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0530>
salience        : 4.4572469050763175e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea06c0>
salience        : 4.4564789277501404e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0710>
salience        : 4.4564789277501404e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea08a0>
salience        : 4.455490125110373e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea09e0>
salience        : 4.455490125110373e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0ad0>
salience        : 4.454819281818345e-05
wikipedia_url   : -
====================
name            : shift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0b70>
salience        : 4.4531312596518546e-05
wikipedia_url   : -
====================
name            : community groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0c60>
salience        : 4.449904736247845e-05
wikipedia_url   : -
====================
name            : reimagining field wheat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0cb0>
salience        : 4.448361141839996e-05
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0da0>
salience        : 4.448361141839996e-05
wikipedia_url   : -
====================
name            : child hood v2
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0ee0>
salience        : 4.44686011178419e-05
wikipedia_url   : -
====================
name            : treat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0f30>
salience        : 4.445839658728801e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e0d0>
salience        : 4.445839658728801e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e210>
salience        : 4.402084960020147e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e300>
salience        : 4.402084960020147e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e440>
salience        : 4.402084960020147e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e5d0>
salience        : 4.400277612148784e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e6c0>
salience        : 4.397676093503833e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e8a0>
salience        : 4.397676093503833e-05
wikipedia_url   : -
====================
name            : oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ea80>
salience        : 4.397676093503833e-05
wikipedia_url   : -
====================
name            : logo design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ebc0>
salience        : 4.394393545226194e-05
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ecb0>
salience        : 4.389287641970441e-05
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ed50>
salience        : 4.389093010104261e-05
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ee40>
salience        : 4.383577106636949e-05
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ef30>
salience        : 4.3704232666641474e-05
wikipedia_url   : -
====================
name            : light installations london lumiere impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c030>
salience        : 4.3704232666641474e-05
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c260>
salience        : 4.3704232666641474e-05
wikipedia_url   : -
====================
name            : child hood illumaphonium amp impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c2b0>
salience        : 4.354964039521292e-05
wikipedia_url   : -
====================
name            : photo oppounities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3f0>
salience        : 4.352939868113026e-05
wikipedia_url   : -
====================
name            : lumierelondon southbank waterloo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c530>
salience        : 4.3331350752850994e-05
wikipedia_url   : -
====================
name            : visitlondon wabbey sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c620>
salience        : 4.329803050495684e-05
wikipedia_url   : -
====================
name            : quebeeria nigelblakephoto
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c760>
salience        : 4.329602234065533e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a4e0>
salience        : 4.300613363739103e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac60>
salience        : 4.293713209335692e-05
wikipedia_url   : -
====================
name            : wander
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40120>
salience        : 4.29067513323389e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40760>
salience        : 4.29067513323389e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a80>
salience        : 4.288913623895496e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb030>
salience        : 4.288913623895496e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3a0>
salience        : 4.288913623895496e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb850>
salience        : 4.288913623895496e-05
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debbc0>
salience        : 4.288054697099142e-05
wikipedia_url   : -
====================
name            : gt visitlondon inlondon visitlondon tfltph
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe40>
salience        : 4.270888166502118e-05
wikipedia_url   : -
====================
name            : seat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99080>
salience        : 4.2667721572797745e-05
wikipedia_url   : -
====================
name            : bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99580>
salience        : 4.259815250406973e-05
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99990>
salience        : 4.259815250406973e-05
wikipedia_url   : -
====================
name            : mayoroflondon royalacademy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ad0>
salience        : 4.258364424458705e-05
wikipedia_url   : -
====================
name            : capital miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77030>
salience        : 4.257191903889179e-05
wikipedia_url   : -
====================
name            : fitzrovia royalacademy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e771c0>
salience        : 4.2567986383801326e-05
wikipedia_url   : -
====================
name            : bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77440>
salience        : 4.2534902604529634e-05
wikipedia_url   : -
====================
name            : greetings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77580>
salience        : 4.2534902604529634e-05
wikipedia_url   : -
====================
name            : tower bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82260>
salience        : 4.2534902604529634e-05
wikipedia_url   : -
====================
name            : durhamcathedral mickfusion aichoketrust wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e827b0>
salience        : 4.251698555890471e-05
wikipedia_url   : -
====================
name            : aichoketrust wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a610d0>
salience        : 4.251698555890471e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61e40>
salience        : 4.251161954016425e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f760>
salience        : 4.251161954016425e-05
wikipedia_url   : -
====================
name            : daan roosegaarde wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fb70>
salience        : 4.2504365410422906e-05
wikipedia_url   : -
====================
name            : westminster london wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fda0>
salience        : 4.2492047214182094e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5440>
salience        : 4.246798198437318e-05
wikipedia_url   : -
====================
name            : visitbritain visitlondon loveuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5a30>
salience        : 4.24562422267627e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c120>
salience        : 4.2449264583410695e-05
wikipedia_url   : -
====================
name            : green
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1c440>
salience        : 4.243751027388498e-05
wikipedia_url   : -
====================
name            : mission
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cbc0>
salience        : 4.24087411374785e-05
wikipedia_url   : -
====================
name            : visitlondon visitlondon createvictoria
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1cd00>
salience        : 4.23991987190675e-05
wikipedia_url   : -
====================
name            : visitbritain visitlondon loveuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f170>
salience        : 4.23957098973915e-05
wikipedia_url   : -
====================
name            : lumierelondon umusicuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6fa80>
salience        : 4.2200099414912984e-05
wikipedia_url   : -
====================
name            : site umusicuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23490>
salience        : 4.217410969431512e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34c60>
salience        : 4.20704236603342e-05
wikipedia_url   : -
====================
name            : technicians
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34d50>
salience        : 4.20587784901727e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34df0>
salience        : 4.2053055949509144e-05
wikipedia_url   : -
====================
name            : check blog spots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34e40>
salience        : 4.179713869234547e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34ee0>
salience        : 4.169391831965186e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34f80>
salience        : 4.169391831965186e-05
wikipedia_url   : -
====================
name            : amp socket shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d080>
salience        : 4.168583109276369e-05
wikipedia_url   : -
====================
name            : umbrella performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d0d0>
salience        : 4.168583109276369e-05
wikipedia_url   : -
====================
name            : umbrella performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d120>
salience        : 4.1677871195133775e-05
wikipedia_url   : -
====================
name            : night sky
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d210>
salience        : 4.166231519775465e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d2b0>
salience        : 4.165471546002664e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d3a0>
salience        : 4.165471546002664e-05
wikipedia_url   : -
====================
name            : rates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d3f0>
salience        : 4.161664401181042e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d490>
salience        : 4.150873064645566e-05
wikipedia_url   : -
====================
name            : desk lamps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d530>
salience        : 4.138969961786643e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d5d0>
salience        : 4.136599090998061e-05
wikipedia_url   : -
====================
name            : lamps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d620>
salience        : 4.132168032811023e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d6c0>
salience        : 4.130090746912174e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d7b0>
salience        : 4.130090746912174e-05
wikipedia_url   : -
====================
name            : theatre
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d8a0>
salience        : 4.12908339058049e-05
wikipedia_url   : -
====================
name            : light designs performances
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d8f0>
salience        : 4.12908339058049e-05
wikipedia_url   : -
====================
name            : tag seesaw
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d990>
salience        : 4.1261773731093854e-05
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d9e0>
salience        : 4.1232764488086104e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dad0>
salience        : 4.119308869121596e-05
wikipedia_url   : -
====================
name            : event book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dbc0>
salience        : 4.1134066123049706e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk watelicht daan roosegaarde
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dc60>
salience        : 4.090653237653896e-05
wikipedia_url   : -
====================
name            : eucharist
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dd00>
salience        : 4.0863160393200815e-05
wikipedia_url   : -
====================
name            : ears
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dd50>
salience        : 4.07928746426478e-05
wikipedia_url   : -
====================
name            : ears
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dda0>
salience        : 4.07928746426478e-05
wikipedia_url   : -
====================
name            : swimming
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9de40>
salience        : 4.075099786859937e-05
wikipedia_url   : -
====================
name            : hat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9de90>
salience        : 4.0712387999519706e-05
wikipedia_url   : -
====================
name            : visitlondon visitbritain visitengland timeoutlondon mayoroflondon londonist wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9df30>
salience        : 4.0646980778547004e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def030>
salience        : 4.058245394844562e-05
wikipedia_url   : -
====================
name            : stmainbells pink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def080>
salience        : 4.056837497046217e-05
wikipedia_url   : -
====================
name            : festival firmdale_hotels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def120>
salience        : 4.055468525621109e-05
wikipedia_url   : -
====================
name            : festival firmdale_hotels
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def1c0>
salience        : 4.0541366615798324e-05
wikipedia_url   : -
====================
name            : aichoketrust experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def210>
salience        : 4.035373422084376e-05
wikipedia_url   : -
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def260>
salience        : 4.032639481010847e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def300>
salience        : 4.018588879262097e-05
wikipedia_url   : -
====================
name            : music patterns sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def350>
salience        : 4.018207982880995e-05
wikipedia_url   : -
====================
name            : power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def3a0>
salience        : 4.0157337934942916e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def440>
salience        : 4.0157337934942916e-05
wikipedia_url   : -
====================
name            : transform experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def490>
salience        : 4.0157337934942916e-05
wikipedia_url   : -
====================
name            : music patterns sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def4e0>
salience        : 4.0133785660145804e-05
wikipedia_url   : -
====================
name            : hand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def530>
salience        : 4.0133785660145804e-05
wikipedia_url   : -
====================
name            : hotel café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def5d0>
salience        : 4.012242061435245e-05
wikipedia_url   : -
====================
name            : sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def620>
salience        : 4.0049522795015946e-05
wikipedia_url   : -
====================
name            : café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def6c0>
salience        : 4.0049522795015946e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def710>
salience        : 4.00289791286923e-05
wikipedia_url   : -
====================
name            : mark
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def760>
salience        : 4.001229171990417e-05
wikipedia_url   : -
====================
name            : market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def800>
salience        : 4.0003415051614866e-05
wikipedia_url   : -
====================
name            : mark
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def850>
salience        : 3.999469481641427e-05
wikipedia_url   : -
====================
name            : solomongreyband
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def8f0>
salience        : 3.9944621676113456e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def940>
salience        : 3.9896363887237385e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def9e0>
salience        : 3.939811358577572e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defa80>
salience        : 3.9364069380098954e-05
wikipedia_url   : -
====================
name            : halo canary wharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defb20>
salience        : 3.919129812857136e-05
wikipedia_url   : -
====================
name            : canary wharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defc10>
salience        : 3.919129812857136e-05
wikipedia_url   : -
====================
name            : canary wharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defd00>
salience        : 3.919129812857136e-05
wikipedia_url   : -
====================
name            : halo canary wharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defda0>
salience        : 3.919129812857136e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon lumierelondon2018 picadilly circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defdf0>
salience        : 3.916915011359379e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defee0>
salience        : 3.91688481613528e-05
wikipedia_url   : -
====================
name            : scenes
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0030>
salience        : 3.91688481613528e-05
wikipedia_url   : -
====================
name            : church
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0120>
salience        : 3.916339483112097e-05
wikipedia_url   : -
====================
name            : wander
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd01c0>
salience        : 3.916339483112097e-05
wikipedia_url   : -
====================
name            : wanderlust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0260>
salience        : 3.9158006984507665e-05
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd02b0>
salience        : 3.9119004213716835e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0350>
salience        : 3.910640225512907e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd03f0>
salience        : 3.909111183020286e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0490>
salience        : 3.909111183020286e-05
wikipedia_url   : -
====================
name            : light pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd04e0>
salience        : 3.9076297980500385e-05
wikipedia_url   : -
====================
name            : light pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0530>
salience        : 3.906906204065308e-05
wikipedia_url   : -
====================
name            : cameralabs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd05d0>
salience        : 3.9054906665114686e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0620>
salience        : 3.9054906665114686e-05
wikipedia_url   : -
====================
name            : rambedance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd06c0>
salience        : 3.90411660191603e-05
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0760>
salience        : 3.9014816138660535e-05
wikipedia_url   : -
====================
name            : pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0800>
salience        : 3.9014816138660535e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0850>
salience        : 3.882493547280319e-05
wikipedia_url   : -
====================
name            : rambedance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd08f0>
salience        : 3.882493547280319e-05
wikipedia_url   : -
====================
name            : treasure hunt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd09e0>
salience        : 3.881341399392113e-05
wikipedia_url   : -
====================
name            : duke street visitlondon anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0a80>
salience        : 3.88021653634496e-05
wikipedia_url   : -
====================
name            : wander
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0b20>
salience        : 3.8785088690929115e-05
wikipedia_url   : -
====================
name            : wander
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0bc0>
salience        : 3.8785088690929115e-05
wikipedia_url   : -
====================
name            : break
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0c10>
salience        : 3.8761085306759924e-05
wikipedia_url   : -
====================
name            : visitlondon loveuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0c60>
salience        : 3.87357322324533e-05
wikipedia_url   : -
====================
name            : canon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0d00>
salience        : 3.8684702303726226e-05
wikipedia_url   : -
====================
name            : canon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0da0>
salience        : 3.866768747684546e-05
wikipedia_url   : -
====================
name            : parking london car parks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0e40>
salience        : 3.817019023699686e-05
wikipedia_url   : -
====================
name            : bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0ee0>
salience        : 3.8108712033135816e-05
wikipedia_url   : -
====================
name            : sky
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0f80>
salience        : 3.8108712033135816e-05
wikipedia_url   : -
====================
name            : servants
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a760d0>
salience        : 3.808188921539113e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76170>
salience        : 3.807670873356983e-05
wikipedia_url   : -
====================
name            : lumière lumiere2018 lumierelondon nightriderbike
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76210>
salience        : 3.8061418308643624e-05
wikipedia_url   : -
====================
name            : eye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76260>
salience        : 3.7697769585065544e-05
wikipedia_url   : -
====================
name            : hayward gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76300>
salience        : 3.768969691009261e-05
wikipedia_url   : -
====================
name            : pit stop
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a763a0>
salience        : 3.768969691009261e-05
wikipedia_url   : -
====================
name            : plan journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76440>
salience        : 3.768735041376203e-05
wikipedia_url   : -
====================
name            : light installation wildlife flowers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76490>
salience        : 3.768176247831434e-05
wikipedia_url   : -
====================
name            : adult tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76530>
salience        : 3.766629015444778e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a765d0>
salience        : 3.764402208616957e-05
wikipedia_url   : -
====================
name            : closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76670>
salience        : 3.7636222259607166e-05
wikipedia_url   : -
====================
name            : moon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76710>
salience        : 3.760915933526121e-05
wikipedia_url   : -
====================
name            : south bank selection
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a767b0>
salience        : 3.758944876608439e-05
wikipedia_url   : -
====================
name            : south bank selection
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76850>
salience        : 3.758944876608439e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a768f0>
salience        : 3.7410736695164815e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76990>
salience        : 3.7410736695164815e-05
wikipedia_url   : -
====================
name            : enjoyment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76a30>
salience        : 3.739483508979902e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76b20>
salience        : 3.737660517799668e-05
wikipedia_url   : -
====================
name            : look programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76b70>
salience        : 3.73248549294658e-05
wikipedia_url   : -
====================
name            : conce
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76bc0>
salience        : 3.7287321902113035e-05
wikipedia_url   : -
====================
name            : spirit chapter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76c10>
salience        : 3.726108116097748e-05
wikipedia_url   : -
====================
name            : action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76cb0>
salience        : 3.726108116097748e-05
wikipedia_url   : -
====================
name            : lapse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76d00>
salience        : 3.7252659240039065e-05
wikipedia_url   : -
====================
name            : hayward gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76da0>
salience        : 3.7252659240039065e-05
wikipedia_url   : -
====================
name            : lapse
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76df0>
salience        : 3.7244390114210546e-05
wikipedia_url   : -
====================
name            : lapse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76e40>
salience        : 3.7244390114210546e-05
wikipedia_url   : -
====================
name            : gasholderldn beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76ee0>
salience        : 3.7236273783491924e-05
wikipedia_url   : -
====================
name            : eye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76f30>
salience        : 3.7236273783491924e-05
wikipedia_url   : -
====================
name            : amadeus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a080>
salience        : 3.713444675668143e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Amadeus_(film)
====================
name            : croydon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a120>
salience        : 3.699640728882514e-05
wikipedia_url   : -
====================
name            : cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a1c0>
salience        : 3.6979425203753635e-05
wikipedia_url   : -
====================
name            : cars
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a260>
salience        : 3.697390275192447e-05
wikipedia_url   : -
====================
name            : croydon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a300>
salience        : 3.693201870191842e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a3a0>
salience        : 3.6785324482480064e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a440>
salience        : 3.6252215068088844e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a4e0>
salience        : 3.618344635469839e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a580>
salience        : 3.616562025854364e-05
wikipedia_url   : -
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a5d0>
salience        : 3.61118909495417e-05
wikipedia_url   : -
====================
name            : planning guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a6c0>
salience        : 3.610428757383488e-05
wikipedia_url   : -
====================
name            : promo code
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a760>
salience        : 3.6096815165365115e-05
wikipedia_url   : -
====================
name            : promo code
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a800>
salience        : 3.6096815165365115e-05
wikipedia_url   : -
====================
name            : tickets door use link amp code
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a8a0>
salience        : 3.608946644817479e-05
wikipedia_url   : -
====================
name            : organisers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a990>
salience        : 3.607512917369604e-05
wikipedia_url   : -
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a9e0>
salience        : 3.607512917369604e-05
wikipedia_url   : -
====================
name            : deco lighting exterior
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1aa30>
salience        : 3.606124300858937e-05
wikipedia_url   : -
====================
name            : website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1aad0>
salience        : 3.604120865929872e-05
wikipedia_url   : -
====================
name            : deco lighting exterior
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ab20>
salience        : 3.6028341128258035e-05
wikipedia_url   : -
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ab70>
salience        : 3.6022047424921766e-05
wikipedia_url   : -
====================
name            : visitlondon lightfestival travelblogger lumierelondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ac10>
salience        : 3.596212263801135e-05
wikipedia_url   : -
====================
name            : dinner mildredslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1acb0>
salience        : 3.588702020351775e-05
wikipedia_url   : -
====================
name            : eucharist preacher rev
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ad50>
salience        : 3.588702020351775e-05
wikipedia_url   : -
====================
name            : prayer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e236c0>
salience        : 3.588702020351775e-05
wikipedia_url   : -
====================
name            : liturgy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e239e0>
salience        : 3.588702020351775e-05
wikipedia_url   : -
====================
name            : city gdifestival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23b20>
salience        : 3.585608283174224e-05
wikipedia_url   : -
====================
name            : pint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23da0>
salience        : 3.584491423680447e-05
wikipedia_url   : -
====================
name            : admiraltylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e23ee0>
salience        : 3.584491423680447e-05
wikipedia_url   : -
====================
name            : swing bar drink dance zillanights dj
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9710>
salience        : 3.582529097911902e-05
wikipedia_url   : -
====================
name            : thames pulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30ad0>
salience        : 3.580651537049562e-05
wikipedia_url   : -
====================
name            : bop
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85030>
salience        : 3.580651537049562e-05
wikipedia_url   : -
====================
name            : planning guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85300>
salience        : 3.579139229259454e-05
wikipedia_url   : -
====================
name            : news
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85350>
salience        : 3.579139229259454e-05
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a853f0>
salience        : 3.579139229259454e-05
wikipedia_url   : -
====================
name            : cosmologists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85530>
salience        : 3.5768876841757447e-05
wikipedia_url   : -
====================
name            : city kaybuxton
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85670>
salience        : 3.575786467990838e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85a30>
salience        : 3.575786467990838e-05
wikipedia_url   : -
====================
name            : bit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85ad0>
salience        : 3.57439712388441e-05
wikipedia_url   : -
====================
name            : wall jars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85c10>
salience        : 3.573859066818841e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85e90>
salience        : 3.573664071154781e-05
wikipedia_url   : -
====================
name            : comfo amp style
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85f30>
salience        : 3.573507638066076e-05
wikipedia_url   : -
====================
name            : kid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd0d0>
salience        : 3.5723147448152304e-05
wikipedia_url   : -
====================
name            : iphone camera
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd210>
salience        : 3.572137575247325e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd2b0>
salience        : 3.572137575247325e-05
wikipedia_url   : -
====================
name            : fish tank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd490>
salience        : 3.570823173504323e-05
wikipedia_url   : -
====================
name            : gym training session
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd580>
salience        : 3.566633677110076e-05
wikipedia_url   : -
====================
name            : joy division
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd7b0>
salience        : 3.5653221857501194e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd8a0>
salience        : 3.5643075534608215e-05
wikipedia_url   : -
====================
name            : highlighter pen
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd940>
salience        : 3.5616107197711244e-05
wikipedia_url   : -
====================
name            : crime
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd9e0>
salience        : 3.559302058420144e-05
wikipedia_url   : -
====================
name            : elton john
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdd00>
salience        : 3.54340772901196e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Elton_John
====================
name            : bloombergdotorg pattiharris
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfde40>
salience        : 3.527685839799233e-05
wikipedia_url   : -
====================
name            : sta fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdf80>
salience        : 3.524721978465095e-05
wikipedia_url   : -
====================
name            : daan roosegaarde waterlicht a publica lumiere lumierelondon sonyproeurope sonyuk sonyrxmoments sony rx1r2 rx1rii rx1rm2
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab120>
salience        : 3.5239070712123066e-05
wikipedia_url   : -
====================
name            : bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab210>
salience        : 3.484047556412406e-05
wikipedia_url   : -
====================
name            : ppl
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab350>
salience        : 3.4813780075637624e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab490>
salience        : 3.478744110907428e-05
wikipedia_url   : -
====================
name            : grosvenor square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab5d0>
salience        : 3.45841035596095e-05
wikipedia_url   : -
====================
name            : power use relief
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab620>
salience        : 3.45656335412059e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab760>
salience        : 3.452646706136875e-05
wikipedia_url   : -
====================
name            : thisislondon visitlondon piccadillycircus regentstreet bloombergdotorg 2018
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab850>
salience        : 3.44933032465633e-05
wikipedia_url   : -
====================
name            : meletispix
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab9e0>
salience        : 3.4482513001421466e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabad0>
salience        : 3.4467077057342976e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabc60>
salience        : 3.445017500780523e-05
wikipedia_url   : -
====================
name            : traffic flows
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabda0>
salience        : 3.439902502577752e-05
wikipedia_url   : -
====================
name            : tablet photograph light spirit chapter
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabf30>
salience        : 3.4394237445667386e-05
wikipedia_url   : -
====================
name            : tgjenkins
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8120>
salience        : 3.4394237445667386e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df82b0>
salience        : 3.438950443523936e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df83f0>
salience        : 3.438950443523936e-05
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df84e0>
salience        : 3.438482235651463e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8620>
salience        : 3.4372409572824836e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df87b0>
salience        : 3.4372409572824836e-05
wikipedia_url   : -
====================
name            : set
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8850>
salience        : 3.436516999499872e-05
wikipedia_url   : -
====================
name            : help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df88f0>
salience        : 3.4330754715483636e-05
wikipedia_url   : -
====================
name            : cultureteam help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8990>
salience        : 3.4324199077673256e-05
wikipedia_url   : -
====================
name            : round
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df89e0>
salience        : 3.4324199077673256e-05
wikipedia_url   : -
====================
name            : lumierelondon aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8b20>
salience        : 3.4317745303269476e-05
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8bc0>
salience        : 3.4317745303269476e-05
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8c10>
salience        : 3.4311389754293486e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8da0>
salience        : 3.430512879276648e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8e90>
salience        : 3.430512879276648e-05
wikipedia_url   : -
====================
name            : set
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8f30>
salience        : 3.428689160500653e-05
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34030>
salience        : 3.426375042181462e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a341c0>
salience        : 3.423283851589076e-05
wikipedia_url   : -
====================
name            : kingscross
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34350>
salience        : 3.4215710911666974e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Kings_Cross,_London
====================
name            : marriottcountyhall credit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a343f0>
salience        : 3.412891965126619e-05
wikipedia_url   : -
====================
name            : cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34490>
salience        : 3.410736462683417e-05
wikipedia_url   : -
====================
name            : delight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a345d0>
salience        : 3.409699274925515e-05
wikipedia_url   : -
====================
name            : thinkingcity addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34620>
salience        : 3.409699274925515e-05
wikipedia_url   : -
====================
name            : thinkingcity addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a346c0>
salience        : 3.408687189221382e-05
wikipedia_url   : -
====================
name            : adventure guests
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a348a0>
salience        : 3.405320239835419e-05
wikipedia_url   : -
====================
name            : charity
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34ad0>
salience        : 3.403968003112823e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34b70>
salience        : 3.402221045689657e-05
wikipedia_url   : -
====================
name            : thinkingcity addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34c10>
salience        : 3.402221045689657e-05
wikipedia_url   : -
====================
name            : addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c8f0>
salience        : 3.40054502885323e-05
wikipedia_url   : -
====================
name            : embankment
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a668a0>
salience        : 3.39893413183745e-05
wikipedia_url   : -
====================
name            : addition
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1080>
salience        : 3.39893413183745e-05
wikipedia_url   : -
====================
name            : hyde park corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db14e0>
salience        : 3.3981516025960445e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098da0>
salience        : 3.3973836252698675e-05
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdb20>
salience        : 3.3781361707951874e-05
wikipedia_url   : -
====================
name            : city light well woh
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbdc10>
salience        : 3.376393942744471e-05
wikipedia_url   : -
====================
name            : eye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e833a0>
salience        : 3.356194793013856e-05
wikipedia_url   : -
====================
name            : piccadillycircus timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e83940>
salience        : 3.331640618853271e-05
wikipedia_url   : -
====================
name            : cyclists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc580>
salience        : 3.321317853988148e-05
wikipedia_url   : -
====================
name            : euflagmafia paulj71 state camera roll
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfc850>
salience        : 3.2984436984406784e-05
wikipedia_url   : -
====================
name            : state camera roll
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfcbc0>
salience        : 3.2984436984406784e-05
wikipedia_url   : -
====================
name            : hot chocolate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfce40>
salience        : 3.29730573866982e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec1c0>
salience        : 3.29543836414814e-05
wikipedia_url   : -
====================
name            : holbid regentst_assoc grosvenor_gbi thecrownestate cedricleborgne
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec5d0>
salience        : 3.2820018532220274e-05
wikipedia_url   : -
====================
name            : piccadilly lightupthenight seethelight lightupthesky
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dec800>
salience        : 3.2559491955908015e-05
wikipedia_url   : -
====================
name            : visitlondon meletispix
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decb70>
salience        : 3.2422867661807686e-05
wikipedia_url   : -
====================
name            : pre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decd00>
salience        : 3.24093307426665e-05
wikipedia_url   : -
====================
name            : pre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19decee0>
salience        : 3.24093307426665e-05
wikipedia_url   : -
====================
name            : chinatownlondon pop china exchange
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea01c0>
salience        : 3.234424730180763e-05
wikipedia_url   : -
====================
name            : canary wharf hhsharingey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea04e0>
salience        : 3.232698145438917e-05
wikipedia_url   : -
====================
name            : gloom
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea05d0>
salience        : 3.22632331517525e-05
wikipedia_url   : -
====================
name            : mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0620>
salience        : 3.2187523174798116e-05
wikipedia_url   : -
====================
name            : morvan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea08f0>
salience        : 3.218289202777669e-05
wikipedia_url   : -
====================
name            : cubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0990>
salience        : 3.218289202777669e-05
wikipedia_url   : -
====================
name            : panorama
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0bc0>
salience        : 3.218289202777669e-05
wikipedia_url   : -
====================
name            : heath
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea0d50>
salience        : 3.217285484424792e-05
wikipedia_url   : -
====================
name            : lantern company
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e030>
salience        : 3.217285484424792e-05
wikipedia_url   : -
====================
name            : cubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e170>
salience        : 3.214420939912088e-05
wikipedia_url   : -
====================
name            : panorama
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e3a0>
salience        : 3.214420939912088e-05
wikipedia_url   : -
====================
name            : morvan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2e800>
salience        : 3.214420939912088e-05
wikipedia_url   : -
====================
name            : stars
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ea30>
salience        : 3.214420939912088e-05
wikipedia_url   : -
====================
name            : tfl update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ec60>
salience        : 3.210068462067284e-05
wikipedia_url   : -
====================
name            : tflbusales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c8a0>
salience        : 3.2092531910166144e-05
wikipedia_url   : -
====================
name            : tflbusales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c9e0>
salience        : 3.2092531910166144e-05
wikipedia_url   : -
====================
name            : tips
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca80>
salience        : 3.206904875696637e-05
wikipedia_url   : -
====================
name            : cakes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cad0>
salience        : 3.206904875696637e-05
wikipedia_url   : -
====================
name            : fonumandmason
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ccb0>
salience        : 3.203978849342093e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cdf0>
salience        : 3.201136860297993e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c1c0>
salience        : 3.1880052119959146e-05
wikipedia_url   : -
====================
name            : blockchain modc fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c490>
salience        : 3.159032348776236e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c6c0>
salience        : 3.1486768421018496e-05
wikipedia_url   : -
====================
name            : sadiqkhan kingscrossn1c lumierelondon johncullenlight
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a2b0>
salience        : 3.148079485981725e-05
wikipedia_url   : -
====================
name            : conorjsilk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a990>
salience        : 3.1413077522302046e-05
wikipedia_url   : -
====================
name            : amp aether
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40440>
salience        : 3.1398656574310735e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40850>
salience        : 3.137577368761413e-05
wikipedia_url   : -
====================
name            : thorntonheath
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d50>
salience        : 3.137577368761413e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb120>
salience        : 3.136699160677381e-05
wikipedia_url   : -
====================
name            : wonderdullondon li playlondongame
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb580>
salience        : 3.136119994451292e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb710>
salience        : 3.134967482765205e-05
wikipedia_url   : -
====================
name            : meletispix
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba80>
salience        : 3.1267059966921806e-05
wikipedia_url   : -
====================
name            : fly tower
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99440>
salience        : 3.098860906902701e-05
wikipedia_url   : -
====================
name            : round
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99760>
salience        : 3.061662209802307e-05
wikipedia_url   : -
====================
name            : wabbey pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b70>
salience        : 3.0229490221245214e-05
wikipedia_url   : -
====================
name            : glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773a0>
salience        : 3.0193124985089526e-05
wikipedia_url   : -
====================
name            : banana tree
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a80>
salience        : 3.0193124985089526e-05
wikipedia_url   : -
====================
name            : jcf traffic mate
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e824e0>
salience        : 3.0133069230942056e-05
wikipedia_url   : -
====================
name            : tribute
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a619e0>
salience        : 3.00912324746605e-05
wikipedia_url   : -
====================
name            : triangle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f940>
salience        : 3.0063716621953063e-05
wikipedia_url   : -
====================
name            : mabiennale brynskov ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3f530>
salience        : 3.001370896527078e-05
wikipedia_url   : -
====================
name            : scrub
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fad0>
salience        : 2.9927216019132175e-05
wikipedia_url   : -
====================
name            : scrub
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3fd50>
salience        : 2.9894445106037892e-05
wikipedia_url   : -
====================
name            : scrub
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ff80>
salience        : 2.9894445106037892e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5260>
salience        : 2.9864384487154894e-05
wikipedia_url   : -
====================
name            : onealdwych celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd56c0>
salience        : 2.9830000130459666e-05
wikipedia_url   : -
====================
name            : ian bone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1adf0>
salience        : 2.982349724334199e-05
wikipedia_url   : -
====================
name            : firstaid pingpongdimsum
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ae40>
salience        : 2.979664714075625e-05
wikipedia_url   : -
====================
name            : solomongreyband hotelcaferoyal
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1aee0>
salience        : 2.9636028557433747e-05
wikipedia_url   : -
====================
name            : microwave background maps galaxy surveys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1af30>
salience        : 2.9631379220518284e-05
wikipedia_url   : -
====================
name            : halo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1af80>
salience        : 2.9608989279950038e-05
wikipedia_url   : -
====================
name            : kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38030>
salience        : 2.9596192689496092e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a380d0>
salience        : 2.9583836294477805e-05
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38170>
salience        : 2.9485943741747178e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a381c0>
salience        : 2.94714882329572e-05
wikipedia_url   : -
====================
name            : parking london car parks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38260>
salience        : 2.9470331355696544e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38350>
salience        : 2.9246402846183628e-05
wikipedia_url   : -
====================
name            : visitlondon def
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a383a0>
salience        : 2.923409192590043e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a383f0>
salience        : 2.911943374783732e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38440>
salience        : 2.911542651418131e-05
wikipedia_url   : -
====================
name            : visitlondon nigelblakephoto
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a384e0>
salience        : 2.901721018133685e-05
wikipedia_url   : -
====================
name            : mischiefmovienight
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38580>
salience        : 2.866119029931724e-05
wikipedia_url   : -
====================
name            : ldn_gov
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38620>
salience        : 2.839560511347372e-05
wikipedia_url   : https://en.wikipedia.org/wiki/.gov
====================
name            : thisislondon visitlondon piccadillycircus regentstreet hotelcaferoyal
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a386c0>
salience        : 2.838006184902042e-05
wikipedia_url   : -
====================
name            : dancer feet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38760>
salience        : 2.8259109967621043e-05
wikipedia_url   : -
====================
name            : animals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38800>
salience        : 2.825001865858212e-05
wikipedia_url   : -
====================
name            : park entre les rangs
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a388a0>
salience        : 2.8223872504895553e-05
wikipedia_url   : -
====================
name            : londonchurches lumierelondon brightnights lightsoflondon thisislondon mydarlinglondon londondisclosure london_only liveloveldnt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38940>
salience        : 2.821435009536799e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38a30>
salience        : 2.813054197758902e-05
wikipedia_url   : -
====================
name            : sadiq paulj71
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38b20>
salience        : 2.811925696732942e-05
wikipedia_url   : -
====================
name            : westminster london paulj71
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38bc0>
salience        : 2.809876241371967e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38c60>
salience        : 2.791421502479352e-05
wikipedia_url   : -
====================
name            : kingscrossuk kingscrossn1c waterlicht
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38d00>
salience        : 2.769116690615192e-05
wikipedia_url   : -
====================
name            : alanstweets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38da0>
salience        : 2.762357507890556e-05
wikipedia_url   : -
====================
name            : tunnels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38e40>
salience        : 2.7562828108784743e-05
wikipedia_url   : -
====================
name            : child hood v2
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38ee0>
salience        : 2.7562828108784743e-05
wikipedia_url   : -
====================
name            : fab
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38f30>
salience        : 2.7554933694773354e-05
wikipedia_url   : -
====================
name            : tour guide night group
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b030>
salience        : 2.7554933694773354e-05
wikipedia_url   : -
====================
name            : grade ii
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b0d0>
salience        : 2.7545725970412605e-05
wikipedia_url   : -
====================
name            : hare
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b120>
salience        : 2.7543428586795926e-05
wikipedia_url   : -
====================
name            : fyahmed
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b1c0>
salience        : 2.7539679649635218e-05
wikipedia_url   : -
====================
name            : wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b210>
salience        : 2.7539679649635218e-05
wikipedia_url   : -
====================
name            : bananatree
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b2b0>
salience        : 2.7535636036191136e-05
wikipedia_url   : -
====================
name            : eyes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b300>
salience        : 2.7529737053555436e-05
wikipedia_url   : -
====================
name            : link
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b350>
salience        : 2.750713065324817e-05
wikipedia_url   : -
====================
name            : grade ii
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b3f0>
salience        : 2.7501198928803205e-05
wikipedia_url   : -
====================
name            : outfit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b490>
salience        : 2.7480864446260966e-05
wikipedia_url   : -
====================
name            : outfit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b530>
salience        : 2.7480864446260966e-05
wikipedia_url   : -
====================
name            : grade ii
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b5d0>
salience        : 2.747610596998129e-05
wikipedia_url   : -
====================
name            : branding
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b670>
salience        : 2.7475851311464794e-05
wikipedia_url   : -
====================
name            : autism
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b710>
salience        : 2.7461243007564917e-05
wikipedia_url   : -
====================
name            : tales
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b7b0>
salience        : 2.744270932453219e-05
wikipedia_url   : -
====================
name            : refugees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b8a0>
salience        : 2.744270932453219e-05
wikipedia_url   : -
====================
name            : something
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9b990>
salience        : 2.743058757914696e-05
wikipedia_url   : -
====================
name            : takeover
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9ba30>
salience        : 2.7325975679559633e-05
wikipedia_url   : -
====================
name            : residents
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bb20>
salience        : 2.7325975679559633e-05
wikipedia_url   : -
====================
name            : lumierelondon gagansphoto lumixuk panasonicukpr panasonicuk b4rny megtitcombe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bbc0>
salience        : 2.7314474209561013e-05
wikipedia_url   : -
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bc60>
salience        : 2.730104279180523e-05
wikipedia_url   : -
====================
name            : flicker
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bd00>
salience        : 2.730104279180523e-05
wikipedia_url   : -
====================
name            : woolwich arsenal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bd50>
salience        : 2.7285403120913543e-05
wikipedia_url   : -
====================
name            : east
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bdf0>
salience        : 2.7285403120913543e-05
wikipedia_url   : -
====================
name            : pretties
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9be90>
salience        : 2.7270467398921028e-05
wikipedia_url   : -
====================
name            : producer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9bf80>
salience        : 2.7263244191999547e-05
wikipedia_url   : -
====================
name            : realm
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7030>
salience        : 2.7263244191999547e-05
wikipedia_url   : -
====================
name            : glow dark
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd70d0>
salience        : 2.7256173780187964e-05
wikipedia_url   : -
====================
name            : glow dark
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7170>
salience        : 2.7256173780187964e-05
wikipedia_url   : -
====================
name            : weather forecast
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd71c0>
salience        : 2.7216658054385334e-05
wikipedia_url   : -
====================
name            : see levels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7260>
salience        : 2.7216658054385334e-05
wikipedia_url   : -
====================
name            : film
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7300>
salience        : 2.7204469006392173e-05
wikipedia_url   : -
====================
name            : magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7350>
salience        : 2.7198539100936614e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd73f0>
salience        : 2.717841744015459e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7440>
salience        : 2.717841744015459e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd74e0>
salience        : 2.717841744015459e-05
wikipedia_url   : -
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7530>
salience        : 2.714190304686781e-05
wikipedia_url   : -
====================
name            : jamesmemmett
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd75d0>
salience        : 2.7084370231023058e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7670>
salience        : 2.7078134735347703e-05
wikipedia_url   : -
====================
name            : haymarket
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7760>
salience        : 2.706093800952658e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Haymarket,_London
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd77b0>
salience        : 2.690963628992904e-05
wikipedia_url   : -
====================
name            : visitlondon def
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7800>
salience        : 2.6899988370132633e-05
wikipedia_url   : -
====================
name            : visitlondon def
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7850>
salience        : 2.6899988370132633e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd78f0>
salience        : 2.6860587240662426e-05
wikipedia_url   : -
====================
name            : guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7990>
salience        : 2.6826925022760406e-05
wikipedia_url   : -
====================
name            : atgtickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7a30>
salience        : 2.6797668397193775e-05
wikipedia_url   : -
====================
name            : lizziemidd
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7ad0>
salience        : 2.645230051712133e-05
wikipedia_url   : -
====================
name            : laser beams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7b70>
salience        : 2.6402574803796597e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7bc0>
salience        : 2.6284325940650888e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture croydonpaners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7c60>
salience        : 2.611047420941759e-05
wikipedia_url   : -
====================
name            : case
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7cb0>
salience        : 2.5992561859311536e-05
wikipedia_url   : -
====================
name            : lenses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7d50>
salience        : 2.5983146770158783e-05
wikipedia_url   : -
====================
name            : wildlife nature
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7da0>
salience        : 2.590209805930499e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk lumiere london westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7e40>
salience        : 2.587919334473554e-05
wikipedia_url   : -
====================
name            : westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7ee0>
salience        : 2.587546441645827e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Westminster_Cathedral
====================
name            : roamingrequired
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7f30>
salience        : 2.5662529878900386e-05
wikipedia_url   : -
====================
name            : visit britishmuseum
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd7f80>
salience        : 2.558886626502499e-05
wikipedia_url   : -
====================
name            : regentstreet regentstreetw1
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13080>
salience        : 2.5330286007374525e-05
wikipedia_url   : -
====================
name            : camera lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13120>
salience        : 2.5155619368888438e-05
wikipedia_url   : -
====================
name            : canary wharf amichanc
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e131c0>
salience        : 2.5136841941275634e-05
wikipedia_url   : -
====================
name            : todolistldn watelicht daan roosegaarde
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13210>
salience        : 2.5133220333373174e-05
wikipedia_url   : -
====================
name            : yourcroydon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e132b0>
salience        : 2.511573075025808e-05
wikipedia_url   : -
====================
name            : croydon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e133a0>
salience        : 2.4675242457306013e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Croydon
====================
name            : sponsor lanterncompany life size
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e133f0>
salience        : 2.417215182504151e-05
wikipedia_url   : -
====================
name            : fuel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13440>
salience        : 2.417215182504151e-05
wikipedia_url   : -
====================
name            : dining
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e134e0>
salience        : 2.417215182504151e-05
wikipedia_url   : -
====================
name            : fish phone box fave
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13580>
salience        : 2.414333175693173e-05
wikipedia_url   : -
====================
name            : bump
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e135d0>
salience        : 2.4138793378369883e-05
wikipedia_url   : -
====================
name            : metpolice emergencyservices
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13670>
salience        : 2.4134322302415967e-05
wikipedia_url   : -
====================
name            : series
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13760>
salience        : 2.4134322302415967e-05
wikipedia_url   : -
====================
name            : blighty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13800>
salience        : 2.4134322302415967e-05
wikipedia_url   : -
====================
name            : work campus liamgillick
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e138a0>
salience        : 2.4134322302415967e-05
wikipedia_url   : -
====================
name            : antidote
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13940>
salience        : 2.4005972591112368e-05
wikipedia_url   : -
====================
name            : scientist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13a30>
salience        : 2.398351534793619e-05
wikipedia_url   : -
====================
name            : london bestofmayfair brownshotel rfhotels pingpongdimsum
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13ad0>
salience        : 2.3981299818842672e-05
wikipedia_url   : -
====================
name            : ondes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13b20>
salience        : 2.3976395823410712e-05
wikipedia_url   : -
====================
name            : shooting
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13bc0>
salience        : 2.3976395823410712e-05
wikipedia_url   : -
====================
name            : game
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13c10>
salience        : 2.3969447283889167e-05
wikipedia_url   : -
====================
name            : video premiere
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13c60>
salience        : 2.3962660634424537e-05
wikipedia_url   : -
====================
name            : hub
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13cb0>
salience        : 2.3962660634424537e-05
wikipedia_url   : -
====================
name            : phone battery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13d50>
salience        : 2.3962660634424537e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13e40>
salience        : 2.3962660634424537e-05
wikipedia_url   : -
====================
name            : pics repos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e13ee0>
salience        : 2.395602859905921e-05
wikipedia_url   : -
====================
name            : mind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ca30>
salience        : 2.3949543901835568e-05
wikipedia_url   : -
====================
name            : chaos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e6f620>
salience        : 2.3943201085785404e-05
wikipedia_url   : -
====================
name            : spread
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d030>
salience        : 2.3924958441057242e-05
wikipedia_url   : -
====================
name            : bike son
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d260>
salience        : 2.3919123123050667e-05
wikipedia_url   : -
====================
name            : monument
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d350>
salience        : 2.3919123123050667e-05
wikipedia_url   : -
====================
name            : heritage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d4e0>
salience        : 2.3913402401376516e-05
wikipedia_url   : -
====================
name            : vehicle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d710>
salience        : 2.390779263805598e-05
wikipedia_url   : -
====================
name            : globalwarming sdgs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d760>
salience        : 2.390228837612085e-05
wikipedia_url   : -
====================
name            : review sun inn ininin barnes
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d850>
salience        : 2.3891583623480983e-05
wikipedia_url   : -
====================
name            : lunch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9d940>
salience        : 2.3891583623480983e-05
wikipedia_url   : -
====================
name            : youth club
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9da80>
salience        : 2.3781230993336067e-05
wikipedia_url   : -
====================
name            : outing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9db70>
salience        : 2.3593953301315196e-05
wikipedia_url   : -
====================
name            : kingscrossn1c toblerone
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dc10>
salience        : 2.3510647224611603e-05
wikipedia_url   : -
====================
name            : halo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dcb0>
salience        : 2.3430549845215864e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy kaybuxton
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e9dee0>
salience        : 2.2851687390357256e-05
wikipedia_url   : -
====================
name            : collection curate pic
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def0d0>
salience        : 2.2844797058496624e-05
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def3f0>
salience        : 2.2762827939004637e-05
wikipedia_url   : -
====================
name            : environmentfriendlya
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def580>
salience        : 2.2714451915817335e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def7b0>
salience        : 2.2236930817598477e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19def990>
salience        : 2.2092232029535808e-05
wikipedia_url   : -
====================
name            : movie
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defad0>
salience        : 2.2082216673879884e-05
wikipedia_url   : -
====================
name            : defo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defb70>
salience        : 2.2075739252613857e-05
wikipedia_url   : -
====================
name            : husband fibre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defc60>
salience        : 2.207255965913646e-05
wikipedia_url   : -
====================
name            : stage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defcb0>
salience        : 2.2069416445447132e-05
wikipedia_url   : -
====================
name            : angle poise
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defe40>
salience        : 2.2069416445447132e-05
wikipedia_url   : -
====================
name            : bits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19defe90>
salience        : 2.2066309611545876e-05
wikipedia_url   : -
====================
name            : gift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deff30>
salience        : 2.2066309611545876e-05
wikipedia_url   : -
====================
name            : find installation boy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0080>
salience        : 2.206323915743269e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd00d0>
salience        : 2.2062768039177172e-05
wikipedia_url   : -
====================
name            : boyfriend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0300>
salience        : 2.2060203264118172e-05
wikipedia_url   : -
====================
name            : pug
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0440>
salience        : 2.2057200112612918e-05
wikipedia_url   : -
====================
name            : westminster westminsterabbey londonislovinit visitlondon aichoketrust kingscrossn1c whatson
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0670>
salience        : 2.2005740902386606e-05
wikipedia_url   : -
====================
name            : miguelchevalier aichoketrust london oxfordcircus fonum fonumandmason piccadilly leicestersquare newwestend
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd07b0>
salience        : 2.2005740902386606e-05
wikipedia_url   : -
====================
name            : twitter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0940>
salience        : 2.1957090211799368e-05
wikipedia_url   : -
====================
name            : lenses phone screen
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0990>
salience        : 2.1670559362974018e-05
wikipedia_url   : -
====================
name            : globetellers lumierelondon globetellers_uk globetellers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0ad0>
salience        : 2.1301942979334854e-05
wikipedia_url   : -
====================
name            : bestfanarmy trumpshutdown
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0b70>
salience        : 2.129010681528598e-05
wikipedia_url   : -
====================
name            : doublemacbex entre les rangs kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0d50>
salience        : 2.1221843780949712e-05
wikipedia_url   : -
====================
name            : londonisopen lumiere maoldz
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0e90>
salience        : 2.117414987878874e-05
wikipedia_url   : -
====================
name            : visualtreat awork winterfun sparklingcity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd0f30>
salience        : 2.117414987878874e-05
wikipedia_url   : -
====================
name            : london lumiere visitlondon piccadillycircus
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76080>
salience        : 2.1173971617827192e-05
wikipedia_url   : -
====================
name            : londoncity lightfestival toplondonphoto
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a761c0>
salience        : 2.1102219761814922e-05
wikipedia_url   : -
====================
name            : benedettobufalino benoitdeseille sevendials
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76350>
salience        : 2.109341039613355e-05
wikipedia_url   : -
====================
name            : spain
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a764e0>
salience        : 2.109341039613355e-05
wikipedia_url   : -
====================
name            : london londona london4all prettylittlelondon
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76620>
salience        : 2.1060914150439203e-05
wikipedia_url   : -
====================
name            : lewis cubitt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76800>
salience        : 2.1046091205789708e-05
wikipedia_url   : -
====================
name            : lumierelondon londonevents yourukparl
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76940>
salience        : 2.1038989871158265e-05
wikipedia_url   : -
====================
name            : droplets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76a80>
salience        : 2.100046185660176e-05
wikipedia_url   : -
====================
name            : cirquebijou lumierelondon visitlondon aichoketrust ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76ad0>
salience        : 2.0951325495843776e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76e90>
salience        : 2.0915453205816448e-05
wikipedia_url   : -
====================
name            : parking paner qpark_uk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a76f80>
salience        : 2.0729134121211246e-05
wikipedia_url   : -
====================
name            : shoes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a0d0>
salience        : 2.0599778508767486e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a210>
salience        : 2.027784830715973e-05
wikipedia_url   : -
====================
name            : marble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a350>
salience        : 2.0190200302749872e-05
wikipedia_url   : -
====================
name            : mariana
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a530>
salience        : 2.0103161659790203e-05
wikipedia_url   : -
====================
name            : step
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a620>
salience        : 1.929726749949623e-05
wikipedia_url   : -
====================
name            : aist alaaminawi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a670>
salience        : 1.9092121874564327e-05
wikipedia_url   : -
====================
name            : aka 以前ブログで紹介した光のアートの祭典 ルミエール フェスティバルが ロンドン各地で開催中です ルミエール イルミネーション
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a7b0>
salience        : 1.8967264622915536e-05
wikipedia_url   : -
====================
name            : pa tflbusales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1a8f0>
salience        : 1.8957531210617162e-05
wikipedia_url   : -
====================
name            : lumierelondon miguelchevalier aichoketrust london oxfordcircus fonum
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1aa80>
salience        : 1.8926373741123825e-05
wikipedia_url   : -
====================
name            : phone legs
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ad00>
salience        : 1.879342926258687e-05
wikipedia_url   : -
====================
name            : thieves
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e235d0>
salience        : 1.852846980909817e-05
wikipedia_url   : -
====================
name            : lightpainter lomographyuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e231c0>
salience        : 1.8321223251405172e-05
wikipedia_url   : -
====================
name            : deals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21260>
salience        : 1.8134325728169642e-05
wikipedia_url   : -
====================
name            : brain dimensions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a850d0>
salience        : 1.8045748220174573e-05
wikipedia_url   : -
====================
name            : holbid regentst_assoc grosvenor_gbi thecrownestate cedricleborgne atgtickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85170>
salience        : 1.7835509424912743e-05
wikipedia_url   : -
====================
name            : redbridgelive umbrellaproject thisisredbridge mylocalculture atgtickets
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a854e0>
salience        : 1.7810079953051172e-05
wikipedia_url   : -
====================
name            : aopédelondres london visitlondon igerslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85710>
salience        : 1.7801929061533883e-05
wikipedia_url   : -
====================
name            : london londonlumiere lumierelondon visitlondon lumierelondon2018 londonislovinit nationalgallery
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85cb0>
salience        : 1.7645617845118977e-05
wikipedia_url   : -
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85da0>
salience        : 1.76041285158135e-05
wikipedia_url   : -
====================
name            : thornton heath
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd170>
salience        : 1.7473210391472094e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Thornton_Heath
====================
name            : piccadilly london nightout lumierelondon alamynews ivysohobrass
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd3f0>
salience        : 1.6272515495074913e-05
wikipedia_url   : -
====================
name            : anthony18334957 gardenafilm bbc4 bbcpm bbcbreakfast bbcqt nhs lumiere lumiere2018 lumierelondon totp borisbridge
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfd710>
salience        : 1.6233318092417903e-05
wikipedia_url   : -
====================
name            : gardenafilm bbc4 bbcpm bbcbreakfast bbcqt nhs lumiere lumiere2018 lumierelondon totp borisbridge
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdc60>
salience        : 1.6233318092417903e-05
wikipedia_url   : -
====================
name            : festivaloflights ivysohobrass
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dfdee0>
salience        : 1.623035677766893e-05
wikipedia_url   : -
====================
name            : përfundon nesër kështu e kanë qytetet ku punohet ku njerëzit nuk ëndërrojnë ikë nga
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab170>
salience        : 1.6109032003441826e-05
wikipedia_url   : -
====================
name            : miq nëse ndodheni në londër ndani lexuesit tonë pamjet nga festivali
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab300>
salience        : 1.610059007361997e-05
wikipedia_url   : -
====================
name            : 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab530>
salience        : 1.4947821000532713e-05
wikipedia_url   : -
====================
name            : desse marriottagency mtgsimagined banksvenues มาลอนดอนคราวน โชคด ท มาในช วงจ ดก จกรรม lumierelondon ท นํา
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dab800>
salience        : 1.4846518752165139e-05
wikipedia_url   : -
====================
name            : cheltenham
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabb20>
salience        : 1.4267264305090066e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Cheltenham
====================
name            : lumierelondon clairelhoney
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dabd00>
salience        : 1.4264497622207273e-05
wikipedia_url   : -
====================
name            : totp girlswithvineyards
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8030>
salience        : 1.4253849258238915e-05
wikipedia_url   : -
====================
name            : belfast
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df83a0>
salience        : 1.425128630216932e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Belfast
====================
name            : travellousworld aichoketrust 英国 レスター スクエアには ウサギ キツネ カエルなどの野生動物や草花の巨大なランタンで 夜の都会の中に突如現れた自然といった雰囲気
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df85d0>
salience        : 1.417167550243903e-05
wikipedia_url   : -
====================
name            : westminsterabbey aichoketrust chrissykinsella
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8a80>
salience        : 1.4163160813041031e-05
wikipedia_url   : -
====================
name            : swanglobe fhrs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8cb0>
salience        : 1.4113060387899168e-05
wikipedia_url   : -
====================
name            : lumierelondon thomsc
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df8e40>
salience        : 1.3394027519098017e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy amichanc
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34cb0>
salience        : 1.3040408703091089e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk du_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34d00>
salience        : 1.3036673408350907e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk justinesimons1
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34e90>
salience        : 1.3033024515607394e-05
wikipedia_url   : -
====================
name            : piccadilly london nightout lumierelondon lumierelondon kellyjoannet
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a340d0>
salience        : 1.3031230082560796e-05
wikipedia_url   : -
====================
name            : rami bebawi _kanvae
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34300>
salience        : 1.3017800483794417e-05
wikipedia_url   : -
====================
name            : lumierelondon granarysquare kingscross cassieldotcom cosmoscope
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34760>
salience        : 1.2498248906922527e-05
wikipedia_url   : -
====================
name            : heaps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a34940>
salience        : 1.2371495358820539e-05
wikipedia_url   : -
====================
name            : เก ยวก บแสงส มาจ ดแสดงบนถนนท ป ดให กลายเป นถนนคนเด นในช วงค ํา และเพล ดเพล นก บงานศ ลป ก น
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c1c0>
salience        : 1.1644967344182078e-05
wikipedia_url   : -
====================
name            : west end
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a66c10>
salience        : 1.0816690519277472e-05
wikipedia_url   : https://en.wikipedia.org/wiki/West_End_of_London
In [106]:
text = sentence_tokenized3
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

entities = language_client.analyze_entities(document).entities

# entity types from enums.Entity.Type
entity_type = ('UNKNOWN', 'PERSON', 'LOCATION', 'ORGANIZATION',
                   'EVENT', 'WORK_OF_ART', 'CONSUMER_GOOD', 'OTHER')

for entity in entities:
        print('=' * 20)
        print(u'{:<16}: {}'.format('name', entity.name))
        print(u'{:<16}: {}'.format('type', entity_type[entity.type]))
        print(u'{:<16}: {}'.format('metadata', entity.metadata))
        print(u'{:<16}: {}'.format('salience', entity.salience))
        print(u'{:<16}: {}'.format('wikipedia_url',
              entity.metadata.get('wikipedia_url', '-')))
====================
name            : lumierelondon launches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1bfff030>
salience        : 0.23870991170406342
wikipedia_url   : -
====================
name            : wabbey rcwestminster
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6d00>
salience        : 0.19787846505641937
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002bc0>
salience        : 0.07720915228128433
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0026c0>
salience        : 0.05016437917947769
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002f30>
salience        : 0.02112237736582756
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002df0>
salience        : 0.020113440230488777
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4b20>
salience        : 0.012803211808204651
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4800>
salience        : 0.012458081357181072
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4a30>
salience        : 0.0073283156380057335
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6b20>
salience        : 0.006524272728711367
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6bc0>
salience        : 0.004213158041238785
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c60>
salience        : 0.003992314916104078
wikipedia_url   : -
====================
name            : dot installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d68f0>
salience        : 0.003905330318957567
wikipedia_url   : -
====================
name            : instillations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c10>
salience        : 0.003627510741353035
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d69e0>
salience        : 0.003567115403711796
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ad0>
salience        : 0.002835480496287346
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ee0>
salience        : 0.0027510817162692547
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987440>
salience        : 0.002653789473697543
wikipedia_url   : -
====================
name            : lightbulb installation ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987120>
salience        : 0.002620575949549675
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987210>
salience        : 0.0025788070634007454
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229870d0>
salience        : 0.0025387443602085114
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8a0>
salience        : 0.0024605209473520517
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9e080>
salience        : 0.002181478776037693
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d530>
salience        : 0.001991329016163945
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d350>
salience        : 0.001920484472066164
wikipedia_url   : -
====================
name            : bulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8f0>
salience        : 0.001875732559710741
wikipedia_url   : -
====================
name            : aichoke
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01dad0>
salience        : 0.001735406811349094
wikipedia_url   : -
====================
name            : patrice warrener
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad710>
salience        : 0.0017077458323910832
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad3a0>
salience        : 0.0016770507209002972
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad5d0>
salience        : 0.0016144828405231237
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad030>
salience        : 0.0015954289119690657
wikipedia_url   : -
====================
name            : light show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad300>
salience        : 0.0015582608757540584
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad170>
salience        : 0.0015486791962757707
wikipedia_url   : -
====================
name            : telephone box library
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad120>
salience        : 0.0015486000338569283
wikipedia_url   : -
====================
name            : night sky
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad4e0>
salience        : 0.0014698384329676628
wikipedia_url   : -
====================
name            : evening lots
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ade90>
salience        : 0.0013186621945351362
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad260>
salience        : 0.0013059548800811172
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adc60>
salience        : 0.0011689594248309731
wikipedia_url   : -
====================
name            : look
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93080>
salience        : 0.0011158373672515154
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933a0>
salience        : 0.0010977891506627202
wikipedia_url   : -
====================
name            : pages
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a934e0>
salience        : 0.0010858698515221477
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a937b0>
salience        : 0.0010855967411771417
wikipedia_url   : -
====================
name            : visitlondon lumiere london londontheinside london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a80>
salience        : 0.001075329608283937
wikipedia_url   : https://en.wikipedia.org/wiki/London
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93df0>
salience        : 0.0010581995593383908
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93670>
salience        : 0.001056408160366118
wikipedia_url   : -
====================
name            : interview simonings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b70>
salience        : 0.0010333028621971607
wikipedia_url   : -
====================
name            : state
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e40>
salience        : 0.0009917727438732982
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93490>
salience        : 0.0009769989410415292
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ad0>
salience        : 0.0009760643588379025
wikipedia_url   : -
====================
name            : ruth chittock
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93da0>
salience        : 0.0009516874561086297
wikipedia_url   : -
====================
name            : lumierelondon photograghy bloombergdotorg bloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a931c0>
salience        : 0.0009392346837557852
wikipedia_url   : https://en.wikipedia.org/wiki/Bloomberg_L.P.
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93440>
salience        : 0.0009176490711979568
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93850>
salience        : 0.0009009384666569531
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b20>
salience        : 0.000880888313986361
wikipedia_url   : -
====================
name            : piccadilly circus
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a30>
salience        : 0.0008756946190260351
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly_Circus
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a936c0>
salience        : 0.0008681125473231077
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f80>
salience        : 0.0008498659590259194
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93120>
salience        : 0.0008480182732455432
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e90>
salience        : 0.0008436472853645682
wikipedia_url   : -
====================
name            : trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ee0>
salience        : 0.0008129519992507994
wikipedia_url   : https://en.wikipedia.org/wiki/Trafalgar_Square
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a932b0>
salience        : 0.0008057546801865101
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d50>
salience        : 0.000800667388830334
wikipedia_url   : -
====================
name            : canadianuk festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d00>
salience        : 0.0007962227682583034
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93bc0>
salience        : 0.000789963232818991
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3120>
salience        : 0.0007843420025892556
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde35d0>
salience        : 0.0007733867387287319
wikipedia_url   : -
====================
name            : lumierelondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3490>
salience        : 0.0007694529485888779
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3030>
salience        : 0.0007135584019124508
wikipedia_url   : -
====================
name            : visitlondon lumiere london
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3260>
salience        : 0.0007003830978646874
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a80>
salience        : 0.0006926340283825994
wikipedia_url   : -
====================
name            : guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3da0>
salience        : 0.0006850336794741452
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b70>
salience        : 0.0006797373061999679
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a30>
salience        : 0.0006553020793944597
wikipedia_url   : -
====================
name            : umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3670>
salience        : 0.0006516112480312586
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e40>
salience        : 0.000631998700555414
wikipedia_url   : -
====================
name            : pieces
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3cb0>
salience        : 0.0006278295768424869
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d50>
salience        : 0.0006265293341130018
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3580>
salience        : 0.0006228770362213254
wikipedia_url   : -
====================
name            : help plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde30d0>
salience        : 0.0005969729973003268
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38a0>
salience        : 0.000592521857470274
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e90>
salience        : 0.0005909588653594255
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3bc0>
salience        : 0.0005909588653594255
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d00>
salience        : 0.0005842581740580499
wikipedia_url   : -
====================
name            : mayfair
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3440>
salience        : 0.0005842478713020682
wikipedia_url   : https://en.wikipedia.org/wiki/Mayfair
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde36c0>
salience        : 0.0005744080990552902
wikipedia_url   : -
====================
name            : offices
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3710>
salience        : 0.0005685465293936431
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3210>
salience        : 0.0005599671276286244
wikipedia_url   : -
====================
name            : studio
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3300>
salience        : 0.0005564136663451791
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ee0>
salience        : 0.000549101154319942
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a29e0>
salience        : 0.0005460382672026753
wikipedia_url   : -
====================
name            : oxford
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d00>
salience        : 0.0005308989202603698
wikipedia_url   : -
====================
name            : victoria
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a22b0>
salience        : 0.000523938680998981
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a25d0>
salience        : 0.0005194722907617688
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ee0>
salience        : 0.0005143462913110852
wikipedia_url   : -
====================
name            : instagram
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2da0>
salience        : 0.0004959208308719099
wikipedia_url   : https://en.wikipedia.org/wiki/Instagram
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c10>
salience        : 0.0004917482729069889
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a26c0>
salience        : 0.0004905403475277126
wikipedia_url   : -
====================
name            : map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2df0>
salience        : 0.0004831707337871194
wikipedia_url   : -
====================
name            : study
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2030>
salience        : 0.0004817392327822745
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a27b0>
salience        : 0.000469974271254614
wikipedia_url   : -
====================
name            : westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f30>
salience        : 0.00046803755685687065
wikipedia_url   : https://en.wikipedia.org/wiki/Westminster_Abbey
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a30>
salience        : 0.0004670853668358177
wikipedia_url   : -
====================
name            : playlondongame lumierelondon aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2990>
salience        : 0.00045943737495690584
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2300>
salience        : 0.00045788229908794165
wikipedia_url   : -
====================
name            : jmbessieres staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23f0>
salience        : 0.0004517351044341922
wikipedia_url   : -
====================
name            : fridayfeeling fridayfun lumierelondon biggsytravels westminster
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2120>
salience        : 0.0004464584053494036
wikipedia_url   : https://en.wikipedia.org/wiki/City_of_Westminster
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2440>
salience        : 0.00044621413690038025
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c60>
salience        : 0.0004356479039415717
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2710>
salience        : 0.00043315469520166516
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2080>
salience        : 0.0004301051376387477
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2350>
salience        : 0.00042208266677334905
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2620>
salience        : 0.00041695174877531826
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2b20>
salience        : 0.0004160626558586955
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2800>
salience        : 0.00040905026253312826
wikipedia_url   : -
====================
name            : european
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf5d0>
salience        : 0.00040597704355604947
wikipedia_url   : https://en.wikipedia.org/wiki/Europe
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bfcb0>
salience        : 0.0004039052582811564
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf2b0>
salience        : 0.0004023376968689263
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf8a0>
salience        : 0.0004019406624138355
wikipedia_url   : -
====================
name            : night lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf710>
salience        : 0.000391544948797673
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf300>
salience        : 0.0003873280656989664
wikipedia_url   : -
====================
name            : time
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf080>
salience        : 0.00038263920578174293
wikipedia_url   : -
====================
name            : piccadilly wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf1c0>
salience        : 0.0003815634117927402
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d50>
salience        : 0.00038115575443953276
wikipedia_url   : -
====================
name            : programme installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e90>
salience        : 0.00037891248939558864
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b70>
salience        : 0.00037428384530358016
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28a0>
salience        : 0.0003730303142219782
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2760>
salience        : 0.0003656952758319676
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk linguaholidays london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b20>
salience        : 0.0003627650730777532
wikipedia_url   : -
====================
name            : playlondongame london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2cb0>
salience        : 0.0003627650730777532
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ad0>
salience        : 0.0003563657228369266
wikipedia_url   : -
====================
name            : bulb
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd25d0>
salience        : 0.00035278458381071687
wikipedia_url   : -
====================
name            : uk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2710>
salience        : 0.0003526218351908028
wikipedia_url   : https://en.wikipedia.org/wiki/United_Kingdom
====================
name            : chance check aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2da0>
salience        : 0.00035084100090898573
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a80>
salience        : 0.0003482622851151973
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2990>
salience        : 0.00034770811907947063
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c10>
salience        : 0.00034669862361624837
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2df0>
salience        : 0.00034290229086764157
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2940>
salience        : 0.00033777576754800975
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2850>
salience        : 0.00033777576754800975
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d00>
salience        : 0.00033767378772608936
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ee0>
salience        : 0.00033293492742814124
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e40>
salience        : 0.0003321890835650265
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cca80>
salience        : 0.0003260918310843408
wikipedia_url   : -
====================
name            : light designs performances
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc710>
salience        : 0.0003249193832743913
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc3a0>
salience        : 0.0003244683612138033
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9760>
salience        : 0.000320574501529336
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9300>
salience        : 0.000320574501529336
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98a0>
salience        : 0.000320574501529336
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9800>
salience        : 0.0003203771193511784
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9710>
salience        : 0.0003183737862855196
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c60>
salience        : 0.0003178509068675339
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd96c0>
salience        : 0.0003178509068675339
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9670>
salience        : 0.000317390396958217
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd99e0>
salience        : 0.000317390396958217
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9850>
salience        : 0.000316852267133072
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9350>
salience        : 0.00031602507806383073
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9530>
salience        : 0.00031316361855715513
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f30>
salience        : 0.00031038650195114315
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9bc0>
salience        : 0.0003095967695116997
wikipedia_url   : -
====================
name            : leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9260>
salience        : 0.00030685937963426113
wikipedia_url   : https://en.wikipedia.org/wiki/Leicester_Square
====================
name            : design lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd92b0>
salience        : 0.0003062922623939812
wikipedia_url   : -
====================
name            : installation light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c10>
salience        : 0.0003042667522095144
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e90>
salience        : 0.00030343211255967617
wikipedia_url   : -
====================
name            : night lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd95d0>
salience        : 0.00030319116194732487
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f80>
salience        : 0.00030319116194732487
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9da0>
salience        : 0.00030275186873041093
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9440>
salience        : 0.0003023594617843628
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9990>
salience        : 0.0003021779120899737
wikipedia_url   : -
====================
name            : study
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9df0>
salience        : 0.000297051650704816
wikipedia_url   : -
====================
name            : timeout londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e4e0>
salience        : 0.000292962504317984
wikipedia_url   : -
====================
name            : impulse london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e170>
salience        : 0.0002919268445111811
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e940>
salience        : 0.00029111572075635195
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec10>
salience        : 0.0002874593192245811
wikipedia_url   : -
====================
name            : staywellthiswinter londontheinside
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec60>
salience        : 0.000286987196886912
wikipedia_url   : -
====================
name            : king cross london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee40>
salience        : 0.0002867730800062418
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e030>
salience        : 0.0002856228966265917
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e800>
salience        : 0.0002854322374332696
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e120>
salience        : 0.0002852599136531353
wikipedia_url   : -
====================
name            : londonlumiere visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e7b0>
salience        : 0.0002850798482540995
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea30>
salience        : 0.000283926900010556
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209edf0>
salience        : 0.00028392087551765144
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3f0>
salience        : 0.00028347314218990505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef30>
salience        : 0.00028347314218990505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb70>
salience        : 0.00028347314218990505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ecb0>
salience        : 0.00028347314218990505
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eda0>
salience        : 0.0002820617228280753
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e6c0>
salience        : 0.0002820617228280753
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee90>
salience        : 0.0002810645673889667
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f30>
salience        : 0.0002810645673889667
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f80>
salience        : 0.0002810645673889667
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9620>
salience        : 0.0002802935487125069
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d92b0>
salience        : 0.0002802935487125069
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9670>
salience        : 0.0002802935487125069
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d99e0>
salience        : 0.0002796651388052851
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9580>
salience        : 0.0002796651388052851
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9a80>
salience        : 0.0002796651388052851
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d94e0>
salience        : 0.0002791349252220243
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d95d0>
salience        : 0.0002791349252220243
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d98f0>
salience        : 0.0002791349252220243
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9ee0>
salience        : 0.0002786764525808394
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893f0>
salience        : 0.0002786764525808394
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089350>
salience        : 0.0002786764525808394
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220890d0>
salience        : 0.00027827266603708267
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220896c0>
salience        : 0.00027827266603708267
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e90>
salience        : 0.00027827266603708267
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089bc0>
salience        : 0.00027827266603708267
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220899e0>
salience        : 0.00027827266603708267
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089080>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089580>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089530>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089990>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e40>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089210>
salience        : 0.00027791198226623237
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ad0>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089f30>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089df0>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089170>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c10>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220895d0>
salience        : 0.00027758607757277787
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220894e0>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b20>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089670>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089800>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d00>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d00>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3cb0>
salience        : 0.00027728889835998416
wikipedia_url   : -
====================
name            : london nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3490>
salience        : 0.00027724565006792545
wikipedia_url   : -
====================
name            : river roamers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38f0>
salience        : 0.0002771553408820182
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3580>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3620>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3260>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a30>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3800>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc32b0>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33a0>
salience        : 0.00027701581711880863
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3df0>
salience        : 0.00027681083884090185
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9ff80>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6c60>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002b70>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4030>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcc2df0>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6cb0>
salience        : 0.0002767631958704442
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d50>
salience        : 0.00027630862314254045
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6a30>
salience        : 0.0002761024807114154
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229876c0>
salience        : 0.0002761024807114154
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d030>
salience        : 0.0002759082708507776
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d0d0>
salience        : 0.0002755506429821253
wikipedia_url   : -
====================
name            : waterloo
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad760>
salience        : 0.00027541417512111366
wikipedia_url   : https://en.wikipedia.org/wiki/A301_road_(Great_Britain)
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad210>
salience        : 0.0002754117886070162
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ada80>
salience        : 0.0002753851586021483
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad490>
salience        : 0.0002753851586021483
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad6c0>
salience        : 0.0002753851586021483
wikipedia_url   : -
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad8a0>
salience        : 0.00027503713499754667
wikipedia_url   : -
====================
name            : parking event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad850>
salience        : 0.00027371858595870435
wikipedia_url   : -
====================
name            : price entry abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93260>
salience        : 0.00027183469501324
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93940>
salience        : 0.0002717254974413663
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93030>
salience        : 0.0002711032866500318
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c60>
salience        : 0.00027104889159090817
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93990>
salience        : 0.00026112011983059347
wikipedia_url   : -
====================
name            : lewisham
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93580>
salience        : 0.00025948387337848544
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Lewisham
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93350>
salience        : 0.00025932732387445867
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a939e0>
salience        : 0.0002592175151221454
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f30>
salience        : 0.00025880898465402424
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93210>
salience        : 0.0002573502715677023
wikipedia_url   : -
====================
name            : guide things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93710>
salience        : 0.00025559886125847697
wikipedia_url   : -
====================
name            : voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93800>
salience        : 0.0002545967872720212
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3990>
salience        : 0.00025021116016432643
wikipedia_url   : -
====================
name            : pre design london aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33f0>
salience        : 0.0002496480301488191
wikipedia_url   : -
====================
name            : amyelizabethtv london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde32b0>
salience        : 0.000249429460382089
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ad0>
salience        : 0.00024893414229154587
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3850>
salience        : 0.0002481999690644443
wikipedia_url   : -
====================
name            : visit lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38f0>
salience        : 0.0002479211543686688
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde37b0>
salience        : 0.0002479211543686688
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3350>
salience        : 0.00024737350759096444
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33a0>
salience        : 0.00024737350759096444
wikipedia_url   : -
====================
name            : health benefits light pollution light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b20>
salience        : 0.00024704463430680335
wikipedia_url   : -
====================
name            : pa lumierelondon light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde39e0>
salience        : 0.00024704463430680335
wikipedia_url   : -
====================
name            : attend launch festi
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3760>
salience        : 0.00024704463430680335
wikipedia_url   : -
====================
name            : rossbolwill aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3620>
salience        : 0.0002469281607773155
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f80>
salience        : 0.00024681887589395046
wikipedia_url   : -
====================
name            : south bank amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3940>
salience        : 0.00024681887589395046
wikipedia_url   : -
====================
name            : transform giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c10>
salience        : 0.0002465812140144408
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e90>
salience        : 0.0002465697471052408
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a20d0>
salience        : 0.0002465697471052408
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a80>
salience        : 0.00024636686430312693
wikipedia_url   : -
====================
name            : techniciansmakea amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2580>
salience        : 0.00024594622664153576
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ad0>
salience        : 0.0002458144736010581
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2670>
salience        : 0.000245348404860124
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f80>
salience        : 0.000245348404860124
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2170>
salience        : 0.000245348404860124
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2850>
salience        : 0.0002449454041197896
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3760>
salience        : 0.0002449454041197896
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3120>
salience        : 0.0002449454041197896
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f30>
salience        : 0.00024398694222327322
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3300>
salience        : 0.00024398694222327322
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3850>
salience        : 0.0002437257207930088
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc31c0>
salience        : 0.00024341267999261618
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33f0>
salience        : 0.00024305706028826535
wikipedia_url   : -
====================
name            : soho amp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc34e0>
salience        : 0.00024304130056407303
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3bc0>
salience        : 0.00024286401458084583
wikipedia_url   : -
====================
name            : night light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38a0>
salience        : 0.00024286401458084583
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e40>
salience        : 0.00024286401458084583
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7530>
salience        : 0.00024286401458084583
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7300>
salience        : 0.00024286401458084583
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7030>
salience        : 0.0002426828141324222
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b20>
salience        : 0.000242512091062963
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a30>
salience        : 0.00024235072487499565
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7580>
salience        : 0.0002421977260382846
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7080>
salience        : 0.00024205227964557707
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73f0>
salience        : 0.00024205227964557707
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7760>
salience        : 0.00024205227964557707
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc77b0>
salience        : 0.00024205227964557707
wikipedia_url   : -
====================
name            : lumierelondon lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7670>
salience        : 0.0002400956436758861
wikipedia_url   : -
====================
name            : rukiabdi wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7120>
salience        : 0.00023847668489906937
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a80>
salience        : 0.00023794548178557307
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73a0>
salience        : 0.00023727896041236818
wikipedia_url   : -
====================
name            : map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7bc0>
salience        : 0.0002356824988964945
wikipedia_url   : -
====================
name            : cocktail london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7850>
salience        : 0.0002354477037442848
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7620>
salience        : 0.00023137801326811314
wikipedia_url   : -
====================
name            : dot installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7ad0>
salience        : 0.00022976005857344717
wikipedia_url   : -
====================
name            : starburst light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7800>
salience        : 0.00022947153775021434
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7350>
salience        : 0.00022445434296969324
wikipedia_url   : -
====================
name            : visits
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7cb0>
salience        : 0.00022398243891075253
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc75d0>
salience        : 0.00022318403352983296
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc79e0>
salience        : 0.00022158314823172987
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7990>
salience        : 0.00022101905778981745
wikipedia_url   : -
====================
name            : quality
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cea80>
salience        : 0.0002203092008130625
wikipedia_url   : -
====================
name            : facebook
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ced50>
salience        : 0.00021790411847177893
wikipedia_url   : https://en.wikipedia.org/wiki/Facebook
====================
name            : timeoutlondon montréal wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee40>
salience        : 0.00021328459843061864
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceb20>
salience        : 0.00021284080867189914
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cef30>
salience        : 0.0002117228286806494
wikipedia_url   : -
====================
name            : streets architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec10>
salience        : 0.0002109341585310176
wikipedia_url   : -
====================
name            : visit half price entry abbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceee0>
salience        : 0.0002105910680256784
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb20>
salience        : 0.00020926576689817011
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beee0>
salience        : 0.00020921607210766524
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be760>
salience        : 0.0002084388252114877
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be990>
salience        : 0.0002083754661725834
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb70>
salience        : 0.000207739562029019
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beda0>
salience        : 0.000207739562029019
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8f0>
salience        : 0.000207739562029019
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bec10>
salience        : 0.000207739562029019
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee40>
salience        : 0.000207739562029019
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8a0>
salience        : 0.00020670505182351917
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea30>
salience        : 0.00020670505182351917
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea80>
salience        : 0.00020597418188117445
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be120>
salience        : 0.00020597418188117445
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220becb0>
salience        : 0.00020597418188117445
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be210>
salience        : 0.00020573785877786577
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed00>
salience        : 0.00020540905825328082
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed50>
salience        : 0.00020540905825328082
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be0d0>
salience        : 0.00020540905825328082
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee90>
salience        : 0.00020534325449261814
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e210>
salience        : 0.00020494846103247255
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e120>
salience        : 0.00020494846103247255
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e030>
salience        : 0.00020494846103247255
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e490>
salience        : 0.00020455983758438379
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e710>
salience        : 0.00020455983758438379
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec10>
salience        : 0.0002042237902060151
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ebc0>
salience        : 0.0002042237902060151
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e9e0>
salience        : 0.0002042237902060151
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea80>
salience        : 0.0002042237902060151
wikipedia_url   : -
====================
name            : pa head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e800>
salience        : 0.0002039343089563772
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eda0>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e440>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e1c0>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e850>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb70>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee40>
salience        : 0.0002039278479060158
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e4e0>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef80>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207edf0>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e0d0>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e260>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e2b0>
salience        : 0.00020366346871014684
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e300>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb20>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e940>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed00>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef30>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e620>
salience        : 0.00020342461357358843
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3f0>
salience        : 0.0002033592463703826
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed50>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3a0>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec60>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e670>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ecb0>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e990>
salience        : 0.000203206785954535
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e350>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eee0>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e7b0>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea30>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e6c0>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e530>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e080>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e170>
salience        : 0.00020300662436056882
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e580>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ead0>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8a0>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c210>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c120>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c7b0>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c620>
salience        : 0.00020282146579120308
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3f0>
salience        : 0.0002024882851401344
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cee0>
salience        : 0.00020233719260431826
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cda0>
salience        : 0.00020219484576955438
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc10>
salience        : 0.00020193270756863058
wikipedia_url   : -
====================
name            : sarah_wall nightingale berkeley square
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8f0>
salience        : 0.00020184574532322586
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c350>
salience        : 0.00020181143190711737
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c800>
salience        : 0.00020181143190711737
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c6c0>
salience        : 0.00020181143190711737
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce90>
salience        : 0.00020177054102532566
wikipedia_url   : -
====================
name            : pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ccb0>
salience        : 0.0002016757061937824
wikipedia_url   : -
====================
name            : waterlicht kingscross
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c300>
salience        : 0.00020144827431067824
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd50>
salience        : 0.0002013181074289605
wikipedia_url   : -
====================
name            : plan works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc60>
salience        : 0.00020089973986614496
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c5d0>
salience        : 0.00020060627139173448
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cdf0>
salience        : 0.00019969521963503212
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c530>
salience        : 0.00019890148541890085
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce40>
salience        : 0.00019890148541890085
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c710>
salience        : 0.00019890148541890085
wikipedia_url   : -
====================
name            : canadianuk festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb20>
salience        : 0.00019862350018229336
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c990>
salience        : 0.00019835575949400663
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c080>
salience        : 0.000198236622964032
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cbc0>
salience        : 0.00019591831369325519
wikipedia_url   : -
====================
name            : lighting wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c10>
salience        : 0.00019348740170244128
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b70>
salience        : 0.00019287137547507882
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8760>
salience        : 0.00019264468573965132
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8710>
salience        : 0.0001922714727697894
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e40>
salience        : 0.00019184511620551348
wikipedia_url   : -
====================
name            : hit wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c60>
salience        : 0.0001905257231555879
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk aichoketrust london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc86c0>
salience        : 0.00018962667672894895
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc87b0>
salience        : 0.0001885373203549534
wikipedia_url   : -
====================
name            : waterlicht kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc89e0>
salience        : 0.00018841828568838537
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8490>
salience        : 0.00018556549912318587
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8210>
salience        : 0.00018534275295678526
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8bc0>
salience        : 0.00018390432524029166
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8580>
salience        : 0.00018288368301000446
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc80d0>
salience        : 0.0001823414204409346
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc85d0>
salience        : 0.000182214193046093
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8800>
salience        : 0.00018218658806290478
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc84e0>
salience        : 0.00018218281911686063
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8da0>
salience        : 0.00018154237477574497
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a30>
salience        : 0.00018154237477574497
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8990>
salience        : 0.0001814608258428052
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ad0>
salience        : 0.00018143333727493882
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d50>
salience        : 0.0001799186720745638
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d00>
salience        : 0.0001791159447748214
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47df0>
salience        : 0.0001788256922736764
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47080>
salience        : 0.00017807286349125206
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47120>
salience        : 0.00017708145605865866
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47800>
salience        : 0.00017690563981886953
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473a0>
salience        : 0.00017645528714638203
wikipedia_url   : -
====================
name            : story
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47350>
salience        : 0.00017515241052024066
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47440>
salience        : 0.0001745858317008242
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d50>
salience        : 0.00017447560094296932
wikipedia_url   : -
====================
name            : mayfair_ldn kingscrossn1c grosvenor_ldn visitlondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47490>
salience        : 0.0001739669096423313
wikipedia_url   : -
====================
name            : vision
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc474e0>
salience        : 0.00017367351392749697
wikipedia_url   : -
====================
name            : swing thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47030>
salience        : 0.0001731026713969186
wikipedia_url   : -
====================
name            : lumiere2018 carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47670>
salience        : 0.00017278100131079555
wikipedia_url   : -
====================
name            : lateraloffice visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f30>
salience        : 0.0001724229077808559
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47cb0>
salience        : 0.00017155510431621224
wikipedia_url   : -
====================
name            : light photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47260>
salience        : 0.0001711824006633833
wikipedia_url   : -
====================
name            : serve
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc477b0>
salience        : 0.00017048428708221763
wikipedia_url   : -
====================
name            : priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ad0>
salience        : 0.00017000312800519168
wikipedia_url   : -
====================
name            : lights sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc472b0>
salience        : 0.00016944560047704726
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c10>
salience        : 0.0001692105724941939
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a80>
salience        : 0.00016816995048429817
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473f0>
salience        : 0.0001678596599958837
wikipedia_url   : -
====================
name            : chance check aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e90>
salience        : 0.00016681643319316208
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc479e0>
salience        : 0.00016580802912358195
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ee0>
salience        : 0.0001658006658544764
wikipedia_url   : -
====================
name            : check show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47170>
salience        : 0.00016518319898750633
wikipedia_url   : -
====================
name            : granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf580>
salience        : 0.0001630118058528751
wikipedia_url   : -
====================
name            : visit half
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe40>
salience        : 0.0001629632170079276
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb20>
salience        : 0.00016281103307846934
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf940>
salience        : 0.0001627446326892823
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf760>
salience        : 0.00016243687423411757
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf080>
salience        : 0.00016208249144256115
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf350>
salience        : 0.00016198014782276005
wikipedia_url   : -
====================
name            : 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht tgjenkins westminster abbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfda0>
salience        : 0.00016141775995492935
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk tgjenkins westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb70>
salience        : 0.00016061385395005345
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk tgjenkins westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf300>
salience        : 0.00016061385395005345
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk tgjenkins westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf710>
salience        : 0.00016061385395005345
wikipedia_url   : -
====================
name            : game update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf6c0>
salience        : 0.0001599136012373492
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf440>
salience        : 0.00015979513409547508
wikipedia_url   : -
====================
name            : kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd50>
salience        : 0.00015947710198815912
wikipedia_url   : -
====================
name            : aichoketrust visitlondon kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf120>
salience        : 0.00015896542754489928
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf170>
salience        : 0.00015721538511570543
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf620>
salience        : 0.00015548357623629272
wikipedia_url   : -
====================
name            : dg du quebec_uk johncolemanqc entouré de dame judi dench et anne marie paquette du studio l4 une des aistes du québec de l
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2620>
salience        : 0.00015475160034839064
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c60>
salience        : 0.00015438774426002055
wikipedia_url   : -
====================
name            : time
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2f30>
salience        : 0.00015297876961994916
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28f0>
salience        : 0.0001520943915238604
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2580>
salience        : 0.0001502804079791531
wikipedia_url   : -
====================
name            : festival returns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2bc0>
salience        : 0.00014968332834541798
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd24e0>
salience        : 0.00014929170720279217
wikipedia_url   : -
====================
name            : bicycles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ee0>
salience        : 0.00014865712728351355
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9620>
salience        : 0.0001478954218327999
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd97b0>
salience        : 0.00014721819024998695
wikipedia_url   : -
====================
name            : aist sroosegaarde
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e40>
salience        : 0.00014719883620273322
wikipedia_url   : -
====================
name            : city favorite
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9120>
salience        : 0.00014698209997732192
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9cb0>
salience        : 0.0001458304759580642
wikipedia_url   : -
====================
name            : lotiloves
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b70>
salience        : 0.00014559463306795806
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9d50>
salience        : 0.00014498991367872804
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd93f0>
salience        : 0.00014496775111183524
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ad0>
salience        : 0.00014461825776379555
wikipedia_url   : -
====================
name            : umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9030>
salience        : 0.00014446342538576573
wikipedia_url   : -
====================
name            : walk traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9580>
salience        : 0.00014411138545256108
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e9e0>
salience        : 0.00014369114069268107
wikipedia_url   : -
====================
name            : hotel cafe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef80>
salience        : 0.00014346311218105257
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea80>
salience        : 0.00014341155474539846
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb20>
salience        : 0.00014316676242742687
wikipedia_url   : -
====================
name            : london favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eee0>
salience        : 0.00014296331210061908
wikipedia_url   : -
====================
name            : design studio
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e2b0>
salience        : 0.00014173335512168705
wikipedia_url   : -
====================
name            : squareuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e990>
salience        : 0.00014153491065371782
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9e40>
salience        : 0.000141372176585719
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9710>
salience        : 0.0001412487035850063
wikipedia_url   : -
====================
name            : study
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9760>
salience        : 0.00014123214350547642
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d93f0>
salience        : 0.00014108953473623842
wikipedia_url   : -
====================
name            : lumierelondon victorialive canadianuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9490>
salience        : 0.00014076862134970725
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9850>
salience        : 0.0001407551026204601
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089300>
salience        : 0.000140432282933034
wikipedia_url   : -
====================
name            : water
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089260>
salience        : 0.00014038776862435043
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089cb0>
salience        : 0.00014031570754013956
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220892b0>
salience        : 0.00014024759002495557
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893a0>
salience        : 0.00014017170178703964
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898f0>
salience        : 0.00014007116260472685
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089940>
salience        : 0.0001397733431076631
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d50>
salience        : 0.00013967532140668482
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089710>
salience        : 0.00013953771849628538
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089620>
salience        : 0.00013846023648511618
wikipedia_url   : -
====================
name            : lumierelondon souljazzfunk aichoketrust mayoroflondon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6e40>
salience        : 0.00013819125888403505
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c48a0>
salience        : 0.00013811564713250846
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6da0>
salience        : 0.00013711032806895673
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d00>
salience        : 0.00013698614202439785
wikipedia_url   : -
====================
name            : pieces
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987670>
salience        : 0.0001369590754620731
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d940>
salience        : 0.00013692303036805242
wikipedia_url   : -
====================
name            : pieces
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad2b0>
salience        : 0.0001368502707919106
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad080>
salience        : 0.0001354350970359519
wikipedia_url   : -
====================
name            : tourism guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adad0>
salience        : 0.00013490258425008506
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adf80>
salience        : 0.00013485840463545173
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c10>
salience        : 0.0001333979598712176
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93300>
salience        : 0.0001333979598712176
wikipedia_url   : -
====================
name            : phone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93620>
salience        : 0.00013310792564880103
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93170>
salience        : 0.00013305580068845302
wikipedia_url   : -
====================
name            : reasons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933f0>
salience        : 0.00013239939289633185
wikipedia_url   : -
====================
name            : exhibition info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde34e0>
salience        : 0.00013239133113529533
wikipedia_url   : -
====================
name            : exhibition info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde31c0>
salience        : 0.00013230773038230836
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3170>
salience        : 0.0001320926530752331
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f30>
salience        : 0.00013184915587771684
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3530>
salience        : 0.0001311898959102109
wikipedia_url   : -
====================
name            : vibe amp fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2210>
salience        : 0.00013112655142322183
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2bc0>
salience        : 0.000129359177662991
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2cb0>
salience        : 0.00012928509386256337
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23a0>
salience        : 0.00012913014506921172
wikipedia_url   : -
====================
name            : amp socket shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a21c0>
salience        : 0.00012881123984698206
wikipedia_url   : -
====================
name            : light pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28a0>
salience        : 0.00012881123984698206
wikipedia_url   : -
====================
name            : careerinspo wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e90>
salience        : 0.00012848172627855092
wikipedia_url   : -
====================
name            : stand installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c60>
salience        : 0.00012722951942123473
wikipedia_url   : -
====================
name            : dream pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3350>
salience        : 0.000127229344798252
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3670>
salience        : 0.0001271652290597558
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b20>
salience        : 0.00012644527305383235
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ad0>
salience        : 0.00012543273624032736
wikipedia_url   : -
====================
name            : show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3210>
salience        : 0.00012541399337351322
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc30d0>
salience        : 0.00012527221406344324
wikipedia_url   : -
====================
name            : londonlumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3170>
salience        : 0.00012521233293227851
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc37b0>
salience        : 0.00012511211389210075
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc39e0>
salience        : 0.00012511211389210075
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b70>
salience        : 0.00012511211389210075
wikipedia_url   : -
====================
name            : lines stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3030>
salience        : 0.00012511211389210075
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7440>
salience        : 0.00012496534327510744
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7170>
salience        : 0.00012491941743064672
wikipedia_url   : -
====================
name            : umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7940>
salience        : 0.00012441322905942798
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7490>
salience        : 0.00012439239071682096
wikipedia_url   : -
====================
name            : facebook page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78f0>
salience        : 0.00012399764091242105
wikipedia_url   : -
====================
name            : spaces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc74e0>
salience        : 0.00012376283120829612
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78a0>
salience        : 0.00012317697110120207
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc72b0>
salience        : 0.00012309498561080545
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7210>
salience        : 0.00012301726383157074
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b70>
salience        : 0.00012176234304206446
wikipedia_url   : -
====================
name            : opening night highlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc76c0>
salience        : 0.00012150871043559164
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ce9e0>
salience        : 0.00012130104732932523
wikipedia_url   : -
====================
name            : church eah mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cecb0>
salience        : 0.00012111898831790313
wikipedia_url   : -
====================
name            : coal drop yard project king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee90>
salience        : 0.00012053714453941211
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec60>
salience        : 0.00012053714453941211
wikipedia_url   : -
====================
name            : imaginationlabs wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be9e0>
salience        : 0.00012021012662444264
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef30>
salience        : 0.00012014611274935305
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef80>
salience        : 0.00012011086073471233
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be350>
salience        : 0.00011998753325315192
wikipedia_url   : -
====================
name            : aists bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee90>
salience        : 0.00011986252502538264
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8f0>
salience        : 0.00011977529356954619
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf7b0>
salience        : 0.00011968619946856052
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf2b0>
salience        : 0.00011956914386246353
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd00>
salience        : 0.00011956319940509275
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf3f0>
salience        : 0.00011956319940509275
wikipedia_url   : -
====================
name            : lumierelondon installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfdf0>
salience        : 0.00011945133883273229
wikipedia_url   : -
====================
name            : tonight sneak peak favourite installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf0d0>
salience        : 0.00011945133883273229
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe90>
salience        : 0.00011934237409150228
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf5d0>
salience        : 0.00011929081665584818
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfcb0>
salience        : 0.00011929081665584818
wikipedia_url   : -
====================
name            : fuck neon bikes installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc60>
salience        : 0.00011929081665584818
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf620>
salience        : 0.00011929081665584818
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc10>
salience        : 0.0001192859563161619
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e90>
salience        : 0.0001192410200019367
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067440>
salience        : 0.00011919288226636127
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673a0>
salience        : 0.00011893345799762756
wikipedia_url   : -
====================
name            : app guide installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067bc0>
salience        : 0.00011893345799762756
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b20>
salience        : 0.00011893345799762756
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067cb0>
salience        : 0.0001188563765026629
wikipedia_url   : -
====================
name            : voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067990>
salience        : 0.00011881984391948208
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067210>
salience        : 0.00011881932732649148
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678a0>
salience        : 0.00011881932732649148
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067300>
salience        : 0.00011881932732649148
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ee0>
salience        : 0.00011775369785027578
wikipedia_url   : -
====================
name            : south bank amp king cross
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067580>
salience        : 0.00011768296826630831
wikipedia_url   : -
====================
name            : cord construction stjamessq london planning route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067350>
salience        : 0.00011714785796357319
wikipedia_url   : -
====================
name            : lighting team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a30>
salience        : 0.00011641877790680155
wikipedia_url   : -
====================
name            : red telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067940>
salience        : 0.00011641786113614216
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067760>
salience        : 0.00011585893662413582
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220671c0>
salience        : 0.00011562088184291497
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220675d0>
salience        : 0.0001152395925601013
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a80>
salience        : 0.00011507255840115249
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e40>
salience        : 0.00011501324479468167
wikipedia_url   : -
====================
name            : surface transpo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067710>
salience        : 0.00011489581811474636
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067800>
salience        : 0.00011485431605251506
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067170>
salience        : 0.00011485431605251506
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067260>
salience        : 0.0001147882139775902
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067490>
salience        : 0.00011477660154923797
wikipedia_url   : -
====================
name            : daan roosegaarde kingscross lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c60>
salience        : 0.00011476680083433166
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5990>
salience        : 0.00011460075620561838
wikipedia_url   : -
====================
name            : transform giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5850>
salience        : 0.00011445619747973979
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c56c0>
salience        : 0.00011435060878284276
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5350>
salience        : 0.00011423985415603966
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5b20>
salience        : 0.0001141744214692153
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c55d0>
salience        : 0.0001141744214692153
wikipedia_url   : -
====================
name            : river lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5580>
salience        : 0.0001139948217314668
wikipedia_url   : -
====================
name            : commute home kingscrossn1c lights
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5d00>
salience        : 0.0001139397791121155
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f80>
salience        : 0.00011383583478163928
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5cb0>
salience        : 0.00011374557652743533
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ee0>
salience        : 0.00011369324056431651
wikipedia_url   : -
====================
name            : video photo editing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2080>
salience        : 0.00011360939242877066
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2210>
salience        : 0.00011360573262209073
wikipedia_url   : -
====================
name            : nightlife installation lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2bc0>
salience        : 0.00011360573262209073
wikipedia_url   : -
====================
name            : beauty light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2940>
salience        : 0.00011356397590134293
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2cb0>
salience        : 0.00011356397590134293
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28a0>
salience        : 0.00011352408910170197
wikipedia_url   : -
====================
name            : sta lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2440>
salience        : 0.00011344578524585813
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2490>
salience        : 0.00011344578524585813
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2710>
salience        : 0.00011340853234287351
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2300>
salience        : 0.0001133722544182092
wikipedia_url   : -
====================
name            : cultureisgreat wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2df0>
salience        : 0.00011334254668327048
wikipedia_url   : -
====================
name            : lights lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c60>
salience        : 0.00011330245615681633
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d50>
salience        : 0.00011326883395668119
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd25d0>
salience        : 0.00011326883395668119
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2f30>
salience        : 0.00011323601938784122
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ad0>
salience        : 0.00011312260903650895
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd27b0>
salience        : 0.00011312260903650895
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd21c0>
salience        : 0.00011288309906376526
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a30>
salience        : 0.00011286421067779884
wikipedia_url   : -
====================
name            : excusethepuns aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd22b0>
salience        : 0.00011263295891694725
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd24e0>
salience        : 0.00011241483298363164
wikipedia_url   : -
====================
name            : kingscrossn1c aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23f0>
salience        : 0.00011238034494454041
wikipedia_url   : -
====================
name            : danielcanogar wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c10>
salience        : 0.00011181940499227494
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b20>
salience        : 0.00011109408660558984
wikipedia_url   : -
====================
name            : thehistorypress festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2580>
salience        : 0.00011091533087892458
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2800>
salience        : 0.00011086796439485624
wikipedia_url   : -
====================
name            : aichoketrust plan visit buy map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2760>
salience        : 0.00011065925355069339
wikipedia_url   : -
====================
name            : courses cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e90>
salience        : 0.00010978154023177922
wikipedia_url   : -
====================
name            : impulse collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2260>
salience        : 0.00010906443640124053
wikipedia_url   : -
====================
name            : cityam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7490>
salience        : 0.00010891957936109975
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7350>
salience        : 0.0001082837043213658
wikipedia_url   : -
====================
name            : impulse london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73a0>
salience        : 0.00010807000217027962
wikipedia_url   : -
====================
name            : londoneye
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e40>
salience        : 0.00010789999942062423
wikipedia_url   : -
====================
name            : servator deployment londoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7260>
salience        : 0.00010789999942062423
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ad0>
salience        : 0.00010788693180074915
wikipedia_url   : -
====================
name            : place london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7030>
salience        : 0.00010784789628814906
wikipedia_url   : -
====================
name            : stuff londonpaners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a79e0>
salience        : 0.00010779777949210256
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c60>
salience        : 0.00010779126023408026
wikipedia_url   : -
====================
name            : visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7cb0>
salience        : 0.00010770295921247452
wikipedia_url   : -
====================
name            : visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7670>
salience        : 0.00010770295921247452
wikipedia_url   : -
====================
name            : lumierelondon karizmatic_k kingscrossn1c
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78f0>
salience        : 0.00010767361527541652
wikipedia_url   : -
====================
name            : parking london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7120>
salience        : 0.00010765800107037649
wikipedia_url   : -
====================
name            : londonlamppost
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a75d0>
salience        : 0.00010765800107037649
wikipedia_url   : -
====================
name            : ones
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7990>
salience        : 0.00010763040336314589
wikipedia_url   : -
====================
name            : sponsorship visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a71c0>
salience        : 0.00010758797725429758
wikipedia_url   : -
====================
name            : sponsorship visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73f0>
salience        : 0.00010758797725429758
wikipedia_url   : -
====================
name            : hit londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b70>
salience        : 0.00010757247218862176
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7df0>
salience        : 0.0001075317122740671
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7440>
salience        : 0.00010753160313470289
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7800>
salience        : 0.00010745381587184966
wikipedia_url   : -
====================
name            : installation visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c10>
salience        : 0.00010742565791588277
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7bc0>
salience        : 0.00010741654841694981
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7940>
salience        : 0.00010741654841694981
wikipedia_url   : -
====================
name            : lighting london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f30>
salience        : 0.0001073107123374939
wikipedia_url   : -
====================
name            : lumierelondon visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7080>
salience        : 0.00010728128836490214
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7530>
salience        : 0.00010707134060794488
wikipedia_url   : -
====================
name            : visit half price entry abbey
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a70d0>
salience        : 0.00010703312000259757
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220750d0>
salience        : 0.00010695576202124357
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220754e0>
salience        : 0.0001068905767169781
wikipedia_url   : -
====================
name            : kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075530>
salience        : 0.00010630420729285106
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753f0>
salience        : 0.00010615152132231742
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d00>
salience        : 0.00010613765334710479
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d50>
salience        : 0.00010488230327609926
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075580>
salience        : 0.00010443651262903586
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f80>
salience        : 0.000104029371868819
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075490>
salience        : 0.00010393583943368867
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a30>
salience        : 0.0001038985064951703
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075620>
salience        : 0.00010389447561465204
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk benhamrhys ottersrowing
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075940>
salience        : 0.00010378919978393242
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e90>
salience        : 0.0001036614557961002
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075210>
salience        : 0.00010352901881560683
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220751c0>
salience        : 0.00010349096555728465
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075350>
salience        : 0.00010345402552047744
wikipedia_url   : -
====================
name            : sighting fish telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c60>
salience        : 0.00010344354814151302
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075df0>
salience        : 0.0001033493026625365
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075440>
salience        : 0.00010328403732273728
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075ad0>
salience        : 0.00010322199523216113
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075710>
salience        : 0.0001030353014357388
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c10>
salience        : 0.00010298633424099535
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075cb0>
salience        : 0.00010298633424099535
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075da0>
salience        : 0.00010298633424099535
wikipedia_url   : -
====================
name            : visitors event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a80>
salience        : 0.00010298633424099535
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075760>
salience        : 0.00010288877092534676
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b20>
salience        : 0.0001028373371809721
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220757b0>
salience        : 0.0001026348109007813
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075120>
salience        : 0.00010259708506055176
wikipedia_url   : -
====================
name            : night event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220646c0>
salience        : 0.00010256046516587958
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064580>
salience        : 0.00010256046516587958
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a80>
salience        : 0.0001024566445266828
wikipedia_url   : -
====================
name            : nights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064760>
salience        : 0.00010244163422612473
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f80>
salience        : 0.00010240281699225307
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c10>
salience        : 0.0001023651784635149
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064120>
salience        : 0.00010229314648313448
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a30>
salience        : 0.00010222505807178095
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064670>
salience        : 0.00010219235991826281
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064620>
salience        : 0.00010205200669588521
wikipedia_url   : -
====================
name            : tfltravelales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8f0>
salience        : 0.00010124660184374079
wikipedia_url   : -
====================
name            : awork lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c580>
salience        : 0.0001008624312817119
wikipedia_url   : -
====================
name            : tfltravelales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c9e0>
salience        : 0.00010086061229230836
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c670>
salience        : 9.993179992306978e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c940>
salience        : 9.947172657120973e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c170>
salience        : 9.947172657120973e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf30>
salience        : 9.91987471934408e-05
wikipedia_url   : -
====================
name            : preview team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca80>
salience        : 9.91771521512419e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c260>
salience        : 9.913915710058063e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c440>
salience        : 9.911531378747895e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c4e0>
salience        : 9.857920667855069e-05
wikipedia_url   : -
====================
name            : umbrella project regent
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c760>
salience        : 9.847362525761127e-05
wikipedia_url   : -
====================
name            : kingscrossn1c lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c850>
salience        : 9.842582221608609e-05
wikipedia_url   : -
====================
name            : perspectives
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a80>
salience        : 9.841570863500237e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e90>
salience        : 9.814509394345805e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88f0>
salience        : 9.805618901737034e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f80>
salience        : 9.805212903302163e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8cb0>
salience        : 9.792903438210487e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83a0>
salience        : 9.759957902133465e-05
wikipedia_url   : -
====================
name            : flamingo lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8170>
salience        : 9.757252701092511e-05
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88a0>
salience        : 9.737744403537363e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ee0>
salience        : 9.722018876345828e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8850>
salience        : 9.717506327433512e-05
wikipedia_url   : -
====================
name            : culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83f0>
salience        : 9.711732855066657e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8120>
salience        : 9.706892888061702e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f30>
salience        : 9.703161776997149e-05
wikipedia_url   : -
====================
name            : pa head
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47710>
salience        : 9.694942127680406e-05
wikipedia_url   : -
====================
name            : time highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b70>
salience        : 9.66833540587686e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e40>
salience        : 9.65825529419817e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c60>
salience        : 9.640395728638396e-05
wikipedia_url   : -
====================
name            : city world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47530>
salience        : 9.628354746382684e-05
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47da0>
salience        : 9.594417497282848e-05
wikipedia_url   : -
====================
name            : aichoketrust aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc471c0>
salience        : 9.584352665115148e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47940>
salience        : 9.538404265185818e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b20>
salience        : 9.530826355330646e-05
wikipedia_url   : -
====================
name            : interest head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf6c0>
salience        : 9.517011494608596e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a30>
salience        : 9.517011494608596e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2800>
salience        : 9.511053212918341e-05
wikipedia_url   : -
====================
name            : plan journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc760>
salience        : 9.474165563005954e-05
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a80>
salience        : 9.463526657782495e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a30>
salience        : 9.430172940483317e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98f0>
salience        : 9.430172940483317e-05
wikipedia_url   : -
====================
name            : londonevents cadburyuk mrfoggsgb thraedable pleins feux sur londres visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9940>
salience        : 9.397925896337256e-05
wikipedia_url   : -
====================
name            : employees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ead0>
salience        : 9.396777022629976e-05
wikipedia_url   : -
====================
name            : hearing hype lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e1c0>
salience        : 9.395570668857545e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e490>
salience        : 9.391897765453905e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e8f0>
salience        : 9.391897765453905e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e0d0>
salience        : 9.391897765453905e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9440>
salience        : 9.391897765453905e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c60>
salience        : 9.388339094584808e-05
wikipedia_url   : -
====================
name            : croydon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898a0>
salience        : 9.387518366565928e-05
wikipedia_url   : -
====================
name            : night lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a30>
salience        : 9.3848881078884e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ee0>
salience        : 9.3848881078884e-05
wikipedia_url   : -
====================
name            : visitlondon loveuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220891c0>
salience        : 9.382001007907093e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089da0>
salience        : 9.38153825700283e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089850>
salience        : 9.38153825700283e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4670>
salience        : 9.38153825700283e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d800>
salience        : 9.38153825700283e-05
wikipedia_url   : -
====================
name            : illumination laser
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d850>
salience        : 9.376082016387954e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad990>
salience        : 9.375120134791359e-05
wikipedia_url   : -
====================
name            : coin child hood aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938a0>
salience        : 9.373675129609182e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93760>
salience        : 9.369484178023413e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3df0>
salience        : 9.369484178023413e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c60>
salience        : 9.369484178023413e-05
wikipedia_url   : -
====================
name            : control lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2490>
salience        : 9.36612268560566e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d50>
salience        : 9.363247227156535e-05
wikipedia_url   : -
====================
name            : laser
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2760>
salience        : 9.363247227156535e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2260>
salience        : 9.351713379146531e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3990>
salience        : 9.343826968688518e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3940>
salience        : 9.339422103948891e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3710>
salience        : 9.326983854407445e-05
wikipedia_url   : -
====================
name            : mayoroflondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d50>
salience        : 9.326983854407445e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c10>
salience        : 9.3060101789888e-05
wikipedia_url   : -
====================
name            : playlondongame lumierelondon mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc36c0>
salience        : 9.243879321729764e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3440>
salience        : 9.199371561408043e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d50>
salience        : 9.17726501938887e-05
wikipedia_url   : -
====================
name            : citywestminster lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7260>
salience        : 9.16208082344383e-05
wikipedia_url   : -
====================
name            : attend launch festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7e40>
salience        : 9.144912473857403e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc70d0>
salience        : 9.144912473857403e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d00>
salience        : 9.144912473857403e-05
wikipedia_url   : -
====================
name            : ittewinkball amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cebc0>
salience        : 9.140015754383057e-05
wikipedia_url   : -
====================
name            : street festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be4e0>
salience        : 9.139907342614606e-05
wikipedia_url   : -
====================
name            : street festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bebc0>
salience        : 9.139907342614606e-05
wikipedia_url   : -
====================
name            : victoria
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be940>
salience        : 9.137111919699237e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff30>
salience        : 9.126766963163391e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf990>
salience        : 9.126117220148444e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf850>
salience        : 9.126117220148444e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa80>
salience        : 9.126117220148444e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf120>
salience        : 9.121876064455137e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf490>
salience        : 9.121876064455137e-05
wikipedia_url   : -
====================
name            : stuff amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064030>
salience        : 9.120692266151309e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064bc0>
salience        : 9.11984607228078e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064490>
salience        : 9.11493189050816e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220644e0>
salience        : 9.113852138398215e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064850>
salience        : 9.113852138398215e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220641c0>
salience        : 9.113852138398215e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064940>
salience        : 9.113852138398215e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b20>
salience        : 9.113852138398215e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064080>
salience        : 9.110047540161759e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ee0>
salience        : 9.110047540161759e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064da0>
salience        : 9.106369543587789e-05
wikipedia_url   : -
====================
name            : youtube pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648a0>
salience        : 9.102809417527169e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c60>
salience        : 9.102809417527169e-05
wikipedia_url   : -
====================
name            : amp light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220649e0>
salience        : 9.102809417527169e-05
wikipedia_url   : -
====================
name            : amp light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064530>
salience        : 9.102809417527169e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064d50>
salience        : 9.102809417527169e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064df0>
salience        : 9.099360613618046e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648f0>
salience        : 9.092768596019596e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48a0>
salience        : 9.089615195989609e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c60>
salience        : 9.08654837985523e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48f0>
salience        : 9.08654837985523e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ee0>
salience        : 9.08654837985523e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4710>
salience        : 9.083564509637654e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b70>
salience        : 9.07506764633581e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d00>
salience        : 9.07506764633581e-05
wikipedia_url   : -
====================
name            : offices
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4300>
salience        : 9.065037011168897e-05
wikipedia_url   : -
====================
name            : offices
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4da0>
salience        : 9.065037011168897e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4580>
salience        : 9.058658179128543e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4490>
salience        : 9.058658179128543e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4bc0>
salience        : 9.052628593053669e-05
wikipedia_url   : -
====================
name            : playlondongame
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd42b0>
salience        : 8.889107266440988e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a80>
salience        : 8.859722584020346e-05
wikipedia_url   : -
====================
name            : climber
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd46c0>
salience        : 8.844189142109826e-05
wikipedia_url   : -
====================
name            : lumierelondon sarahdobbs
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4940>
salience        : 8.82673921296373e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4440>
salience        : 8.777644688962027e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4f30>
salience        : 8.716648153495044e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7350>
salience        : 8.714730211067945e-05
wikipedia_url   : -
====================
name            : rest
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b70>
salience        : 8.680818427819759e-05
wikipedia_url   : -
====================
name            : tfl update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78f0>
salience        : 8.680818427819759e-05
wikipedia_url   : -
====================
name            : city weekend
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde77b0>
salience        : 8.637385326437652e-05
wikipedia_url   : -
====================
name            : cloud impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ee0>
salience        : 8.607028576079756e-05
wikipedia_url   : -
====================
name            : lotiloves
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73a0>
salience        : 8.601498120697215e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde74e0>
salience        : 8.59015854075551e-05
wikipedia_url   : -
====================
name            : thermals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7490>
salience        : 8.557351247873157e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73f0>
salience        : 8.538086694898084e-05
wikipedia_url   : -
====================
name            : look guide gt lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7800>
salience        : 8.531991625204682e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7850>
salience        : 8.528739999746904e-05
wikipedia_url   : -
====================
name            : levanterman book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7d00>
salience        : 8.514510409440845e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde75d0>
salience        : 8.511482155881822e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e40>
salience        : 8.481847908115014e-05
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7760>
salience        : 8.472098124912009e-05
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f30>
salience        : 8.442134276265278e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a30>
salience        : 8.432668983004987e-05
wikipedia_url   : -
====================
name            : project servator deployment londoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7210>
salience        : 8.426893327850848e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde71c0>
salience        : 8.391309529542923e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7170>
salience        : 8.361630898434669e-05
wikipedia_url   : -
====================
name            : playlondongame
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7bc0>
salience        : 8.342386718140915e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7df0>
salience        : 8.293992141261697e-05
wikipedia_url   : -
====================
name            : dance academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7530>
salience        : 8.257727313321084e-05
wikipedia_url   : -
====================
name            : lumierelondon fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7300>
salience        : 8.242487092502415e-05
wikipedia_url   : -
====================
name            : entre les rangs
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a80>
salience        : 8.236141002271324e-05
wikipedia_url   : -
====================
name            : thamesclippers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967da0>
salience        : 8.187362254830077e-05
wikipedia_url   : -
====================
name            : aichoketrust thamesclippers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ee0>
salience        : 8.182443707482889e-05
wikipedia_url   : -
====================
name            : red telephone box bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967850>
salience        : 8.157094998750836e-05
wikipedia_url   : -
====================
name            : dance academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967440>
salience        : 8.156798139680177e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967760>
salience        : 8.146771142492071e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d50>
salience        : 8.120333222905174e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967170>
salience        : 8.074775541899726e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f30>
salience        : 8.064345456659794e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967300>
salience        : 8.064345456659794e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ad0>
salience        : 8.062805864028633e-05
wikipedia_url   : -
====================
name            : instalations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229673f0>
salience        : 8.061290282057598e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3f0>
salience        : 8.061290282057598e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce030>
salience        : 8.059797255555168e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3a0>
salience        : 8.059797255555168e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce2b0>
salience        : 8.059797255555168e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce080>
salience        : 8.058326784521341e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce300>
salience        : 8.058326784521341e-05
wikipedia_url   : -
====================
name            : check installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce620>
salience        : 8.058326784521341e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce120>
salience        : 8.056878141360357e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce4e0>
salience        : 8.055450598476455e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce490>
salience        : 8.055450598476455e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7300>
salience        : 8.054043428273872e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a30>
salience        : 8.052655903156847e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78a0>
salience        : 8.052655903156847e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7260>
salience        : 8.05128802312538e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a80>
salience        : 8.05128802312538e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b74e0>
salience        : 8.048608287936077e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7d50>
salience        : 8.045999857131392e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7f30>
salience        : 8.04345982032828e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7850>
salience        : 8.042213448788971e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b75d0>
salience        : 8.042213448788971e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b79e0>
salience        : 8.037382212933153e-05
wikipedia_url   : -
====================
name            : sta planning visit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7490>
salience        : 8.037382212933153e-05
wikipedia_url   : -
====================
name            : technicians
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7080>
salience        : 8.035539940465242e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d1c0>
salience        : 8.035539940465242e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3a0>
salience        : 8.035539940465242e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dbc0>
salience        : 8.035539940465242e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d9e0>
salience        : 8.004745177458972e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d5d0>
salience        : 8.004745177458972e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206df80>
salience        : 8.004745177458972e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d080>
salience        : 8.002478716662154e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc10>
salience        : 8.000264642760158e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d490>
salience        : 8.000264642760158e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de40>
salience        : 7.995512714842334e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d710>
salience        : 7.993907638592646e-05
wikipedia_url   : -
====================
name            : sound installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da30>
salience        : 7.993907638592646e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d850>
salience        : 7.989889854798093e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d0d0>
salience        : 7.989889854798093e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dad0>
salience        : 7.986031414475292e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d620>
salience        : 7.98415785538964e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc60>
salience        : 7.98415785538964e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8a0>
salience        : 7.977006316650659e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d350>
salience        : 7.973619358381256e-05
wikipedia_url   : -
====================
name            : massion supercube installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d2b0>
salience        : 7.973619358381256e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d580>
salience        : 7.973619358381256e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d210>
salience        : 7.973619358381256e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d530>
salience        : 7.973619358381256e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d990>
salience        : 7.97196917119436e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd00>
salience        : 7.970345905050635e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d800>
salience        : 7.970345905050635e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d670>
salience        : 7.970345905050635e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015f80>
salience        : 7.968750287545845e-05
wikipedia_url   : -
====================
name            : video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015490>
salience        : 7.96723470557481e-05
wikipedia_url   : -
====================
name            : tonight sneak peak favourite installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0154e0>
salience        : 7.967180135892704e-05
wikipedia_url   : -
====================
name            : aichoketrust lwairecruits london weekendvibes wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229db530>
salience        : 7.950181316118687e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081490>
salience        : 7.947098492877558e-05
wikipedia_url   : -
====================
name            : london lumiere aichoketrust visitlondon lumierelondon wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a80>
salience        : 7.942348020151258e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d50>
salience        : 7.922718941699713e-05
wikipedia_url   : -
====================
name            : lasershow kingscross wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081530>
salience        : 7.916150207165629e-05
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081850>
salience        : 7.909714622655883e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220811c0>
salience        : 7.901631761342287e-05
wikipedia_url   : -
====================
name            : vickywinkball amp ittewinkball amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081940>
salience        : 7.88429388194345e-05
wikipedia_url   : -
====================
name            : health benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b70>
salience        : 7.881740020820871e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818f0>
salience        : 7.873360300436616e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081030>
salience        : 7.83624273026362e-05
wikipedia_url   : -
====================
name            : video wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d00>
salience        : 7.827842637198046e-05
wikipedia_url   : -
====================
name            : fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081710>
salience        : 7.765276677673683e-05
wikipedia_url   : -
====================
name            : hea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e40>
salience        : 7.758758147247136e-05
wikipedia_url   : -
====================
name            : lambeth
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e90>
salience        : 7.729415665380657e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Lambeth
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220816c0>
salience        : 7.707026816206053e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a30>
salience        : 7.701402500970289e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220810d0>
salience        : 7.700196874793619e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081170>
salience        : 7.699275010963902e-05
wikipedia_url   : -
====================
name            : control control lumierelondon london lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ee0>
salience        : 7.690752681810409e-05
wikipedia_url   : -
====================
name            : lumierelondon london seesaw lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081800>
salience        : 7.689306221436709e-05
wikipedia_url   : -
====================
name            : southbank lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081df0>
salience        : 7.689306221436709e-05
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081cb0>
salience        : 7.687882316531613e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081440>
salience        : 7.683736475883052e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c60>
salience        : 7.682394061703235e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081210>
salience        : 7.681070565013215e-05
wikipedia_url   : -
====================
name            : city lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220819e0>
salience        : 7.679765985812992e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ad0>
salience        : 7.679135160287842e-05
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813a0>
salience        : 7.677209941903129e-05
wikipedia_url   : -
====================
name            : trafalgarsquare lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0300>
salience        : 7.67472229199484e-05
wikipedia_url   : -
====================
name            : love butterflies amp giant fox
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d50>
salience        : 7.672295032534748e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0670>
salience        : 7.671958883292973e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0760>
salience        : 7.671109779039398e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b05d0>
salience        : 7.66993616707623e-05
wikipedia_url   : -
====================
name            : installation light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f80>
salience        : 7.668777834624052e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678f0>
salience        : 7.666501915082335e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d00>
salience        : 7.666501915082335e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067670>
salience        : 7.659869879717007e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067850>
salience        : 7.652322528883815e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b70>
salience        : 7.645683945156634e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220674e0>
salience        : 7.635763176949695e-05
wikipedia_url   : -
====================
name            : installation light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067080>
salience        : 7.631096377735958e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220679e0>
salience        : 7.629885658388957e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067120>
salience        : 7.629030733369291e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673f0>
salience        : 7.624358840985224e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067620>
salience        : 7.623097189934924e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ad0>
salience        : 7.621200347784907e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5710>
salience        : 7.621200347784907e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5620>
salience        : 7.617520168423653e-05
wikipedia_url   : -
====================
name            : lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5670>
salience        : 7.617520168423653e-05
wikipedia_url   : -
====================
name            : lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58f0>
salience        : 7.617520168423653e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f30>
salience        : 7.616640505148098e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58a0>
salience        : 7.615998038090765e-05
wikipedia_url   : -
====================
name            : lighting lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5760>
salience        : 7.615733193233609e-05
wikipedia_url   : -
====================
name            : show lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd29e0>
salience        : 7.613979687448591e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2850>
salience        : 7.610570173710585e-05
wikipedia_url   : -
====================
name            : southbank lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2620>
salience        : 7.610570173710585e-05
wikipedia_url   : -
====================
name            : nightlife installation lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2da0>
salience        : 7.605680730193853e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2030>
salience        : 7.604106212966144e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2530>
salience        : 7.59231552365236e-05
wikipedia_url   : -
====================
name            : website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd26c0>
salience        : 7.59231552365236e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd20d0>
salience        : 7.59231552365236e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d00>
salience        : 7.58618552936241e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2670>
salience        : 7.583397382404655e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2990>
salience        : 7.573016046080738e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2350>
salience        : 7.568233559140936e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2170>
salience        : 7.563686813227832e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28f0>
salience        : 7.559036748716608e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7da0>
salience        : 7.542082312284037e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7170>
salience        : 7.521382940467447e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a80>
salience        : 7.515407196478918e-05
wikipedia_url   : -
====================
name            : drill hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b20>
salience        : 7.515407196478918e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d00>
salience        : 7.509797433158383e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f80>
salience        : 7.509797433158383e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7850>
salience        : 7.509797433158383e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a74e0>
salience        : 7.504512905143201e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075800>
salience        : 7.504512905143201e-05
wikipedia_url   : -
====================
name            : pas knowledge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220759e0>
salience        : 7.504512905143201e-05
wikipedia_url   : -
====================
name            : control control lumierelondon london lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f30>
salience        : 7.502216612920165e-05
wikipedia_url   : -
====================
name            : info visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075080>
salience        : 7.500699575757608e-05
wikipedia_url   : -
====================
name            : marvel ones
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758f0>
salience        : 7.490278949262574e-05
wikipedia_url   : -
====================
name            : lumierelondon lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075260>
salience        : 7.487987022614107e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220755d0>
salience        : 7.481054490199313e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075170>
salience        : 7.481054490199313e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075030>
salience        : 7.457510946551338e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c490>
salience        : 7.431875565089285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c1c0>
salience        : 7.431875565089285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd00>
salience        : 7.431875565089285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8a0>
salience        : 7.429670222336426e-05
wikipedia_url   : -
====================
name            : holy ghost
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2295b300>
salience        : 7.379966700682417e-05
wikipedia_url   : -
====================
name            : visitlondon installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8940>
salience        : 7.372417894657701e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8080>
salience        : 7.372417894657701e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b20>
salience        : 7.372417894657701e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8260>
salience        : 7.37135560484603e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8350>
salience        : 7.37135560484603e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8620>
salience        : 7.370306411758065e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47bc0>
salience        : 7.369268860202283e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47620>
salience        : 7.369268860202283e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47760>
salience        : 7.369268860202283e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f80>
salience        : 7.369268860202283e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a30>
salience        : 7.369268860202283e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf210>
salience        : 7.368242950178683e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd27b0>
salience        : 7.367229409283027e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc0d0>
salience        : 7.366226782323793e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b20>
salience        : 7.366226782323793e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd94e0>
salience        : 7.36523506930098e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e670>
salience        : 7.36523506930098e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed00>
salience        : 7.364254997810349e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ebc0>
salience        : 7.363285112660378e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3a0>
salience        : 7.363285112660378e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9c60>
salience        : 7.362325413851067e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9530>
salience        : 7.361375901382416e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d96c0>
salience        : 7.361375901382416e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b70>
salience        : 7.32267290004529e-05
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089120>
salience        : 7.309579814318568e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6940>
salience        : 7.296708645299077e-05
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adee0>
salience        : 7.290910434676334e-05
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a935d0>
salience        : 7.290910434676334e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938f0>
salience        : 7.278160046553239e-05
wikipedia_url   : -
====================
name            : timeoutlondon london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3080>
salience        : 7.270364585565403e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28f0>
salience        : 7.270364585565403e-05
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3080>
salience        : 7.267911860253662e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc35d0>
salience        : 7.267911860253662e-05
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc71c0>
salience        : 7.266079046530649e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7710>
salience        : 7.265524618560448e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf530>
salience        : 7.26519210729748e-05
wikipedia_url   : -
====================
name            : planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff80>
salience        : 7.25998543202877e-05
wikipedia_url   : -
====================
name            : nature plants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf800>
salience        : 7.25998543202877e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfee0>
salience        : 7.255546370288357e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfbc0>
salience        : 7.250716589624062e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa30>
salience        : 7.249663030961528e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf4e0>
salience        : 7.249663030961528e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643f0>
salience        : 7.24831988918595e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064800>
salience        : 7.246997847687453e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f30>
salience        : 7.245694723678753e-05
wikipedia_url   : -
====================
name            : plans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064350>
salience        : 7.24566270946525e-05
wikipedia_url   : -
====================
name            : plan visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064170>
salience        : 7.244411244755611e-05
wikipedia_url   : -
====================
name            : challenge
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220640d0>
salience        : 7.24178462405689e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064710>
salience        : 7.239288970595226e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e90>
salience        : 7.238976104417816e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064300>
salience        : 7.236266537802294e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220647b0>
salience        : 7.231400377349928e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220642b0>
salience        : 7.229227776406333e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0440>
salience        : 7.229227776406333e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b07b0>
salience        : 7.229175389511511e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b00d0>
salience        : 7.225541776278988e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d00>
salience        : 7.22506083548069e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0530>
salience        : 7.221160194603726e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0bc0>
salience        : 7.216515950858593e-05
wikipedia_url   : -
====================
name            : londontheinside london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b04e0>
salience        : 7.213695062091574e-05
wikipedia_url   : -
====================
name            : lights london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0260>
salience        : 7.211935735540465e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0490>
salience        : 7.210827607195824e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0800>
salience        : 7.210346666397527e-05
wikipedia_url   : -
====================
name            : city london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0170>
salience        : 7.208519673440605e-05
wikipedia_url   : -
====================
name            : brownshotel roccofoehotels browns_hotel lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b08a0>
salience        : 7.205928704934195e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0da0>
salience        : 7.20363314030692e-05
wikipedia_url   : -
====================
name            : city visitlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095490>
salience        : 7.198809908004478e-05
wikipedia_url   : -
====================
name            : look guide gt aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220952b0>
salience        : 7.192767225205898e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220957b0>
salience        : 7.18383162165992e-05
wikipedia_url   : -
====================
name            : night photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095580>
salience        : 7.181172259151936e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953a0>
salience        : 7.180295506259426e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095260>
salience        : 7.173863559728488e-05
wikipedia_url   : -
====================
name            : lumierelondon bbcengland westminsterabbey
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b70>
salience        : 7.139275840017945e-05
wikipedia_url   : -
====================
name            : club
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095a30>
salience        : 7.129566802177578e-05
wikipedia_url   : -
====================
name            : loveuk camronpr
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095990>
salience        : 7.10997628630139e-05
wikipedia_url   : -
====================
name            : canadian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095710>
salience        : 7.09347368683666e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Canada
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d50>
salience        : 7.093466410879046e-05
wikipedia_url   : -
====================
name            : simon corder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e90>
salience        : 7.08506049704738e-05
wikipedia_url   : -
====================
name            : staywellthiswinter visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220954e0>
salience        : 7.075788016663864e-05
wikipedia_url   : -
====================
name            : kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220956c0>
salience        : 7.066057878546417e-05
wikipedia_url   : -
====================
name            : wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c60>
salience        : 7.060469215502962e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ad0>
salience        : 7.057352922856808e-05
wikipedia_url   : -
====================
name            : installation mayfair kings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958a0>
salience        : 7.057352922856808e-05
wikipedia_url   : -
====================
name            : payments
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095bc0>
salience        : 7.046649989206344e-05
wikipedia_url   : -
====================
name            : lumiere visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220955d0>
salience        : 7.043455116217956e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095cb0>
salience        : 7.042527431622148e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095440>
salience        : 7.042527431622148e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c96c0>
salience        : 7.042527431622148e-05
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9760>
salience        : 7.032216672087088e-05
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9440>
salience        : 7.032216672087088e-05
wikipedia_url   : -
====================
name            : justice phone camera lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c92b0>
salience        : 7.031203858787194e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9710>
salience        : 7.031203858787194e-05
wikipedia_url   : -
====================
name            : russellofeah lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1710>
salience        : 7.030202687019482e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18a0>
salience        : 7.029213156783953e-05
wikipedia_url   : -
====================
name            : visitlondon lumiere lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f30>
salience        : 7.029213156783953e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13a0>
salience        : 7.029213156783953e-05
wikipedia_url   : -
====================
name            : nightlife installation lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1350>
salience        : 7.029213156783953e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1bc0>
salience        : 7.02726756571792e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1760>
salience        : 7.02726756571792e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1120>
salience        : 7.02726756571792e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d50>
salience        : 7.025365630397573e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f80>
salience        : 7.021684723440558e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb15d0>
salience        : 7.021267083473504e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1620>
salience        : 7.017664756858721e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1260>
salience        : 7.009385444689542e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb11c0>
salience        : 7.009271939750761e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb19e0>
salience        : 7.007222302490845e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d00>
salience        : 7.007222302490845e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1580>
salience        : 7.007222302490845e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1990>
salience        : 7.005924999248236e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1ee0>
salience        : 7.003387145232409e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1670>
salience        : 7.003387145232409e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1210>
salience        : 7.003387145232409e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1da0>
salience        : 7.002146594459191e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1c60>
salience        : 6.999717152211815e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb16c0>
salience        : 6.998528260737658e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1440>
salience        : 6.997355376370251e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1300>
salience        : 6.997355376370251e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1080>
salience        : 6.996198499109596e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b20>
salience        : 6.996198499109596e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098cb0>
salience        : 6.996198499109596e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098300>
salience        : 6.995977309998125e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220981c0>
salience        : 6.993931310717016e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098030>
salience        : 6.993931310717016e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098620>
salience        : 6.99282027198933e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a30>
salience        : 6.99282027198933e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220987b0>
salience        : 6.99282027198933e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988f0>
salience        : 6.989570829318836e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f80>
salience        : 6.988514360273257e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098260>
salience        : 6.988514360273257e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098170>
salience        : 6.987470987951383e-05
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220985d0>
salience        : 6.969913374632597e-05
wikipedia_url   : -
====================
name            : playlondongame lumierelondon aichoketrust london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098990>
salience        : 6.959235179238021e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098350>
salience        : 6.954174750717357e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098c10>
salience        : 6.954174750717357e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220980d0>
salience        : 6.952293188078329e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098940>
salience        : 6.952293188078329e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098440>
salience        : 6.952293188078329e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220986c0>
salience        : 6.952293188078329e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098d00>
salience        : 6.950451643206179e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983a0>
salience        : 6.950451643206179e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098710>
salience        : 6.950451643206179e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098da0>
salience        : 6.950451643206179e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a170>
salience        : 6.948001100681722e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a300>
salience        : 6.948001100681722e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a440>
salience        : 6.948001100681722e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a5d0>
salience        : 6.947150541236624e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a710>
salience        : 6.945156928850338e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8f0>
salience        : 6.941802712390199e-05
wikipedia_url   : -
====================
name            : aichoketrust london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aad0>
salience        : 6.941703759366646e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac10>
salience        : 6.940174353076145e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad50>
salience        : 6.939253944437951e-05
wikipedia_url   : -
====================
name            : lovelondon lumierelondon londonislovinit dontmissit fridayfreebie london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aee0>
salience        : 6.938595470273867e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a120>
salience        : 6.93857655278407e-05
wikipedia_url   : -
====================
name            : visitors event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a1c0>
salience        : 6.938075239304453e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3f0>
salience        : 6.937009311513975e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a6c0>
salience        : 6.935469718882814e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a940>
salience        : 6.933957774890587e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2abc0>
salience        : 6.933957774890587e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae40>
salience        : 6.933957774890587e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a030>
salience        : 6.933957774890587e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a350>
salience        : 6.932472751941532e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a760>
salience        : 6.932472751941532e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa30>
salience        : 6.929707888048142e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ada0>
salience        : 6.928444054210559e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a4e0>
salience        : 6.928168295416981e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a2b0>
salience        : 6.928168295416981e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a400d0>
salience        : 6.928168295416981e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40210>
salience        : 6.926780770299956e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40350>
salience        : 6.926780770299956e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40490>
salience        : 6.925970228621736e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40580>
salience        : 6.925416528247297e-05
wikipedia_url   : -
====================
name            : coal drop yard project king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a405d0>
salience        : 6.922087050043046e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40710>
salience        : 6.920087616890669e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a408a0>
salience        : 6.916745769558474e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40990>
salience        : 6.9156609242782e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ad0>
salience        : 6.91458917572163e-05
wikipedia_url   : -
====================
name            : jubilee line baker street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c60>
salience        : 6.912257958902046e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40df0>
salience        : 6.911455420777202e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f30>
salience        : 6.910435331519693e-05
wikipedia_url   : -
====================
name            : hamholyburgeruk quote johnlewisretail oxfordstreet
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40080>
salience        : 6.90470333211124e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a401c0>
salience        : 6.897966522956267e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40300>
salience        : 6.890414078952745e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403a0>
salience        : 6.886878691148013e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a404e0>
salience        : 6.886878691148013e-05
wikipedia_url   : -
====================
name            : cosmoscope store street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40670>
salience        : 6.884200411150232e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a407b0>
salience        : 6.881840090500191e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b20>
salience        : 6.878521526232362e-05
wikipedia_url   : -
====================
name            : architecture amp streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c10>
salience        : 6.87422143528238e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40da0>
salience        : 6.873055826872587e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e40>
salience        : 6.869721983093768e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40760>
salience        : 6.865306932013482e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40440>
salience        : 6.85007544234395e-05
wikipedia_url   : -
====================
name            : check timeout guide festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40850>
salience        : 6.842819857411087e-05
wikipedia_url   : -
====================
name            : lumierelondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb2b0>
salience        : 6.832938379375264e-05
wikipedia_url   : -
====================
name            : way method acting danielcanogar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a30>
salience        : 6.826880417065695e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c10>
salience        : 6.808577745687217e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ad0>
salience        : 6.799746188335121e-05
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4990>
salience        : 6.78746000630781e-05
wikipedia_url   : -
====================
name            : abbe
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4530>
salience        : 6.756909715477377e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b20>
salience        : 6.756729999324307e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4670>
salience        : 6.753563502570614e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd45d0>
salience        : 6.752384069841355e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4850>
salience        : 6.752384069841355e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7670>
salience        : 6.752331682946533e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78a0>
salience        : 6.751788896508515e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f80>
salience        : 6.750557076884434e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c10>
salience        : 6.749122985638678e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b20>
salience        : 6.748741725459695e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde72b0>
salience        : 6.748741725459695e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7120>
salience        : 6.748741725459695e-05
wikipedia_url   : -
====================
name            : лондон lightscanarywharf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7580>
salience        : 6.745052087353542e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ad0>
salience        : 6.740052049281076e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a30>
salience        : 6.736780051141977e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967940>
salience        : 6.71765228617005e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967df0>
salience        : 6.714354094583541e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967210>
salience        : 6.714354094583541e-05
wikipedia_url   : -
====================
name            : world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f80>
salience        : 6.709573790431023e-05
wikipedia_url   : -
====================
name            : times
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229679e0>
salience        : 6.708723958581686e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967990>
salience        : 6.707432476105168e-05
wikipedia_url   : -
====================
name            : frontier
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce1c0>
salience        : 6.70424269628711e-05
wikipedia_url   : -
====================
name            : times
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce260>
salience        : 6.700852827634662e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce170>
salience        : 6.699293589917943e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce440>
salience        : 6.699293589917943e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73f0>
salience        : 6.699293589917943e-05
wikipedia_url   : -
====================
name            : hotel cafe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7030>
salience        : 6.694524199701846e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7940>
salience        : 6.69175133225508e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7ad0>
salience        : 6.69175133225508e-05
wikipedia_url   : -
====================
name            : lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8f0>
salience        : 6.686586857540533e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dcb0>
salience        : 6.686586857540533e-05
wikipedia_url   : -
====================
name            : lighting london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db70>
salience        : 6.656199548160657e-05
wikipedia_url   : -
====================
name            : project servator deployment londoneye
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d6c0>
salience        : 6.65243060211651e-05
wikipedia_url   : -
====================
name            : pa london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da80>
salience        : 6.651515286648646e-05
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dda0>
salience        : 6.649715214734897e-05
wikipedia_url   : -
====================
name            : circus london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ddf0>
salience        : 6.648829730693251e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d030>
salience        : 6.647188274655491e-05
wikipedia_url   : -
====================
name            : check timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dee0>
salience        : 6.64514082018286e-05
wikipedia_url   : -
====================
name            : ottersrowing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d120>
salience        : 6.640278297709301e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd50>
salience        : 6.63343962514773e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015b20>
salience        : 6.629488780163229e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081120>
salience        : 6.629182462347671e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b20>
salience        : 6.627305265283212e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813f0>
salience        : 6.625163950957358e-05
wikipedia_url   : -
====================
name            : city visitlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081580>
salience        : 6.624569505220279e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c10>
salience        : 6.621923967031762e-05
wikipedia_url   : -
====================
name            : therose westminstercath
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081260>
salience        : 6.617019971599802e-05
wikipedia_url   : -
====================
name            : game giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081760>
salience        : 6.61548983771354e-05
wikipedia_url   : -
====================
name            : hand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818a0>
salience        : 6.595900049433112e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081670>
salience        : 6.583437789231539e-05
wikipedia_url   : -
====================
name            : citybreak
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d50>
salience        : 6.58019125694409e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067da0>
salience        : 6.576883606612682e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067df0>
salience        : 6.562131602549925e-05
wikipedia_url   : -
====================
name            : aichoketrust amsterdam streetphotography acsversace
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067530>
salience        : 6.556915468536317e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c52b0>
salience        : 6.554432911798358e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2120>
salience        : 6.549684621859342e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23a0>
salience        : 6.547413067892194e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7210>
salience        : 6.547413067892194e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a72b0>
salience        : 6.543054041685537e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7300>
salience        : 6.543054041685537e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7710>
salience        : 6.540961476275697e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d50>
salience        : 6.536449654959142e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a76c0>
salience        : 6.53134411550127e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075bc0>
salience        : 6.521025352412835e-05
wikipedia_url   : -
====================
name            : set
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e40>
salience        : 6.498703442048281e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753a0>
salience        : 6.489621591754258e-05
wikipedia_url   : -
====================
name            : amp traffic operations centre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075670>
salience        : 6.473413668572903e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075300>
salience        : 6.470040534622967e-05
wikipedia_url   : -
====================
name            : piccadilly tgjenkins
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075990>
salience        : 6.461529847001657e-05
wikipedia_url   : -
====================
name            : amp traffic operations centre
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220756c0>
salience        : 6.458893767558038e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e760>
salience        : 6.404783198377118e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca30>
salience        : 6.404783198377118e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c0d0>
salience        : 6.40390207991004e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf80>
salience        : 6.40390207991004e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8440>
salience        : 6.402168946806341e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8df0>
salience        : 6.401316204573959e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8670>
salience        : 6.400473648682237e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47990>
salience        : 6.39963909634389e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc478f0>
salience        : 6.39963909634389e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2530>
salience        : 6.39963909634389e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9490>
salience        : 6.39963909634389e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e580>
salience        : 6.397996912710369e-05
wikipedia_url   : -
====================
name            : coverage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e530>
salience        : 6.386412860592827e-05
wikipedia_url   : -
====================
name            : угадайте где великолепная первая ночь lumiere ldn эти прекрасные световые установки и многое другое будут светиться до воскресенья london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089030>
salience        : 6.384387233993039e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220897b0>
salience        : 6.376984674716368e-05
wikipedia_url   : -
====================
name            : westminster londonisopen mayoroflondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089490>
salience        : 6.37434350210242e-05
wikipedia_url   : -
====================
name            : lights sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37e90>
salience        : 6.366627349052578e-05
wikipedia_url   : -
====================
name            : visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93cb0>
salience        : 6.362701969919726e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e40>
salience        : 6.359178951242939e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3da0>
salience        : 6.3579689594917e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a80>
salience        : 6.35552205494605e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c60>
salience        : 6.353150820359588e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bedf0>
salience        : 6.350342300720513e-05
wikipedia_url   : -
====================
name            : visitors event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf030>
salience        : 6.349458999466151e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfad0>
salience        : 6.348614988382906e-05
wikipedia_url   : -
====================
name            : lumierelondon londonisopen
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf670>
salience        : 6.347981980070472e-05
wikipedia_url   : -
====================
name            : check lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220645d0>
salience        : 6.347521411953494e-05
wikipedia_url   : -
====================
name            : festival lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b70>
salience        : 6.346443115035072e-05
wikipedia_url   : -
====================
name            : bravo lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064440>
salience        : 6.345379370031878e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064210>
salience        : 6.341266998788342e-05
wikipedia_url   : -
====================
name            : carnaby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0210>
salience        : 6.340855179587379e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Carnaby_Street
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0710>
salience        : 6.339618266792968e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy amyelizabethtv london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0df0>
salience        : 6.33952731732279e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0580>
salience        : 6.338694947771728e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debc60>
salience        : 6.337781815091148e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb210>
salience        : 6.336416117846966e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb440>
salience        : 6.335481157293543e-05
wikipedia_url   : -
====================
name            : installations river
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb5d0>
salience        : 6.334284989861771e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb6c0>
salience        : 6.334234058158472e-05
wikipedia_url   : -
====================
name            : watchwithsoundon visitlondon waterlicht lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb7b0>
salience        : 6.333743658615276e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8f0>
salience        : 6.331676559057087e-05
wikipedia_url   : -
====================
name            : royalacademy visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb9e0>
salience        : 6.330109317786992e-05
wikipedia_url   : -
====================
name            : nightingale
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb20>
salience        : 6.328392919385806e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debdf0>
salience        : 6.324627611320466e-05
wikipedia_url   : -
====================
name            : installation aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe90>
salience        : 6.324627611320466e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb0d0>
salience        : 6.323473644442856e-05
wikipedia_url   : -
====================
name            : london wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb260>
salience        : 6.309751915978268e-05
wikipedia_url   : -
====================
name            : check lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb490>
salience        : 6.295002094702795e-05
wikipedia_url   : -
====================
name            : check lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb670>
salience        : 6.293525802902877e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb70>
salience        : 6.292077159741893e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf80>
salience        : 6.290850433288142e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb030>
salience        : 6.288466101977974e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debbc0>
salience        : 6.282638059929013e-05
wikipedia_url   : -
====================
name            : city aichoketrust
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb120>
salience        : 6.28142588539049e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba80>
salience        : 6.280142406467348e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99030>
salience        : 6.25443208264187e-05
wikipedia_url   : -
====================
name            : game update play london mr bean
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99120>
salience        : 6.24208987574093e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99210>
salience        : 6.224508979357779e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99300>
salience        : 6.220386421773583e-05
wikipedia_url   : -
====================
name            : amp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993f0>
salience        : 6.185062375152484e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99530>
salience        : 6.181625940371305e-05
wikipedia_url   : -
====================
name            : height kerbs wheelchair amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a995d0>
salience        : 6.17834011791274e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99620>
salience        : 6.17118930676952e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99670>
salience        : 6.17118930676952e-05
wikipedia_url   : -
====================
name            : twitter amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99800>
salience        : 6.170220876811072e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998a0>
salience        : 6.167389074107632e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99940>
salience        : 6.167389074107632e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b20>
salience        : 6.165559170767665e-05
wikipedia_url   : -
====================
name            : mayoroflondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99bc0>
salience        : 6.155353912618011e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d00>
salience        : 6.154263246571645e-05
wikipedia_url   : -
====================
name            : lumierelondon lights colour festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d50>
salience        : 6.152128480607644e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e40>
salience        : 6.150052649900317e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e90>
salience        : 6.150052649900317e-05
wikipedia_url   : -
====================
name            : londontheinside london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99170>
salience        : 6.149509863462299e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a994e0>
salience        : 6.149036198621616e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99850>
salience        : 6.14803284406662e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a80>
salience        : 6.147043313831091e-05
wikipedia_url   : -
====================
name            : pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99cb0>
salience        : 6.144829967524856e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99da0>
salience        : 6.142281927168369e-05
wikipedia_url   : -
====================
name            : programme light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ee0>
salience        : 6.142281927168369e-05
wikipedia_url   : -
====================
name            : cloud impulse mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f30>
salience        : 6.13857337157242e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99080>
salience        : 6.135422881925479e-05
wikipedia_url   : -
====================
name            : nightingale berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99580>
salience        : 6.13221200183034e-05
wikipedia_url   : -
====================
name            : pollution
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ad0>
salience        : 6.123095954535529e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99760>
salience        : 6.123095954535529e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b70>
salience        : 6.119815225247294e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77080>
salience        : 6.117565499152988e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77120>
salience        : 6.116643635323271e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77300>
salience        : 6.116643635323271e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e774e0>
salience        : 6.114132702350616e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77670>
salience        : 6.113792187534273e-05
wikipedia_url   : -
====================
name            : solomongreyband aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e777b0>
salience        : 6.112139817560092e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77850>
salience        : 6.112099799793214e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778f0>
salience        : 6.11044597462751e-05
wikipedia_url   : -
====================
name            : aichoketrust lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77940>
salience        : 6.11044597462751e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77990>
salience        : 6.109190871939063e-05
wikipedia_url   : -
====================
name            : southbank launch festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a30>
salience        : 6.108827074058354e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77bc0>
salience        : 6.107243825681508e-05
wikipedia_url   : -
====================
name            : mayoroflondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c10>
salience        : 6.105692591518164e-05
wikipedia_url   : -
====================
name            : mayoroflondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c60>
salience        : 6.104174099164084e-05
wikipedia_url   : -
====================
name            : southbank launch festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77cb0>
salience        : 6.102685074438341e-05
wikipedia_url   : -
====================
name            : granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e40>
salience        : 6.101664621382952e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f80>
salience        : 6.1012258811388165e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e770d0>
salience        : 6.1012258811388165e-05
wikipedia_url   : -
====================
name            : cultureisgreat lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77170>
salience        : 6.1000300775049254e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77350>
salience        : 6.098390440456569e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77490>
salience        : 6.0956594097660854e-05
wikipedia_url   : -
====================
name            : southbank launch festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77620>
salience        : 6.0917427617823705e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77710>
salience        : 6.089242015150376e-05
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e779e0>
salience        : 6.0868231230415404e-05
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b20>
salience        : 6.082682011765428e-05
wikipedia_url   : -
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b70>
salience        : 6.080757884774357e-05
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d00>
salience        : 6.0805108660133556e-05
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77df0>
salience        : 6.074355042073876e-05
wikipedia_url   : -
====================
name            : power poetry water work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e90>
salience        : 6.074355042073876e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f30>
salience        : 6.071269672247581e-05
wikipedia_url   : -
====================
name            : amp socket shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e771c0>
salience        : 6.0622442106250674e-05
wikipedia_url   : -
====================
name            : wabbey thecitycookie roamingrequired aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77580>
salience        : 6.060351734049618e-05
wikipedia_url   : -
====================
name            : amp socket shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a80>
salience        : 6.054382538422942e-05
wikipedia_url   : -
====================
name            : power alter mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82030>
salience        : 6.0472793848020956e-05
wikipedia_url   : -
====================
name            : treat shows
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e820d0>
salience        : 6.0439822846092284e-05
wikipedia_url   : -
====================
name            : amp socket shaida
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82210>
salience        : 6.0408023273339495e-05
wikipedia_url   : -
====================
name            : cocktails
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e823f0>
salience        : 6.038213541614823e-05
wikipedia_url   : -
====================
name            : piccadilly
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82620>
salience        : 6.031669909134507e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly
====================
name            : hurry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e826c0>
salience        : 6.0293441492831334e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828a0>
salience        : 6.0276266594883054e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a80>
salience        : 6.025303082424216e-05
wikipedia_url   : -
====================
name            : embassy
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82cb0>
salience        : 6.0242229665163904e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e90>
salience        : 6.0188889619894326e-05
wikipedia_url   : -
====================
name            : check show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82120>
salience        : 6.0138743720017374e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82440>
salience        : 6.0135938838357106e-05
wikipedia_url   : -
====================
name            : hello visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e825d0>
salience        : 5.995576793793589e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82670>
salience        : 5.989193596178666e-05
wikipedia_url   : -
====================
name            : installation waterlicht
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82710>
salience        : 5.988562770653516e-05
wikipedia_url   : -
====================
name            : tonight recommendation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828f0>
salience        : 5.982778748148121e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ad0>
salience        : 5.948548641754314e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c60>
salience        : 5.940668415860273e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82da0>
salience        : 5.940668415860273e-05
wikipedia_url   : -
====================
name            : panership technicians_mih
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e821c0>
salience        : 5.9389902162365615e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82850>
salience        : 5.918406168348156e-05
wikipedia_url   : -
====================
name            : thingstodo fridayfeeling lastminute bnb maoldz westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a30>
salience        : 5.9173995396122336e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d00>
salience        : 5.9118519857292995e-05
wikipedia_url   : -
====================
name            : walk station
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82260>
salience        : 5.903840792598203e-05
wikipedia_url   : -
====================
name            : lumiere2018 maoldz westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e824e0>
salience        : 5.896470247535035e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61030>
salience        : 5.8856956457020715e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a611c0>
salience        : 5.884998608962633e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61300>
salience        : 5.8710713346954435e-05
wikipedia_url   : -
====================
name            : teenager
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61530>
salience        : 5.863311162102036e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61670>
salience        : 5.862598118255846e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a617b0>
salience        : 5.8535675634630024e-05
wikipedia_url   : -
====================
name            : show check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a618f0>
salience        : 5.8488978538662195e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61a30>
salience        : 5.8455541875446215e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61ad0>
salience        : 5.819598300149664e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61cb0>
salience        : 5.811303708469495e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61ee0>
salience        : 5.809639333165251e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61080>
salience        : 5.808013156638481e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61210>
salience        : 5.807885099784471e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61350>
salience        : 5.807213892694563e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a614e0>
salience        : 5.804869215353392e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a616c0>
salience        : 5.804869215353392e-05
wikipedia_url   : -
====================
name            : boroughs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61800>
salience        : 5.739571861340664e-05
wikipedia_url   : -
====================
name            : creativityisgreat
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61a80>
salience        : 5.7151501096086577e-05
wikipedia_url   : -
====================
name            : mr
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61da0>
salience        : 5.700824476662092e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61f30>
salience        : 5.6538185162935406e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a618a0>
salience        : 5.653022526530549e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61b20>
salience        : 5.6499284255551174e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61d00>
salience        : 5.6484321248717606e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a610d0>
salience        : 5.6469674746040255e-05
wikipedia_url   : -
====================
name            : event kick
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a619e0>
salience        : 5.641227471642196e-05
wikipedia_url   : -
====================
name            : work display park plaza hotel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd50d0>
salience        : 5.636849164147861e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5210>
salience        : 5.632414831779897e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5350>
salience        : 5.631603562505916e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5490>
salience        : 5.631603562505916e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5670>
salience        : 5.631603562505916e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5850>
salience        : 5.630801751976833e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd59e0>
salience        : 5.6300090363947675e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2670>
salience        : 5.6292257795576006e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095300>
salience        : 5.627685095532797e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095940>
salience        : 5.6261782447109e-05
wikipedia_url   : -
====================
name            : crowd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d00>
salience        : 5.624205732601695e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220951c0>
salience        : 5.623978722724132e-05
wikipedia_url   : -
====================
name            : ldn_ambulance light festival returns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095080>
salience        : 5.623941251542419e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095530>
salience        : 5.623260949505493e-05
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f30>
salience        : 5.623260949505493e-05
wikipedia_url   : -
====================
name            : imakefings leakestarches panership aichoketrust leakestarches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958f0>
salience        : 5.622896060231142e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095760>
salience        : 5.5941807659110054e-05
wikipedia_url   : -
====================
name            : return
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953f0>
salience        : 5.5924796470208094e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095850>
salience        : 5.5571475968463346e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e40>
salience        : 5.5508793593617156e-05
wikipedia_url   : -
====================
name            : oxfordstreet aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095620>
salience        : 5.5459273426095024e-05
wikipedia_url   : -
====================
name            : city thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f80>
salience        : 5.528827750822529e-05
wikipedia_url   : -
====================
name            : kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095030>
salience        : 5.51031444047112e-05
wikipedia_url   : -
====================
name            : lumierelondon rossbolwill
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1df0>
salience        : 5.451298056868836e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1cb0>
salience        : 5.447099101729691e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a30>
salience        : 5.4463740525534377e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb17b0>
salience        : 5.446193608804606e-05
wikipedia_url   : -
====================
name            : example
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1850>
salience        : 5.440056702354923e-05
wikipedia_url   : -
====================
name            : album cover london pa plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb12b0>
salience        : 5.433574187918566e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1030>
salience        : 5.408381548477337e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13f0>
salience        : 5.396964479587041e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a80>
salience        : 5.361254443414509e-05
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098df0>
salience        : 5.361254443414509e-05
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098120>
salience        : 5.354301902116276e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b70>
salience        : 5.354301902116276e-05
wikipedia_url   : -
====================
name            : favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e40>
salience        : 5.354301902116276e-05
wikipedia_url   : -
====================
name            : city favorite
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220989e0>
salience        : 5.351085201255046e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ad0>
salience        : 5.347388287191279e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098580>
salience        : 5.344171586330049e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098bc0>
salience        : 5.3339168516686186e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a260>
salience        : 5.311512722983025e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a670>
salience        : 5.311338827596046e-05
wikipedia_url   : -
====================
name            : rangs rami bebawi kanva waterlight daan roosegaarde grabber mader
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a9e0>
salience        : 5.3099622164154425e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2adf0>
salience        : 5.308158142725006e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a620>
salience        : 5.308158142725006e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2acb0>
salience        : 5.308158142725006e-05
wikipedia_url   : -
====================
name            : light installations lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2af30>
salience        : 5.306543971528299e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8a0>
salience        : 5.306543971528299e-05
wikipedia_url   : -
====================
name            : water
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab20>
salience        : 5.300029079080559e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac60>
salience        : 5.28702003066428e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a990>
salience        : 5.286430678097531e-05
wikipedia_url   : -
====================
name            : photosbytomtom
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a402b0>
salience        : 5.2832929213764146e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40530>
salience        : 5.276008232613094e-05
wikipedia_url   : -
====================
name            : 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht thelondoneye
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40800>
salience        : 5.256111762719229e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a30>
salience        : 5.2393137593753636e-05
wikipedia_url   : -
====================
name            : présentée à londres pour le dg était très heureux assister au lancement du festival hier à la maisonducanada
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b70>
salience        : 5.233580668573268e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d00>
salience        : 5.2333682106109336e-05
wikipedia_url   : -
====================
name            : uniofhes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40030>
salience        : 5.223393236519769e-05
wikipedia_url   : -
====================
name            : camera lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a409e0>
salience        : 5.21755609952379e-05
wikipedia_url   : -
====================
name            : lightpainter lomographyuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40cb0>
salience        : 5.21755609952379e-05
wikipedia_url   : -
====================
name            : yourukparl
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40120>
salience        : 5.1991013606311753e-05
wikipedia_url   : -
====================
name            : frog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a80>
salience        : 5.1991013606311753e-05
wikipedia_url   : -
====================
name            : matthewbandrews ivysohobrass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d50>
salience        : 5.177411003387533e-05
wikipedia_url   : -
====================
name            : afternoon tea
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d50>
salience        : 5.173201861907728e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e90>
salience        : 5.1640858146129176e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd49e0>
salience        : 5.1640858146129176e-05
wikipedia_url   : -
====================
name            : guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4760>
salience        : 5.16338950546924e-05
wikipedia_url   : -
====================
name            : magic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e40>
salience        : 5.1549042836995795e-05
wikipedia_url   : -
====================
name            : afternoon tea
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4cb0>
salience        : 5.1549042836995795e-05
wikipedia_url   : -
====================
name            : food take show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde70d0>
salience        : 5.152054291102104e-05
wikipedia_url   : -
====================
name            : mass happenings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7080>
salience        : 5.145493560121395e-05
wikipedia_url   : -
====================
name            : bill
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7620>
salience        : 5.1407561841188e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c60>
salience        : 5.134506864123978e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7990>
salience        : 5.134506864123978e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde79e0>
salience        : 5.134506864123978e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7710>
salience        : 5.133555896463804e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7440>
salience        : 5.133555896463804e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7260>
salience        : 5.1326194807188585e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e90>
salience        : 5.1326194807188585e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7940>
salience        : 5.1316965254954994e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7030>
salience        : 5.1316965254954994e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7da0>
salience        : 5.1316965254954994e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde76c0>
salience        : 5.1307870307937264e-05
wikipedia_url   : -
====================
name            : amp entrances
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e40>
salience        : 5.12989099661354e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967bc0>
salience        : 5.129007331561297e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e90>
salience        : 5.128136035636999e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967490>
salience        : 5.1272767450427637e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d00>
salience        : 5.1272767450427637e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce350>
salience        : 5.126429095980711e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce210>
salience        : 5.126429095980711e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce0d0>
salience        : 5.126429095980711e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78f0>
salience        : 5.1247676310595125e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b77b0>
salience        : 5.1247676310595125e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7530>
salience        : 5.123953087604605e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7350>
salience        : 5.123953087604605e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7440>
salience        : 5.123953087604605e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73a0>
salience        : 5.121572030475363e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7b20>
salience        : 5.120798232383095e-05
wikipedia_url   : -
====================
name            : lovecamden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d440>
salience        : 5.1201441237935796e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3f0>
salience        : 5.120033529237844e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d300>
salience        : 5.120033529237844e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d4e0>
salience        : 5.11834368808195e-05
wikipedia_url   : -
====================
name            : holidays
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d170>
salience        : 5.1151469961041585e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de90>
salience        : 5.115067324368283e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015bc0>
salience        : 5.11413200001698e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229dbe40>
salience        : 5.105823220219463e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081080>
salience        : 5.105823220219463e-05
wikipedia_url   : -
====================
name            : cantwait
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220814e0>
salience        : 5.102052091388032e-05
wikipedia_url   : -
====================
name            : yourukparl
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081990>
salience        : 5.09705459990073e-05
wikipedia_url   : -
====================
name            : issue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081bc0>
salience        : 5.09705459990073e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081620>
salience        : 5.095635060570203e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220812b0>
salience        : 5.094255902804434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081300>
salience        : 5.094255902804434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081f30>
salience        : 5.094255902804434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220672b0>
salience        : 5.094255902804434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067f30>
salience        : 5.092906576464884e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c10>
salience        : 5.092906576464884e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067030>
salience        : 5.092906576464884e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5440>
salience        : 5.092906576464884e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a80>
salience        : 5.089026672067121e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b70>
salience        : 5.08656921738293e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e40>
salience        : 5.085375960334204e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78a0>
salience        : 5.084205258754082e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7580>
salience        : 5.0830563850468025e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7620>
salience        : 5.081928247818723e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a30>
salience        : 5.080820483271964e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ee0>
salience        : 5.080820483271964e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e90>
salience        : 5.080820483271964e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220752b0>
salience        : 5.079732363810763e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b70>
salience        : 5.079732363810763e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758a0>
salience        : 5.079732363810763e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075850>
salience        : 5.076578236185014e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb70>
salience        : 5.076578236185014e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c2b0>
salience        : 5.076578236185014e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c030>
salience        : 5.075561421108432e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3a0>
salience        : 5.075561421108432e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8530>
salience        : 5.0745613407343626e-05
wikipedia_url   : -
====================
name            : londonisopen visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d00>
salience        : 5.074343425803818e-05
wikipedia_url   : -
====================
name            : lumierelondon aichoke thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc476c0>
salience        : 5.0635946536203846e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47300>
salience        : 5.057657472207211e-05
wikipedia_url   : -
====================
name            : guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9080>
salience        : 5.0555463531054556e-05
wikipedia_url   : -
====================
name            : québec
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9120>
salience        : 5.048650564276613e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Quebec
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6ad0>
salience        : 5.045438592787832e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a24e0>
salience        : 5.044475255999714e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f80>
salience        : 5.041672557126731e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf9e0>
salience        : 5.0398728490108624e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643a0>
salience        : 5.034770583733916e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064260>
salience        : 5.033160050516017e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e90>
salience        : 5.032370245316997e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b70>
salience        : 5.032370245316997e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0120>
salience        : 5.0315906264586374e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0620>
salience        : 5.0293099775444716e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03f0>
salience        : 5.0272585212951526e-05
wikipedia_url   : -
====================
name            : plan works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5bc0>
salience        : 5.0205089792143553e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5e90>
salience        : 5.011500616092235e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd51c0>
salience        : 5.005343700759113e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd54e0>
salience        : 5.003988917451352e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5710>
salience        : 5.0026636017719284e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd58f0>
salience        : 5.0013662985293195e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5b70>
salience        : 4.998852455173619e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5d50>
salience        : 4.9976333684753627e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5120>
salience        : 4.9976333684753627e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5c60>
salience        : 4.9941161705646664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5a30>
salience        : 4.9929876695387065e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21300>
salience        : 4.9918795411940664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21210>
salience        : 4.9918795411940664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21530>
salience        : 4.9918795411940664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a219e0>
salience        : 4.9918795411940664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21cb0>
salience        : 4.9918795411940664e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21170>
salience        : 4.987639476894401e-05
wikipedia_url   : -
====================
name            : surface
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218a0>
salience        : 4.974852708983235e-05
wikipedia_url   : -
====================
name            : lumierelondon robwdawkins
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c60>
salience        : 4.965184416505508e-05
wikipedia_url   : -
====================
name            : amp check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21080>
salience        : 4.9598314944887534e-05
wikipedia_url   : -
====================
name            : travel info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213f0>
salience        : 4.955306576448493e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21800>
salience        : 4.946721674059518e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d00>
salience        : 4.939333302900195e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b70>
salience        : 4.9373666115570813e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a210d0>
salience        : 4.9366346502210945e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21620>
salience        : 4.934332537231967e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e40>
salience        : 4.93275401822757e-05
wikipedia_url   : -
====================
name            : lighting displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a30>
salience        : 4.931216244585812e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21bc0>
salience        : 4.931216244585812e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21df0>
salience        : 4.929716669721529e-05
wikipedia_url   : -
====================
name            : em londres você não pode perder festival de luzes produzido pela empresa criativa aichoketrust transforma até sábado 20 01
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21580>
salience        : 4.926042674924247e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a217b0>
salience        : 4.916812031297013e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21030>
salience        : 4.91546124976594e-05
wikipedia_url   : -
====================
name            : lovelondon visitlondon photograph
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22975440>
salience        : 4.902717410004698e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38170>
salience        : 4.8878919187700376e-05
wikipedia_url   : -
====================
name            : happyfriday wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38260>
salience        : 4.887660179520026e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38350>
salience        : 4.8736168537288904e-05
wikipedia_url   : -
====================
name            : lambeth
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a383f0>
salience        : 4.869401891482994e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38440>
salience        : 4.854879807680845e-05
wikipedia_url   : -
====================
name            : plant
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a384e0>
salience        : 4.851022094953805e-05
wikipedia_url   : -
====================
name            : amp socket ganton street plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38580>
salience        : 4.837707820115611e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a386c0>
salience        : 4.834807987208478e-05
wikipedia_url   : -
====================
name            : mike london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a388a0>
salience        : 4.83153598906938e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38940>
salience        : 4.829539466300048e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38a30>
salience        : 4.829539466300048e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38bc0>
salience        : 4.819653258891776e-05
wikipedia_url   : -
====================
name            : londonisopen mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38c60>
salience        : 4.818703746423125e-05
wikipedia_url   : -
====================
name            : mayoroflondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38da0>
salience        : 4.7923833335516974e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38ee0>
salience        : 4.791878382093273e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38210>
salience        : 4.789399463334121e-05
wikipedia_url   : -
====================
name            : camdenis kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38300>
salience        : 4.788149817613885e-05
wikipedia_url   : -
====================
name            : row kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a385d0>
salience        : 4.788149817613885e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38530>
salience        : 4.7875008021946996e-05
wikipedia_url   : -
====================
name            : cloud impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38710>
salience        : 4.786533827427775e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38850>
salience        : 4.782136238645762e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38990>
salience        : 4.7816844016779214e-05
wikipedia_url   : -
====================
name            : muirkate kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a389e0>
salience        : 4.7816844016779214e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38ad0>
salience        : 4.776562855113298e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38c10>
salience        : 4.776562855113298e-05
wikipedia_url   : -
====================
name            : rise
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38cb0>
salience        : 4.773838372784667e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38df0>
salience        : 4.770089071826078e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38f80>
salience        : 4.767937207361683e-05
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf4e0>
salience        : 4.7661607823101804e-05
wikipedia_url   : -
====================
name            : help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf210>
salience        : 4.7577472287230194e-05
wikipedia_url   : -
====================
name            : kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa670>
salience        : 4.755818372359499e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaee0>
salience        : 4.750724110635929e-05
wikipedia_url   : -
====================
name            : camdenis kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae40>
salience        : 4.749517756863497e-05
wikipedia_url   : -
====================
name            : camdenis kingscross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa2b0>
salience        : 4.748336141346954e-05
wikipedia_url   : -
====================
name            : installation mayfair kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa120>
salience        : 4.743837416754104e-05
wikipedia_url   : -
====================
name            : wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab20>
salience        : 4.743390672956593e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa080>
salience        : 4.7396639274666086e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa030>
salience        : 4.737488052342087e-05
wikipedia_url   : -
====================
name            : 2 citycruises stjpiccadilly traceyemin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa850>
salience        : 4.73629952466581e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaacb0>
salience        : 4.73213403893169e-05
wikipedia_url   : -
====================
name            : evening lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad00>
salience        : 4.731981971417554e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa6c0>
salience        : 4.727249324787408e-05
wikipedia_url   : -
====================
name            : thoughts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3a0>
salience        : 4.7229808842530474e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf80>
salience        : 4.720091965282336e-05
wikipedia_url   : -
====================
name            : installation light spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab70>
salience        : 4.71944258606527e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa80>
salience        : 4.713475937023759e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaada0>
salience        : 4.708427150035277e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf30>
salience        : 4.705292667495087e-05
wikipedia_url   : -
====================
name            : state
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3f0>
salience        : 4.7014840674819425e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad50>
salience        : 4.698021075455472e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa9e0>
salience        : 4.693056325777434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa990>
salience        : 4.693056325777434e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa210>
salience        : 4.692410220741294e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaad0>
salience        : 4.692410220741294e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa7b0>
salience        : 4.6911402023397386e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa300>
salience        : 4.690515561378561e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa580>
salience        : 4.689897832577117e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa490>
salience        : 4.6892866521375254e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa30>
salience        : 4.6892866521375254e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d030>
salience        : 4.6892866521375254e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d080>
salience        : 4.688681656261906e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d120>
salience        : 4.688580156653188e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d170>
salience        : 4.68808357254602e-05
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d1c0>
salience        : 4.684771192842163e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d2b0>
salience        : 4.6830795326968655e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d3a0>
salience        : 4.6764849685132504e-05
wikipedia_url   : -
====================
name            : goodge street station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d440>
salience        : 4.6764849685132504e-05
wikipedia_url   : -
====================
name            : photography aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d4e0>
salience        : 4.670575799536891e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d5d0>
salience        : 4.6691897296113893e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d6c0>
salience        : 4.6567354729631916e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0cb0>
salience        : 4.6567194658564404e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb080>
salience        : 4.652609277400188e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3f0>
salience        : 4.64951190224383e-05
wikipedia_url   : -
====================
name            : anglepoise lamps line street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb620>
salience        : 4.6487635700032115e-05
wikipedia_url   : -
====================
name            : architecture amp streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb800>
salience        : 4.6451623347820714e-05
wikipedia_url   : -
====================
name            : mpssouthwark project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb990>
salience        : 4.636826997739263e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debc10>
salience        : 4.619299215846695e-05
wikipedia_url   : -
====================
name            : lighting streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debee0>
salience        : 4.618663660949096e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb1c0>
salience        : 4.617650483851321e-05
wikipedia_url   : -
====================
name            : projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb530>
salience        : 4.617650483851321e-05
wikipedia_url   : -
====================
name            : lighting streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba30>
salience        : 4.61634190287441e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3a0>
salience        : 4.615216312231496e-05
wikipedia_url   : -
====================
name            : projector
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe40>
salience        : 4.614490899257362e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb710>
salience        : 4.613364581018686e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a990d0>
salience        : 4.612975681084208e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a992b0>
salience        : 4.612975681084208e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99710>
salience        : 4.611967960954644e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c60>
salience        : 4.611187978298403e-05
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f80>
salience        : 4.609263123711571e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998f0>
salience        : 4.6086359361652285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99440>
salience        : 4.6086359361652285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e775d0>
salience        : 4.6086359361652285e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778a0>
salience        : 4.606194488587789e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ad0>
salience        : 4.604127025231719e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ee0>
salience        : 4.5940265408717096e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e776c0>
salience        : 4.5931774366181344e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77440>
salience        : 4.5822245738236234e-05
wikipedia_url   : -
====================
name            : success
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82080>
salience        : 4.5822245738236234e-05
wikipedia_url   : -
====================
name            : studio wireframe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82170>
salience        : 4.5822245738236234e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82350>
salience        : 4.5738885091850534e-05
wikipedia_url   : -
====================
name            : interview
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82760>
salience        : 4.569843440549448e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82940>
salience        : 4.569636803353205e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82b20>
salience        : 4.567626820062287e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d50>
salience        : 4.56664856756106e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f30>
salience        : 4.56664856756106e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ee0>
salience        : 4.5636999857379124e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82990>
salience        : 4.562898902804591e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f80>
salience        : 4.5553988456958905e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61260>
salience        : 4.551242454908788e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a615d0>
salience        : 4.548890865407884e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61990>
salience        : 4.548607466858812e-05
wikipedia_url   : -
====================
name            : aist colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61c10>
salience        : 4.544926923699677e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61f80>
salience        : 4.544467446976341e-05
wikipedia_url   : -
====================
name            : fitzrovia amp south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a612b0>
salience        : 4.544467446976341e-05
wikipedia_url   : -
====================
name            : check beginner guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61490>
salience        : 4.5441094698617235e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61580>
salience        : 4.5359800424193963e-05
wikipedia_url   : -
====================
name            : possibilities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61760>
salience        : 4.53465327154845e-05
wikipedia_url   : -
====================
name            : regent street etc
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61940>
salience        : 4.53465327154845e-05
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61e90>
salience        : 4.533216269919649e-05
wikipedia_url   : -
====================
name            : ian bone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5170>
salience        : 4.527201235760003e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5580>
salience        : 4.5176402636570856e-05
wikipedia_url   : -
====================
name            : event book table
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5760>
salience        : 4.5147757191443816e-05
wikipedia_url   : -
====================
name            : city thelondoneye
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c10>
salience        : 4.5137086999602616e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095df0>
salience        : 4.513097883318551e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220950d0>
salience        : 4.513097883318551e-05
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095670>
salience        : 4.513097883318551e-05
wikipedia_url   : -
====================
name            : wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9d00>
salience        : 4.509931750362739e-05
wikipedia_url   : -
====================
name            : rituals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1e90>
salience        : 4.509478822001256e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1170>
salience        : 4.508902566158213e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1490>
salience        : 4.5079021219862625e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e90>
salience        : 4.5074353693053126e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983f0>
salience        : 4.507212361204438e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098490>
salience        : 4.505953984335065e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f30>
salience        : 4.505005563260056e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220982b0>
salience        : 4.505005563260056e-05
wikipedia_url   : -
====================
name            : bride baby
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38080>
salience        : 4.5046483137412e-05
wikipedia_url   : -
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5e40>
salience        : 4.504072785493918e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988a0>
salience        : 4.5022541598882526e-05
wikipedia_url   : -
====================
name            : environment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a080>
salience        : 4.4922846427652985e-05
wikipedia_url   : -
====================
name            : manner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a530>
salience        : 4.4922846427652985e-05
wikipedia_url   : -
====================
name            : cberridgestudio
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab70>
salience        : 4.4922846427652985e-05
wikipedia_url   : -
====================
name            : look guide gt southbanklondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad00>
salience        : 4.4891949073644355e-05
wikipedia_url   : -
====================
name            : time
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a490>
salience        : 4.4859374611405656e-05
wikipedia_url   : -
====================
name            : mazerestaurant
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a850>
salience        : 4.482207805267535e-05
wikipedia_url   : -
====================
name            : list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa80>
salience        : 4.477908441913314e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a0d0>
salience        : 4.477527545532212e-05
wikipedia_url   : -
====================
name            : ships
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a580>
salience        : 4.476395042729564e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae90>
salience        : 4.4694945245282724e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e90>
salience        : 4.4656553654931486e-05
wikipedia_url   : -
====================
name            : spirit installation westminsterboys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403f0>
salience        : 4.465019446797669e-05
wikipedia_url   : -
====================
name            : cou road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ee0>
salience        : 4.446964157978073e-05
wikipedia_url   : -
====================
name            : droplets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40bc0>
salience        : 4.4468681153375655e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f80>
salience        : 4.4453921873355284e-05
wikipedia_url   : -
====================
name            : line king cross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd44e0>
salience        : 4.440630436874926e-05
wikipedia_url   : -
====================
name            : londonlove emraczkowski london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4800>
salience        : 4.439741314854473e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4df0>
salience        : 4.438948963070288e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a80>
salience        : 4.438948963070288e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7cb0>
salience        : 4.4383981730788946e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d940>
salience        : 4.436994277057238e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d7b0>
salience        : 4.429180989973247e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db20>
salience        : 4.4284584873821586e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220817b0>
salience        : 4.4243155571166426e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081350>
salience        : 4.4243155571166426e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d760>
salience        : 4.4236552639631554e-05
wikipedia_url   : -
====================
name            : lots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d7b0>
salience        : 4.414155046106316e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d8a0>
salience        : 4.403440107125789e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d8f0>
salience        : 4.400173929752782e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d990>
salience        : 4.395793075673282e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4da30>
salience        : 4.3947416997980326e-05
wikipedia_url   : -
====================
name            : timeoutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dad0>
salience        : 4.39386822108645e-05
wikipedia_url   : -
====================
name            : streets plan route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4db20>
salience        : 4.390071626403369e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4db70>
salience        : 4.385460852063261e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dc10>
salience        : 4.3852312956005335e-05
wikipedia_url   : -
====================
name            : effect kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dcb0>
salience        : 4.3770840420620516e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dd50>
salience        : 4.375242133392021e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4ddf0>
salience        : 4.375242133392021e-05
wikipedia_url   : -
====================
name            : culturetrip
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dee0>
salience        : 4.367882138467394e-05
wikipedia_url   : -
====================
name            : sarah_wall nightingale berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4df80>
salience        : 4.35903093602974e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea20d0>
salience        : 4.329971852712333e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2170>
salience        : 4.3296073272358626e-05
wikipedia_url   : -
====================
name            : city thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2210>
salience        : 4.323787652538158e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea22b0>
salience        : 4.3235795601503924e-05
wikipedia_url   : -
====================
name            : fridayfeeling fridaynight fridaymotivation tgif metrouk standardcity designcouncil lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2350>
salience        : 4.320187872508541e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea23f0>
salience        : 4.3200056097703055e-05
wikipedia_url   : -
====================
name            : aboutlondon control control
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2440>
salience        : 4.315418118494563e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea24e0>
salience        : 4.312288001528941e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2580>
salience        : 4.309417272452265e-05
wikipedia_url   : -
====================
name            : lighta lightfestival lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2620>
salience        : 4.2965901229763404e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea26c0>
salience        : 4.2949337512254715e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2760>
salience        : 4.29311694460921e-05
wikipedia_url   : -
====================
name            : news page information locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2800>
salience        : 4.287018600734882e-05
wikipedia_url   : -
====================
name            : lumierelondon regentstreet london lumiere visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea28a0>
salience        : 4.284326860215515e-05
wikipedia_url   : -
====================
name            : bridge street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2990>
salience        : 4.282459121895954e-05
wikipedia_url   : -
====================
name            : mayfair_ldn kingscrossn1c grosvenor_ldn visitlondon london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2a30>
salience        : 4.268169141141698e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2a80>
salience        : 4.264771268935874e-05
wikipedia_url   : -
====================
name            : aichoketrust outdooras london lumierelondon priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2b20>
salience        : 4.262514630681835e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2c10>
salience        : 4.258945045876317e-05
wikipedia_url   : -
====================
name            : realdaveedwards lumierelondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2c60>
salience        : 4.25827456638217e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2d50>
salience        : 4.2577394196996465e-05
wikipedia_url   : -
====================
name            : ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2e40>
salience        : 4.2577394196996465e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2f30>
salience        : 4.2565610783640295e-05
wikipedia_url   : -
====================
name            : mayfair lumierelondon berkeleyst_bar london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8030>
salience        : 4.256454485584982e-05
wikipedia_url   : -
====================
name            : staffordlondon lighting streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db80d0>
salience        : 4.253727456671186e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8170>
salience        : 4.251405334798619e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db81c0>
salience        : 4.2368355934740975e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8260>
salience        : 4.235444066580385e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8300>
salience        : 4.234089283272624e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83a0>
salience        : 4.222030838718638e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8440>
salience        : 4.2214156565023586e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8530>
salience        : 4.220562186674215e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db85d0>
salience        : 4.220206392346881e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8620>
salience        : 4.219490438117646e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db86c0>
salience        : 4.215636363369413e-05
wikipedia_url   : -
====================
name            : shots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8710>
salience        : 4.215323497192003e-05
wikipedia_url   : -
====================
name            : solomongreyband
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db87b0>
salience        : 4.209093458484858e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8800>
salience        : 4.1969593439716846e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88f0>
salience        : 4.18441959482152e-05
wikipedia_url   : -
====================
name            : lumerie london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8990>
salience        : 4.180669202469289e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db89e0>
salience        : 4.172897388343699e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a80>
salience        : 4.168279701843858e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b20>
salience        : 4.168279701843858e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c10>
salience        : 4.1653092921478674e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d00>
salience        : 4.164323036093265e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8df0>
salience        : 4.153498593950644e-05
wikipedia_url   : -
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e90>
salience        : 4.153498593950644e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ee0>
salience        : 4.142768739257008e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f30>
salience        : 4.141222598263994e-05
wikipedia_url   : -
====================
name            : nightingale berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f80>
salience        : 4.1404673538636416e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53080>
salience        : 4.138352596783079e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53120>
salience        : 4.1382660128874704e-05
wikipedia_url   : -
====================
name            : rest granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53170>
salience        : 4.1361570765729994e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53210>
salience        : 4.134576738579199e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a532b0>
salience        : 4.1334762499900535e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53300>
salience        : 4.1315550333820283e-05
wikipedia_url   : -
====================
name            : granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a533a0>
salience        : 4.1315550333820283e-05
wikipedia_url   : -
====================
name            : programme map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53440>
salience        : 4.129396620555781e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53490>
salience        : 4.125337000004947e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53530>
salience        : 4.121798338019289e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a535d0>
salience        : 4.117736534681171e-05
wikipedia_url   : -
====================
name            : granary square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53620>
salience        : 4.110631562070921e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53670>
salience        : 4.110631562070921e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a536c0>
salience        : 4.1099054215010256e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53710>
salience        : 4.1073650209000334e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53760>
salience        : 4.106212145416066e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a537b0>
salience        : 4.106155756744556e-05
wikipedia_url   : -
====================
name            : line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53800>
salience        : 4.103964602109045e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a538a0>
salience        : 4.103964602109045e-05
wikipedia_url   : -
====================
name            : hyde park corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53940>
salience        : 4.101813829038292e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a539e0>
salience        : 4.0997518226504326e-05
wikipedia_url   : -
====================
name            : nightingale berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53a30>
salience        : 4.094437827006914e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53ad0>
salience        : 4.093630923307501e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53bc0>
salience        : 4.0922641346696764e-05
wikipedia_url   : -
====================
name            : wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53cb0>
salience        : 4.086744593223557e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53da0>
salience        : 4.085756518179551e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53e40>
salience        : 4.085756518179551e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53f30>
salience        : 4.0842543967301026e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53f80>
salience        : 4.083943349542096e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e0d0>
salience        : 4.0813800296746194e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e1c0>
salience        : 4.0786628233036026e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e2b0>
salience        : 4.0780199924483895e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e300>
salience        : 4.0744351281318814e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e3a0>
salience        : 4.0603208617540076e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e440>
salience        : 4.0558814362157136e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e4e0>
salience        : 4.0541879570810124e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e580>
salience        : 4.0541879570810124e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e620>
salience        : 4.053754673805088e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e6c0>
salience        : 4.050966526847333e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e760>
salience        : 4.050449570058845e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e800>
salience        : 4.050449570058845e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e8f0>
salience        : 4.0503888158127666e-05
wikipedia_url   : -
====================
name            : amyelizabethtv
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e940>
salience        : 4.0472627006238326e-05
wikipedia_url   : -
====================
name            : coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e990>
salience        : 4.0444258047500625e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e9e0>
salience        : 4.0404542232863605e-05
wikipedia_url   : -
====================
name            : installation music
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ea30>
salience        : 4.036112659377977e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ead0>
salience        : 4.036112659377977e-05
wikipedia_url   : -
====================
name            : visit half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7eb20>
salience        : 4.03131743951235e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ebc0>
salience        : 4.029723640996963e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ecb0>
salience        : 4.02767036575824e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7eda0>
salience        : 4.026347596663982e-05
wikipedia_url   : -
====================
name            : bloombergservice visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ee40>
salience        : 4.020270716864616e-05
wikipedia_url   : -
====================
name            : pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7eee0>
salience        : 4.013532816316001e-05
wikipedia_url   : -
====================
name            : carnabystreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ef80>
salience        : 3.9992795791476965e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79030>
salience        : 3.994020516984165e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e790d0>
salience        : 3.993834980065003e-05
wikipedia_url   : -
====================
name            : selfies aichoketrust tgjenkins westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79170>
salience        : 3.977475716965273e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79210>
salience        : 3.964390998589806e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e792b0>
salience        : 3.962677510571666e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79350>
salience        : 3.957752778660506e-05
wikipedia_url   : -
====================
name            : folks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e793f0>
salience        : 3.9576971175847575e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79490>
salience        : 3.9495938835898414e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79530>
salience        : 3.9495938835898414e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e795d0>
salience        : 3.9483929867856205e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79670>
salience        : 3.946755168726668e-05
wikipedia_url   : -
====================
name            : loveuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79760>
salience        : 3.945839489460923e-05
wikipedia_url   : -
====================
name            : song lumierelondon badger london light love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e797b0>
salience        : 3.942894181818701e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79850>
salience        : 3.9422673580702394e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e798f0>
salience        : 3.939733869628981e-05
wikipedia_url   : -
====================
name            : chinatownlondon launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79940>
salience        : 3.9390837628161535e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e799e0>
salience        : 3.9389185985783115e-05
wikipedia_url   : -
====================
name            : aichoketrust light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79a30>
salience        : 3.938419831683859e-05
wikipedia_url   : -
====================
name            : design
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79b20>
salience        : 3.9321686926996335e-05
wikipedia_url   : -
====================
name            : te ti londontheinside london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79bc0>
salience        : 3.928794831153937e-05
wikipedia_url   : -
====================
name            : visitlondon priorconstruct lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79c60>
salience        : 3.928794831153937e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79d00>
salience        : 3.9267135434783995e-05
wikipedia_url   : -
====================
name            : southbank london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79da0>
salience        : 3.9262071368284523e-05
wikipedia_url   : https://en.wikipedia.org/wiki/South_Bank
====================
name            : lights sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79e40>
salience        : 3.924366319552064e-05
wikipedia_url   : -
====================
name            : lights sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79ee0>
salience        : 3.923349140677601e-05
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79f80>
salience        : 3.916206696885638e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48030>
salience        : 3.916173955076374e-05
wikipedia_url   : -
====================
name            : lumiere lettherebelight visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a480d0>
salience        : 3.913410546374507e-05
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48170>
salience        : 3.91328358091414e-05
wikipedia_url   : -
====================
name            : design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48210>
salience        : 3.9118865970522165e-05
wikipedia_url   : -
====================
name            : evening beauty design
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a482b0>
salience        : 3.9118865970522165e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48300>
salience        : 3.9113714592531323e-05
wikipedia_url   : -
====================
name            : designs
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a483f0>
salience        : 3.9066762838047e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48440>
salience        : 3.888097489834763e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48490>
salience        : 3.8865771784912795e-05
wikipedia_url   : -
====================
name            : app store
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48530>
salience        : 3.878970164805651e-05
wikipedia_url   : -
====================
name            : look guide gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a485d0>
salience        : 3.871921944664791e-05
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48670>
salience        : 3.8702964957337826e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8300>
salience        : 3.826522879535332e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed50>
salience        : 3.817731703747995e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93530>
salience        : 3.805791129707359e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ee0>
salience        : 3.802276842179708e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8a0>
salience        : 3.800618287641555e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ad0>
salience        : 3.79201810574159e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064990>
salience        : 3.788563117268495e-05
wikipedia_url   : -
====================
name            : tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e40>
salience        : 3.788125832215883e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a214e0>
salience        : 3.788010872085579e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21120>
salience        : 3.787465175264515e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213a0>
salience        : 3.787398964050226e-05
wikipedia_url   : -
====================
name            : return
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21850>
salience        : 3.786804518313147e-05
wikipedia_url   : -
====================
name            : festival granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c10>
salience        : 3.7863926991121843e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ee0>
salience        : 3.785344961215742e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21710>
salience        : 3.776625089813024e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ad0>
salience        : 3.775193908950314e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a211c0>
salience        : 3.775193908950314e-05
wikipedia_url   : -
====================
name            : tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21760>
salience        : 3.767434100154787e-05
wikipedia_url   : -
====================
name            : daan roosegaarde
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21670>
salience        : 3.766901500057429e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Daan_Roosegaarde
====================
name            : come work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21da0>
salience        : 3.764801294892095e-05
wikipedia_url   : -
====================
name            : frontier
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21350>
salience        : 3.7578807678073645e-05
wikipedia_url   : -
====================
name            : festival cocktail sign
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218f0>
salience        : 3.754793215193786e-05
wikipedia_url   : -
====================
name            : abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f80>
salience        : 3.7545647501247004e-05
wikipedia_url   : -
====================
name            : aichoketrust lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21260>
salience        : 3.7478523154277354e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x110b3aa80>
salience        : 3.7448175135068595e-05
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa0d0>
salience        : 3.742767876246944e-05
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa440>
salience        : 3.742767876246944e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa530>
salience        : 3.737120277946815e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa620>
salience        : 3.733506673597731e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac10>
salience        : 3.732437107828446e-05
wikipedia_url   : -
====================
name            : youtube
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa350>
salience        : 3.731785182026215e-05
wikipedia_url   : https://en.wikipedia.org/wiki/YouTube
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaadf0>
salience        : 3.730538810486905e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f30>
salience        : 3.730538810486905e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0030>
salience        : 3.726161958184093e-05
wikipedia_url   : -
====================
name            : ivysohobrass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03a0>
salience        : 3.724792259163223e-05
wikipedia_url   : -
====================
name            : lighting amp architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b02b0>
salience        : 3.723462577909231e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e40>
salience        : 3.722170731634833e-05
wikipedia_url   : -
====================
name            : aether collaboration architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0350>
salience        : 3.720914901350625e-05
wikipedia_url   : -
====================
name            : go lumierelondon dragonlovinglfc lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ee0>
salience        : 3.716982246260159e-05
wikipedia_url   : -
====================
name            : granary square visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a991c0>
salience        : 3.716340143000707e-05
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993a0>
salience        : 3.710848977789283e-05
wikipedia_url   : -
====================
name            : walk station
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a997b0>
salience        : 3.710281089297496e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99df0>
salience        : 3.7038029404357076e-05
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c10>
salience        : 3.6926398024661466e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77210>
salience        : 3.692101745400578e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77800>
salience        : 3.687079151859507e-05
wikipedia_url   : -
====================
name            : festival returns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d50>
salience        : 3.6867568269371986e-05
wikipedia_url   : -
====================
name            : fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77030>
salience        : 3.6865305446553975e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e822b0>
salience        : 3.684817420435138e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82580>
salience        : 3.6800385714741424e-05
wikipedia_url   : -
====================
name            : fridayfeelings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82800>
salience        : 3.6800385714741424e-05
wikipedia_url   : -
====================
name            : fridayfeeling
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c10>
salience        : 3.6785524571314454e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82300>
salience        : 3.6679986806120723e-05
wikipedia_url   : -
====================
name            : hav
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82530>
salience        : 3.66776148439385e-05
wikipedia_url   : -
====================
name            : interview
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82bc0>
salience        : 3.6399156670086086e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e827b0>
salience        : 3.639109490904957e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5b20>
salience        : 3.636737892520614e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5da0>
salience        : 3.6361794627737254e-05
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5f30>
salience        : 3.629537968663499e-05
wikipedia_url   : -
====================
name            : festival performances
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5080>
salience        : 3.629537604865618e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd53a0>
salience        : 3.6250075936550274e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd55d0>
salience        : 3.622215808718465e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd58a0>
salience        : 3.6191231629345566e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5ad0>
salience        : 3.6069734051125124e-05
wikipedia_url   : -
====================
name            : disruption traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5c10>
salience        : 3.606678365031257e-05
wikipedia_url   : -
====================
name            : lovecamden
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5df0>
salience        : 3.605714300647378e-05
wikipedia_url   : -
====================
name            : squareuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd57b0>
salience        : 3.605561869335361e-05
wikipedia_url   : -
====================
name            : westminsterabbey love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5f80>
salience        : 3.604225639719516e-05
wikipedia_url   : -
====================
name            : office favourites
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5260>
salience        : 3.603978257160634e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd56c0>
salience        : 3.601392018026672e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd52b0>
salience        : 3.593703149817884e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095800>
salience        : 3.5909979487769306e-05
wikipedia_url   : -
====================
name            : therose westminstercath victoriabid uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ee0>
salience        : 3.5895369364880025e-05
wikipedia_url   : -
====================
name            : thecrick teamldn
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095da0>
salience        : 3.587564788176678e-05
wikipedia_url   : -
====================
name            : walk traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1530>
salience        : 3.5839617339661345e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b20>
salience        : 3.582409772207029e-05
wikipedia_url   : -
====================
name            : visitlondon highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1940>
salience        : 3.577412644517608e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b70>
salience        : 3.575886876205914e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a381c0>
salience        : 3.5748744267039e-05
wikipedia_url   : -
====================
name            : celebrations
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38620>
salience        : 3.574373840820044e-05
wikipedia_url   : -
====================
name            : light installations lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38760>
salience        : 3.573885260266252e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38b20>
salience        : 3.572930654627271e-05
wikipedia_url   : -
====================
name            : nothing images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38e40>
salience        : 3.5675937397172675e-05
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38490>
salience        : 3.567526437109336e-05
wikipedia_url   : -
====================
name            : light installations lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a387b0>
salience        : 3.564271537470631e-05
wikipedia_url   : -
====================
name            : light installations lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a388f0>
salience        : 3.564271537470631e-05
wikipedia_url   : -
====================
name            : light installations lighting capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38a80>
salience        : 3.564271537470631e-05
wikipedia_url   : -
====================
name            : opening night highlights
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38b70>
salience        : 3.562841811799444e-05
wikipedia_url   : -
====================
name            : time highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38d50>
salience        : 3.562841811799444e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38120>
salience        : 3.562731217243709e-05
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a613a0>
salience        : 3.5619810660136864e-05
wikipedia_url   : -
====================
name            : traffic lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61710>
salience        : 3.555549119482748e-05
wikipedia_url   : -
====================
name            : fitzrovia london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61850>
salience        : 3.554573777364567e-05
wikipedia_url   : -
====================
name            : installation viewing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61b70>
salience        : 3.5517710784915835e-05
wikipedia_url   : -
====================
name            : works traceyemin alaaminawi arabelladorman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61df0>
salience        : 3.55075862898957e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a613f0>
salience        : 3.532427945174277e-05
wikipedia_url   : -
====================
name            : londonevents cadburyuk mrfoggsgb thraedable visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61bc0>
salience        : 3.5307431971887127e-05
wikipedia_url   : -
====================
name            : sarah_wall nightingale berkeley square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61c60>
salience        : 3.5298053262522444e-05
wikipedia_url   : -
====================
name            : aichoketrust mastercardukbiz anouskaladds visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089440>
salience        : 3.529102468746714e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb170>
salience        : 3.528644083417021e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb300>
salience        : 3.527844091877341e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb4e0>
salience        : 3.526870204950683e-05
wikipedia_url   : -
====================
name            : teamlondon lumierelondon manilove london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debad0>
salience        : 3.5255132388556376e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb350>
salience        : 3.521950566209853e-05
wikipedia_url   : -
====================
name            : aa_etc
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debcb0>
salience        : 3.5215303796576336e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debda0>
salience        : 3.5204284358769655e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb850>
salience        : 3.517538061714731e-05
wikipedia_url   : -
====================
name            : tonne papers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb940>
salience        : 3.516635115374811e-05
wikipedia_url   : -
====================
name            : come work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220984e0>
salience        : 3.516125070746057e-05
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098080>
salience        : 3.513538104016334e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ee0>
salience        : 3.509880480123684e-05
wikipedia_url   : -
====================
name            : favourites info miss
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a80>
salience        : 3.505445420159958e-05
wikipedia_url   : -
====================
name            : lampounette lamps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3a0>
salience        : 3.4729742765193805e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a210>
salience        : 3.468470822554082e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a406c0>
salience        : 3.464860128588043e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40940>
salience        : 3.463072789600119e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40620>
salience        : 3.459073923295364e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967cb0>
salience        : 3.454913166933693e-05
wikipedia_url   : -
====================
name            : canadahouse
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220815d0>
salience        : 3.443240711931139e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d0d0>
salience        : 3.440740692894906e-05
wikipedia_url   : -
====================
name            : light installations amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d260>
salience        : 3.437222767388448e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d350>
salience        : 3.4357526601525024e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d530>
salience        : 3.4351920476183295e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d620>
salience        : 3.433835809119046e-05
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d800>
salience        : 3.4286862501176074e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d940>
salience        : 3.427685805945657e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dbc0>
salience        : 3.426537659834139e-05
wikipedia_url   : -
====================
name            : view light spirit chapter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dc60>
salience        : 3.422949885134585e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dda0>
salience        : 3.41893064614851e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4de40>
salience        : 3.418277992750518e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4df30>
salience        : 3.4175420296378434e-05
wikipedia_url   : -
====================
name            : aichoketrust lovelondon aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48710>
salience        : 3.416563049540855e-05
wikipedia_url   : -
====================
name            : look guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a487b0>
salience        : 3.414562524994835e-05
wikipedia_url   : -
====================
name            : look guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48850>
salience        : 3.414562524994835e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a488a0>
salience        : 3.414562524994835e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48990>
salience        : 3.413358354009688e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48a30>
salience        : 3.41156919603236e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48b20>
salience        : 3.41040977218654e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48b70>
salience        : 3.408510019653477e-05
wikipedia_url   : -
====================
name            : look guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48c10>
salience        : 3.408510019653477e-05
wikipedia_url   : -
====================
name            : series chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48c60>
salience        : 3.408510019653477e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48d50>
salience        : 3.402320362511091e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48e40>
salience        : 3.3992724638665095e-05
wikipedia_url   : -
====================
name            : simon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48ee0>
salience        : 3.399174602236599e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18030>
salience        : 3.3923635783139616e-05
wikipedia_url   : -
====================
name            : lewisham stpancrasint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18080>
salience        : 3.391882637515664e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18170>
salience        : 3.39122889272403e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18260>
salience        : 3.39122889272403e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18350>
salience        : 3.39122889272403e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18440>
salience        : 3.39122889272403e-05
wikipedia_url   : -
====================
name            : food booking office
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18490>
salience        : 3.39122889272403e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18580>
salience        : 3.390171332284808e-05
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18620>
salience        : 3.3890650229295716e-05
wikipedia_url   : -
====================
name            : look guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a186c0>
salience        : 3.3857253583846614e-05
wikipedia_url   : -
====================
name            : look guide gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18760>
salience        : 3.380691850907169e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a187b0>
salience        : 3.3773940231185406e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a188a0>
salience        : 3.376033782842569e-05
wikipedia_url   : -
====================
name            : work room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18990>
salience        : 3.371462662471458e-05
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a189e0>
salience        : 3.363781070220284e-05
wikipedia_url   : -
====================
name            : amp check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18a80>
salience        : 3.361939889146015e-05
wikipedia_url   : -
====================
name            : shots
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18b20>
salience        : 3.358539834152907e-05
wikipedia_url   : -
====================
name            : south bank pop
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18bc0>
salience        : 3.351732812006958e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18c10>
salience        : 3.3496893593110144e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18cb0>
salience        : 3.3441865525674075e-05
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18d00>
salience        : 3.3392381737940013e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18da0>
salience        : 3.3380158129148185e-05
wikipedia_url   : -
====================
name            : light displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18df0>
salience        : 3.3380158129148185e-05
wikipedia_url   : -
====================
name            : light displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18e40>
salience        : 3.336988083901815e-05
wikipedia_url   : -
====================
name            : amp check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18ee0>
salience        : 3.334814027766697e-05
wikipedia_url   : -
====================
name            : amp check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18f80>
salience        : 3.3339842048007995e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46030>
salience        : 3.3331711165374145e-05
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46080>
salience        : 3.333001950522885e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a460d0>
salience        : 3.3271942811552435e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46120>
salience        : 3.325407669763081e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a461c0>
salience        : 3.3219479519175366e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46260>
salience        : 3.3219479519175366e-05
wikipedia_url   : -
====================
name            : headgear pa display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a462b0>
salience        : 3.3210071705980226e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46350>
salience        : 3.320088217151351e-05
wikipedia_url   : -
====================
name            : telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46440>
salience        : 3.319475945318118e-05
wikipedia_url   : -
====================
name            : sighting fish telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46490>
salience        : 3.319475945318118e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46530>
salience        : 3.3191896363859996e-05
wikipedia_url   : -
====================
name            : festival rossbolwill aquarium telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a465d0>
salience        : 3.318961898912676e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46670>
salience        : 3.3174499549204484e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46710>
salience        : 3.3157823054352775e-05
wikipedia_url   : -
====================
name            : light displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46760>
salience        : 3.31340343109332e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46800>
salience        : 3.312640546937473e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a468a0>
salience        : 3.310435204184614e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46940>
salience        : 3.310435204184614e-05
wikipedia_url   : -
====================
name            : scene boulevard
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a469e0>
salience        : 3.309029489173554e-05
wikipedia_url   : -
====================
name            : sonyuk sonyproeurope sonyrxmoments sony rx1r2 rx1rii rx1rm2
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46a80>
salience        : 3.308200393803418e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46b20>
salience        : 3.306357029941864e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46b70>
salience        : 3.304366327938624e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46bc0>
salience        : 3.302000914118253e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46c10>
salience        : 3.299485251773149e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46d00>
salience        : 3.2933876354945824e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46d50>
salience        : 3.292766268714331e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46e40>
salience        : 3.291522807558067e-05
wikipedia_url   : -
====================
name            : festival capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46e90>
salience        : 3.291069879196584e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46f80>
salience        : 3.290622044005431e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a0d0>
salience        : 3.287612344138324e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a1c0>
salience        : 3.2749241654528305e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a2b0>
salience        : 3.274109258200042e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a3a0>
salience        : 3.272421599831432e-05
wikipedia_url   : -
====================
name            : wait check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a440>
salience        : 3.267238207627088e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a4e0>
salience        : 3.263006510678679e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a580>
salience        : 3.262505924794823e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a620>
salience        : 3.2607200409984216e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a670>
salience        : 3.259863660787232e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a6c0>
salience        : 3.259068762417883e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a710>
salience        : 3.256039053667337e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a7b0>
salience        : 3.2542866392759606e-05
wikipedia_url   : -
====================
name            : river walk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a8a0>
salience        : 3.252551323384978e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a940>
salience        : 3.251565431128256e-05
wikipedia_url   : -
====================
name            : lovelondon nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a9e0>
salience        : 3.246789856348187e-05
wikipedia_url   : -
====================
name            : aquarium nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aa80>
salience        : 3.24076390825212e-05
wikipedia_url   : -
====================
name            : nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ab20>
salience        : 3.234163887100294e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8abc0>
salience        : 3.2338444725610316e-05
wikipedia_url   : -
====================
name            : thread exhibits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ac10>
salience        : 3.228106288588606e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8acb0>
salience        : 3.223878229619004e-05
wikipedia_url   : -
====================
name            : woh freeze exhibit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ad00>
salience        : 3.2238061976386234e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ada0>
salience        : 3.223042585887015e-05
wikipedia_url   : -
====================
name            : carnabylondon happiness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8adf0>
salience        : 3.2227442716248333e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ae90>
salience        : 3.2218209526035935e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8af30>
salience        : 3.220636790501885e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8030>
salience        : 3.214861499145627e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8120>
salience        : 3.210586146451533e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8210>
salience        : 3.209245915059e-05
wikipedia_url   : -
====================
name            : tours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8260>
salience        : 3.202047082595527e-05
wikipedia_url   : -
====================
name            : promotions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8300>
salience        : 3.201449726475403e-05
wikipedia_url   : -
====================
name            : piccadilly lightupthenight seethelight lightupthesky illuminations lumierelondon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de83a0>
salience        : 3.201215804438107e-05
wikipedia_url   : -
====================
name            : lumierelondon exhibitions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de83f0>
salience        : 3.201049912604503e-05
wikipedia_url   : -
====================
name            : scene tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8490>
salience        : 3.200966602889821e-05
wikipedia_url   : -
====================
name            : news updates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8530>
salience        : 3.200966602889821e-05
wikipedia_url   : -
====================
name            : rest
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de85d0>
salience        : 3.198891499778256e-05
wikipedia_url   : -
====================
name            : tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8620>
salience        : 3.198891499778256e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de86c0>
salience        : 3.1983014196157455e-05
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8760>
salience        : 3.194386590621434e-05
wikipedia_url   : -
====================
name            : city staing
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8850>
salience        : 3.190125062246807e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de88f0>
salience        : 3.1816070986678824e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8990>
salience        : 3.17294143314939e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8a30>
salience        : 3.170753188896924e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8ad0>
salience        : 3.170753188896924e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8b70>
salience        : 3.1705490982858464e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8c10>
salience        : 3.165972520946525e-05
wikipedia_url   : -
====================
name            : nightingale berkeley
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8c60>
salience        : 3.161095446557738e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8d00>
salience        : 3.1591494916938245e-05
wikipedia_url   : -
====================
name            : kaybuxton
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8df0>
salience        : 3.151131022605114e-05
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8ee0>
salience        : 3.1479015888180584e-05
wikipedia_url   : -
====================
name            : fridayfeeling book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8f80>
salience        : 3.147755342070013e-05
wikipedia_url   : -
====================
name            : stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c120>
salience        : 3.1414754630532116e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2120>
salience        : 3.141160050290637e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2300>
salience        : 3.140709304716438e-05
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2530>
salience        : 3.137789462925866e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2710>
salience        : 3.137720705126412e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea28f0>
salience        : 3.137093153782189e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2ad0>
salience        : 3.1350773497251794e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2bc0>
salience        : 3.1350773497251794e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2da0>
salience        : 3.134428698103875e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2e90>
salience        : 3.134428698103875e-05
wikipedia_url   : -
====================
name            : mayor london book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2f80>
salience        : 3.131017365376465e-05
wikipedia_url   : -
====================
name            : stirring soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8120>
salience        : 3.131017365376465e-05
wikipedia_url   : -
====================
name            : qotd piccadillycircus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8210>
salience        : 3.1292991479858756e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8350>
salience        : 3.1289877369999886e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8490>
salience        : 3.128121170448139e-05
wikipedia_url   : -
====================
name            : blue light granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db84e0>
salience        : 3.127533273072913e-05
wikipedia_url   : -
====================
name            : channel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8670>
salience        : 3.124220893369056e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8850>
salience        : 3.123652277281508e-05
wikipedia_url   : -
====================
name            : project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8940>
salience        : 3.119182292721234e-05
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a30>
salience        : 3.105611904175021e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b70>
salience        : 3.105527503066696e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8cb0>
salience        : 3.1038485758472234e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8da0>
salience        : 3.1016530556371436e-05
wikipedia_url   : -
====================
name            : chinatown granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e40>
salience        : 3.0983319447841495e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a530d0>
salience        : 3.097770968452096e-05
wikipedia_url   : -
====================
name            : someone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53350>
salience        : 3.097032822552137e-05
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a533f0>
salience        : 3.091017424594611e-05
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a534e0>
salience        : 3.083147021243349e-05
wikipedia_url   : -
====================
name            : paquetterocket cs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53580>
salience        : 3.082189869019203e-05
wikipedia_url   : -
====================
name            : river roamers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53990>
salience        : 3.0772254831390455e-05
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53a80>
salience        : 3.076303983107209e-05
wikipedia_url   : -
====================
name            : favourites info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53b20>
salience        : 3.074562118854374e-05
wikipedia_url   : -
====================
name            : dance academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53c60>
salience        : 3.069472950301133e-05
wikipedia_url   : -
====================
name            : facebook page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53d50>
salience        : 3.068781734327786e-05
wikipedia_url   : -
====================
name            : performances
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53e90>
salience        : 3.068098158109933e-05
wikipedia_url   : -
====================
name            : design light performances
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53ee0>
salience        : 3.066772478632629e-05
wikipedia_url   : -
====================
name            : installation wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e030>
salience        : 3.062644464080222e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e120>
salience        : 3.061777169932611e-05
wikipedia_url   : -
====================
name            : thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e210>
salience        : 3.059944720007479e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e350>
salience        : 3.059290611417964e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e490>
salience        : 3.05906796711497e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e5d0>
salience        : 3.0582017643610016e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e710>
salience        : 3.057720823562704e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e850>
salience        : 3.057355570490472e-05
wikipedia_url   : -
====================
name            : excusethepuns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ea80>
salience        : 3.055986962863244e-05
wikipedia_url   : -
====================
name            : colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ec10>
salience        : 3.0554834665963426e-05
wikipedia_url   : -
====================
name            : aichoketrust greatbritain wash colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ec60>
salience        : 3.0547667847713456e-05
wikipedia_url   : -
====================
name            : umbrella performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ed00>
salience        : 3.053720138268545e-05
wikipedia_url   : -
====================
name            : umbrella performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ed50>
salience        : 3.053720138268545e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ee90>
salience        : 3.052695683436468e-05
wikipedia_url   : -
====================
name            : londonlumiere wabbey tallisscholars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79080>
salience        : 3.0508355848724023e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e791c0>
salience        : 3.0465753297903575e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79260>
salience        : 3.041644231416285e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79300>
salience        : 3.040853698621504e-05
wikipedia_url   : -
====================
name            : westminsterabbey visitlondon londonislovinit
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79440>
salience        : 3.0390185202122666e-05
wikipedia_url   : -
====================
name            : red telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79580>
salience        : 3.038350223505404e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e796c0>
salience        : 3.0141691240714863e-05
wikipedia_url   : -
====================
name            : grande playground de inverno
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79710>
salience        : 3.0129051083349623e-05
wikipedia_url   : -
====================
name            : friends imaginationlabs loveled eventprofs avprofs principallondon januaryblues
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e798a0>
salience        : 3.0129051083349623e-05
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79a80>
salience        : 3.0126329875201918e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79b70>
salience        : 3.005270082212519e-05
wikipedia_url   : -
====================
name            : queen elizabeth walkway
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79cb0>
salience        : 3.0034063456696458e-05
wikipedia_url   : -
====================
name            : circus london images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79df0>
salience        : 3.002182893396821e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79f30>
salience        : 2.9977058147778735e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48120>
salience        : 2.9948694646009244e-05
wikipedia_url   : -
====================
name            : roads
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48260>
salience        : 2.9948694646009244e-05
wikipedia_url   : -
====================
name            : faces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48350>
salience        : 2.9936891223769635e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a484e0>
salience        : 2.9931823519291356e-05
wikipedia_url   : -
====================
name            : picture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad350>
salience        : 2.990505709021818e-05
wikipedia_url   : -
====================
name            : end
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2940>
salience        : 2.9904515031375922e-05
wikipedia_url   : -
====================
name            : picture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a212b0>
salience        : 2.989159111166373e-05
wikipedia_url   : -
====================
name            : festival king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a216c0>
salience        : 2.9852499210392125e-05
wikipedia_url   : -
====================
name            : make
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b20>
salience        : 2.9833083317498676e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e90>
salience        : 2.9819309929735027e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21990>
salience        : 2.978271004394628e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21490>
salience        : 2.9752203772659414e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a80>
salience        : 2.9726877983193845e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf940>
salience        : 2.9718461519223638e-05
wikipedia_url   : -
====================
name            : king cross
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae90>
salience        : 2.9718461519223638e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa4e0>
salience        : 2.9679089493583888e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa8a0>
salience        : 2.9679089493583888e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa170>
salience        : 2.9679089493583888e-05
wikipedia_url   : -
====================
name            : south bank king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa5d0>
salience        : 2.9679089493583888e-05
wikipedia_url   : -
====================
name            : royalacademy wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac60>
salience        : 2.967483305837959e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce710>
salience        : 2.967170439660549e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0a80>
salience        : 2.9664468456758186e-05
wikipedia_url   : -
====================
name            : hand side
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ad0>
salience        : 2.9624150556628592e-05
wikipedia_url   : -
====================
name            : bloombergservice karizmatic_k souljazzfunk aichoketrust mayoroflondon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99260>
salience        : 2.9586815799120814e-05
wikipedia_url   : -
====================
name            : wander round exhibits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99490>
salience        : 2.9539383831433952e-05
wikipedia_url   : -
====================
name            : lumierelondon exhibitions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a30>
salience        : 2.95070385618601e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy mayor culture
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a996c0>
salience        : 2.9439901481964625e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77760>
salience        : 2.943128129118122e-05
wikipedia_url   : -
====================
name            : streets plan route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77260>
salience        : 2.942377614090219e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy mayor culture
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82490>
salience        : 2.9414894015644677e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy mayor culture
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82df0>
salience        : 2.9405360692180693e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy mayor culture
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e40>
salience        : 2.937386125267949e-05
wikipedia_url   : -
====================
name            : route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5cb0>
salience        : 2.937195858976338e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5530>
salience        : 2.934094845841173e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5990>
salience        : 2.9334278224268928e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5ee0>
salience        : 2.9298367735464126e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5440>
salience        : 2.9223505407571793e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd53f0>
salience        : 2.9206443286966532e-05
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5940>
salience        : 2.9196016839705408e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095120>
salience        : 2.9185888706706464e-05
wikipedia_url   : -
====================
name            : cultureisgreat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095170>
salience        : 2.9179323973949067e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18f0>
salience        : 2.9161761631257832e-05
wikipedia_url   : -
====================
name            : wines
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38670>
salience        : 2.9153268769732676e-05
wikipedia_url   : -
====================
name            : wines
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a380d0>
salience        : 2.9153268769732676e-05
wikipedia_url   : -
====================
name            : children
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38d00>
salience        : 2.9153268769732676e-05
wikipedia_url   : -
====================
name            : thank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38f30>
salience        : 2.9152553906897083e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a382b0>
salience        : 2.914803735620808e-05
wikipedia_url   : -
====================
name            : ldnmayor culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61120>
salience        : 2.9140803235350177e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy mayor culture
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61d50>
salience        : 2.9140803235350177e-05
wikipedia_url   : -
====================
name            : londonlights bespokelighting lightinstallation lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61620>
salience        : 2.9139539037714712e-05
wikipedia_url   : -
====================
name            : pancras
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089760>
salience        : 2.9137991077732295e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debd00>
salience        : 2.913118078140542e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8a0>
salience        : 2.9130525945220143e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098210>
salience        : 2.912334275606554e-05
wikipedia_url   : -
====================
name            : catch wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c300>
salience        : 2.911842784669716e-05
wikipedia_url   : -
====================
name            : pederson fitzrovia oxfordstreet lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3a0>
salience        : 2.9057395295239985e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c4e0>
salience        : 2.902392043324653e-05
wikipedia_url   : -
====================
name            : buildingcentre
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c670>
salience        : 2.9012220693402924e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c7b0>
salience        : 2.9012220693402924e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca30>
salience        : 2.9004007956245914e-05
wikipedia_url   : -
====================
name            : favourites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb70>
salience        : 2.899155515478924e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cd50>
salience        : 2.8988131816731766e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cee0>
salience        : 2.89804538624594e-05
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c260>
salience        : 2.896335172408726e-05
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c530>
salience        : 2.8959706469322555e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c8a0>
salience        : 2.8958489565411583e-05
wikipedia_url   : -
====================
name            : tube lines stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca80>
salience        : 2.8958489565411583e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cad0>
salience        : 2.8952859793207608e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ccb0>
salience        : 2.895131183322519e-05
wikipedia_url   : -
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c490>
salience        : 2.8939617550349794e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c6c0>
salience        : 2.89137660729466e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cd00>
salience        : 2.890015639422927e-05
wikipedia_url   : -
====================
name            : buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c5d0>
salience        : 2.8899397875647992e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c8f0>
salience        : 2.8899397875647992e-05
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cc10>
salience        : 2.8895736249978654e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a080>
salience        : 2.8887532607768662e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a0d0>
salience        : 2.8887532607768662e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a170>
salience        : 2.8887532607768662e-05
wikipedia_url   : -
====================
name            : sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a210>
salience        : 2.8887532607768662e-05
wikipedia_url   : -
====================
name            : tracey emin realdaveedwards lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a2b0>
salience        : 2.8860695238108747e-05
wikipedia_url   : -
====================
name            : aichoketrust westminsterabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a300>
salience        : 2.8860280508524738e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon lumierelondon leicestersquare lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a3a0>
salience        : 2.8847529392805882e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a440>
salience        : 2.880194915633183e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a4e0>
salience        : 2.8792968805646524e-05
wikipedia_url   : -
====================
name            : facebook page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a580>
salience        : 2.87717703031376e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a670>
salience        : 2.8757352993125096e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a6c0>
salience        : 2.8757352993125096e-05
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a710>
salience        : 2.8750395358656533e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a7b0>
salience        : 2.8721044145640917e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a850>
salience        : 2.871032484108582e-05
wikipedia_url   : -
====================
name            : places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a940>
salience        : 2.871032484108582e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a9e0>
salience        : 2.8705087970593013e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3aa80>
salience        : 2.8694839784293436e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ab20>
salience        : 2.8694839784293436e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3abc0>
salience        : 2.864768248400651e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ac60>
salience        : 2.8643300538533367e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ad00>
salience        : 2.8630471206270158e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3adf0>
salience        : 2.86133072222583e-05
wikipedia_url   : -
====================
name            : bloombergservice granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ae40>
salience        : 2.860662243620027e-05
wikipedia_url   : -
====================
name            : lumierelondon granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ae90>
salience        : 2.8598331482498907e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3af30>
salience        : 2.8506125090643764e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d030>
salience        : 2.8498236133600585e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d0d0>
salience        : 2.847558971552644e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d120>
salience        : 2.8468359232647344e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d170>
salience        : 2.843430957000237e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d1c0>
salience        : 2.8427883080439642e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d260>
salience        : 2.8415379347279668e-05
wikipedia_url   : -
====================
name            : song lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d300>
salience        : 2.839972330548335e-05
wikipedia_url   : -
====================
name            : sites
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d350>
salience        : 2.839366607076954e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d3f0>
salience        : 2.8391650630510412e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d440>
salience        : 2.8380371077219024e-05
wikipedia_url   : -
====================
name            : elegance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d4e0>
salience        : 2.8363610908854753e-05
wikipedia_url   : -
====================
name            : worry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d530>
salience        : 2.830856647051405e-05
wikipedia_url   : -
====================
name            : sho film
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d620>
salience        : 2.8282471248530783e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d710>
salience        : 2.827686330419965e-05
wikipedia_url   : -
====================
name            : displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d7b0>
salience        : 2.8231450414750725e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d850>
salience        : 2.8194845071993768e-05
wikipedia_url   : -
====================
name            : rambe building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d8f0>
salience        : 2.8184593247715384e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d990>
salience        : 2.8184420443722047e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1da80>
salience        : 2.8169435609015636e-05
wikipedia_url   : -
====================
name            : visit wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1db20>
salience        : 2.8164642571937293e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dbc0>
salience        : 2.816458436427638e-05
wikipedia_url   : -
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dc60>
salience        : 2.8141301299910992e-05
wikipedia_url   : -
====================
name            : footsteps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dd00>
salience        : 2.8121248760726303e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dda0>
salience        : 2.81195025308989e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1de40>
salience        : 2.81195025308989e-05
wikipedia_url   : -
====================
name            : aboutlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1df30>
salience        : 2.8111760911997408e-05
wikipedia_url   : -
====================
name            : lumierelondon enjoyfitzrovia
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85030>
salience        : 2.810252772178501e-05
wikipedia_url   : -
====================
name            : thelondoneye
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a850d0>
salience        : 2.7992657123832032e-05
wikipedia_url   : -
====================
name            : check wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85170>
salience        : 2.7966521884081885e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85260>
salience        : 2.793153362290468e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85350>
salience        : 2.793153362290468e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a853f0>
salience        : 2.7912243240280077e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a854e0>
salience        : 2.7906049581361003e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a855d0>
salience        : 2.7906049581361003e-05
wikipedia_url   : -
====================
name            : aichoketrust plan visit buy map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85670>
salience        : 2.7873542421730235e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a856c0>
salience        : 2.786042205116246e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a857b0>
salience        : 2.776921246550046e-05
wikipedia_url   : -
====================
name            : lumierelondon ivysohobrass
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85850>
salience        : 2.7761541787185706e-05
wikipedia_url   : -
====================
name            : aquarium mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a858a0>
salience        : 2.7761136152548715e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a858f0>
salience        : 2.7722755476133898e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a859e0>
salience        : 2.76578630291624e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85a80>
salience        : 2.765266071946826e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85b20>
salience        : 2.7641010092338547e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85c10>
salience        : 2.7627800591289997e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85cb0>
salience        : 2.761371979431715e-05
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85d50>
salience        : 2.7607562515186146e-05
wikipedia_url   : -
====================
name            : waterlicht lumierelondon lumiere granarysquare kingscross
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85df0>
salience        : 2.7607562515186146e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85ee0>
salience        : 2.757882612058893e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85f80>
salience        : 2.7574709747568704e-05
wikipedia_url   : -
====================
name            : pall mall road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85080>
salience        : 2.7549169317353517e-05
wikipedia_url   : -
====================
name            : forms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e850d0>
salience        : 2.7485910322866403e-05
wikipedia_url   : -
====================
name            : alaaminawi aichoketrust regentst_assoc thewpa aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85170>
salience        : 2.7476835384732112e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85260>
salience        : 2.7458672775537707e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85350>
salience        : 2.7450898414826952e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85440>
salience        : 2.744330049608834e-05
wikipedia_url   : -
====================
name            : aichoketrust 7dialslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e854e0>
salience        : 2.7431575290393084e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e855d0>
salience        : 2.742149263212923e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85670>
salience        : 2.737807335506659e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85710>
salience        : 2.737807335506659e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e857b0>
salience        : 2.737807335506659e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85850>
salience        : 2.7375552235753275e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e858f0>
salience        : 2.7367856091586873e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e859e0>
salience        : 2.7363510525901802e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85ad0>
salience        : 2.7351889002602547e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85b70>
salience        : 2.7343603505869396e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85c10>
salience        : 2.734066038101446e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85cb0>
salience        : 2.7338668587617576e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85d50>
salience        : 2.7329859221936204e-05
wikipedia_url   : -
====================
name            : bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85df0>
salience        : 2.732434222707525e-05
wikipedia_url   : -
====================
name            : mylocalculture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85e40>
salience        : 2.731060521909967e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85ee0>
salience        : 2.730814230744727e-05
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85f80>
salience        : 2.7284728275844827e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2080>
salience        : 2.7238338589086197e-05
wikipedia_url   : -
====================
name            : spectacular
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2120>
salience        : 2.7238338589086197e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2210>
salience        : 2.7217371098231524e-05
wikipedia_url   : -
====================
name            : sound amp light composition
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df22b0>
salience        : 2.7217371098231524e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2350>
salience        : 2.718821633607149e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df23f0>
salience        : 2.7180898541701026e-05
wikipedia_url   : -
====================
name            : coin child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2440>
salience        : 2.717904317250941e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df24e0>
salience        : 2.717904317250941e-05
wikipedia_url   : -
====================
name            : child hood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2580>
salience        : 2.717011739150621e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2620>
salience        : 2.7161424441146664e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df26c0>
salience        : 2.7161424441146664e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2760>
salience        : 2.7161424441146664e-05
wikipedia_url   : -
====================
name            : interview harry qedproductions
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2800>
salience        : 2.7152955226483755e-05
wikipedia_url   : -
====================
name            : purchase
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df28a0>
salience        : 2.714469883358106e-05
wikipedia_url   : -
====================
name            : neon bikes
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098800>
salience        : 2.7136642529512756e-05
wikipedia_url   : -
====================
name            : hayward gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40170>
salience        : 2.712205605348572e-05
wikipedia_url   : -
====================
name            : streets plan route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd43a0>
salience        : 2.7118594516650774e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d760>
salience        : 2.7118594516650774e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d210>
salience        : 2.7098618375021033e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d3f0>
salience        : 2.7075197067460977e-05
wikipedia_url   : -
====================
name            : toronto
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d670>
salience        : 2.7068623239756562e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Toronto
====================
name            : media umbrellas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d710>
salience        : 2.7067364499089308e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d9e0>
salience        : 2.7064081223215908e-05
wikipedia_url   : -
====================
name            : preview
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4dd00>
salience        : 2.7064081223215908e-05
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4de90>
salience        : 2.703460631892085e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18120>
salience        : 2.701597441046033e-05
wikipedia_url   : -
====================
name            : neon umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18210>
salience        : 2.6896967028733343e-05
wikipedia_url   : -
====================
name            : abc11 musictaughtme polandia tombraider amazonhq2 ainextcon ukfrsummit celebrateented verybritishoffences gyimahmei thegoodside lollies2017 iwitot winniethepoohday thursdaythoughts stormpoolen 020kiest visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18300>
salience        : 2.68670373770874e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a183f0>
salience        : 2.6840498321689665e-05
wikipedia_url   : -
====================
name            : 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht jkwaldman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18530>
salience        : 2.6838501071324572e-05
wikipedia_url   : -
====================
name            : closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18670>
salience        : 2.683613456611056e-05
wikipedia_url   : -
====================
name            : pa exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18800>
salience        : 2.683221100596711e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a188f0>
salience        : 2.6819741833605804e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18a30>
salience        : 2.679767203517258e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18b70>
salience        : 2.6781370252138004e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18d50>
salience        : 2.6718960725702345e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18f30>
salience        : 2.671634138096124e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46210>
salience        : 2.671634138096124e-05
wikipedia_url   : -
====================
name            : team
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a463a0>
salience        : 2.671634138096124e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a464e0>
salience        : 2.6712537874118425e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46620>
salience        : 2.6708778023021296e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a467b0>
salience        : 2.6694156986195594e-05
wikipedia_url   : -
====================
name            : riverside walkway amp sites
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a468f0>
salience        : 2.668708657438401e-05
wikipedia_url   : -
====================
name            : capital streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46a30>
salience        : 2.6680167138692923e-05
wikipedia_url   : -
====================
name            : lewisham wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46c60>
salience        : 2.6641546355676837e-05
wikipedia_url   : -
====================
name            : lumierelondon wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46cb0>
salience        : 2.6634090318111703e-05
wikipedia_url   : -
====================
name            : lightupthenight seethelight lightupthesky illuminations lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46df0>
salience        : 2.6623216399457306e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46f30>
salience        : 2.660652535269037e-05
wikipedia_url   : -
====================
name            : ones
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a080>
salience        : 2.6601404897519387e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a170>
salience        : 2.6598991098580882e-05
wikipedia_url   : -
====================
name            : mayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a260>
salience        : 2.6595074814395048e-05
wikipedia_url   : -
====================
name            : iceland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a3f0>
salience        : 2.6537296434980817e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Iceland
====================
name            : festival kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a490>
salience        : 2.649506313900929e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a530>
salience        : 2.6492956749279983e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a5d0>
salience        : 2.6489140509511344e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a760>
salience        : 2.6489140509511344e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a800>
salience        : 2.6489140509511344e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a850>
salience        : 2.6481640816200525e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a8f0>
salience        : 2.6481640816200525e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a990>
salience        : 2.6481640816200525e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aa30>
salience        : 2.647795554366894e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aad0>
salience        : 2.6463620088179596e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ac60>
salience        : 2.645626591402106e-05
wikipedia_url   : -
====================
name            : de la luz
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aee0>
salience        : 2.6427542252349667e-05
wikipedia_url   : -
====================
name            : flamingoflyway
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8af80>
salience        : 2.6420373615110293e-05
wikipedia_url   : -
====================
name            : aichoketrust westminsterboys
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de80d0>
salience        : 2.634426527947653e-05
wikipedia_url   : -
====================
name            : set
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8170>
salience        : 2.634107477206271e-05
wikipedia_url   : -
====================
name            : series
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8350>
salience        : 2.6326655643060803e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8440>
salience        : 2.6312502086511813e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de84e0>
salience        : 2.6299630917492323e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8670>
salience        : 2.6261510356562212e-05
wikipedia_url   : -
====================
name            : sculpture
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8800>
salience        : 2.6251595045323484e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de88a0>
salience        : 2.6246640118188225e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de89e0>
salience        : 2.6232431991957128e-05
wikipedia_url   : -
====================
name            : song
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8b20>
salience        : 2.6225556212011725e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8cb0>
salience        : 2.6219784558634274e-05
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8da0>
salience        : 2.6219784558634274e-05
wikipedia_url   : -
====================
name            : skylight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8e90>
salience        : 2.6181773137068376e-05
wikipedia_url   : -
====================
name            : skylight
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c080>
salience        : 2.6181773137068376e-05
wikipedia_url   : -
====================
name            : ping pong
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2030>
salience        : 2.6172938305535354e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea21c0>
salience        : 2.6170810087933205e-05
wikipedia_url   : -
====================
name            : sd card
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea23a0>
salience        : 2.615597259136848e-05
wikipedia_url   : -
====================
name            : footprint cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2490>
salience        : 2.6139865440200083e-05
wikipedia_url   : -
====================
name            : bihday
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea27b0>
salience        : 2.613537071738392e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea29e0>
salience        : 2.6134997824556194e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2cb0>
salience        : 2.610064620967023e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2df0>
salience        : 2.609207331261132e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8080>
salience        : 2.6063773475470953e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db82b0>
salience        : 2.596274862298742e-05
wikipedia_url   : -
====================
name            : celebration light amp colour favourite thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83f0>
salience        : 2.5956287572626024e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8760>
salience        : 2.5912369892466813e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ad0>
salience        : 2.5898063540807925e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c60>
salience        : 2.585860602266621e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53030>
salience        : 2.5785164325498044e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53850>
salience        : 2.5767016268218867e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53c10>
salience        : 2.576350925664883e-05
wikipedia_url   : -
====================
name            : changes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53df0>
salience        : 2.5708641260280274e-05
wikipedia_url   : -
====================
name            : space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e080>
salience        : 2.5654762794147246e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e260>
salience        : 2.5539820853737183e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e3f0>
salience        : 2.553614103817381e-05
wikipedia_url   : -
====================
name            : aichoketrust plan visit buy map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e670>
salience        : 2.553614103817381e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e7b0>
salience        : 2.553614103817381e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7eb70>
salience        : 2.55321865552105e-05
wikipedia_url   : -
====================
name            : city aichoketrust plan visit buy map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7ef30>
salience        : 2.552891237428412e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79120>
salience        : 2.552891237428412e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e793a0>
salience        : 2.552891237428412e-05
wikipedia_url   : -
====================
name            : plan visit buy map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e794e0>
salience        : 2.552535806898959e-05
wikipedia_url   : -
====================
name            : blue wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79800>
salience        : 2.5524514057906345e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79990>
salience        : 2.5514716980978847e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79c10>
salience        : 2.5494176952634007e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79d50>
salience        : 2.549022792663891e-05
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79e90>
salience        : 2.5457251467742026e-05
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48760>
salience        : 2.5455969080212526e-05
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48800>
salience        : 2.5449313397984952e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a488f0>
salience        : 2.535725070629269e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a489e0>
salience        : 2.535038765927311e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48a80>
salience        : 2.533710176066961e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48ad0>
salience        : 2.533066799514927e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48bc0>
salience        : 2.528903860365972e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48cb0>
salience        : 2.5257353627239354e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48df0>
salience        : 2.5251489205402322e-05
wikipedia_url   : -
====================
name            : cause
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48e90>
salience        : 2.5249042664654553e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48080>
salience        : 2.524826595617924e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a481c0>
salience        : 2.5236122382921167e-05
wikipedia_url   : -
====================
name            : morvan creator
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48580>
salience        : 2.5224562705261633e-05
wikipedia_url   : -
====================
name            : transform giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c10>
salience        : 2.5214168999809772e-05
wikipedia_url   : -
====================
name            : wiermann amp aether architect
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d50>
salience        : 2.5196164642693475e-05
wikipedia_url   : -
====================
name            : pa w
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21940>
salience        : 2.5186498533003032e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa760>
salience        : 2.5179160729749128e-05
wikipedia_url   : -
====================
name            : wheat shimmer wind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa710>
salience        : 2.5174793336191215e-05
wikipedia_url   : -
====================
name            : pa w
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa800>
salience        : 2.5174793336191215e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b20>
salience        : 2.517100074328482e-05
wikipedia_url   : -
====================
name            : side door
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99350>
salience        : 2.5163519239868037e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773f0>
salience        : 2.514403786335606e-05
wikipedia_url   : -
====================
name            : blues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773a0>
salience        : 2.5142142476397566e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e829e0>
salience        : 2.5138371711364016e-05
wikipedia_url   : -
====================
name            : sneak peek
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5a80>
salience        : 2.5131990696536377e-05
wikipedia_url   : -
====================
name            : media
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5300>
salience        : 2.5131990696536377e-05
wikipedia_url   : -
====================
name            : surface
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5d00>
salience        : 2.5122164515778422e-05
wikipedia_url   : -
====================
name            : weekend balloons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5620>
salience        : 2.5112643925240263e-05
wikipedia_url   : -
====================
name            : balloons
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb14e0>
salience        : 2.5112643925240263e-05
wikipedia_url   : -
====================
name            : surface
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2940>
salience        : 2.5112643925240263e-05
wikipedia_url   : -
====================
name            : ainstallations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df29e0>
salience        : 2.5106530301854946e-05
wikipedia_url   : -
====================
name            : masterpiece origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2a30>
salience        : 2.5103412554017268e-05
wikipedia_url   : -
====================
name            : pa w
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2a80>
salience        : 2.5077279133256525e-05
wikipedia_url   : -
====================
name            : pa w
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2ad0>
salience        : 2.506904274923727e-05
wikipedia_url   : -
====================
name            : remake pink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2b70>
salience        : 2.506102464394644e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2bc0>
salience        : 2.5057519451365806e-05
wikipedia_url   : -
====================
name            : mobile payments
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2c10>
salience        : 2.5045590518857352e-05
wikipedia_url   : -
====================
name            : ball
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2c60>
salience        : 2.5038158128154464e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2d00>
salience        : 2.503353971405886e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2da0>
salience        : 2.503353971405886e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2e40>
salience        : 2.5026369257830083e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2ee0>
salience        : 2.5022845875355415e-05
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2f80>
salience        : 2.5022845875355415e-05
wikipedia_url   : -
====================
name            : walk station
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8080>
salience        : 2.5011184334289283e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8120>
salience        : 2.5009148885146715e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8210>
salience        : 2.49954446189804e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea82b0>
salience        : 2.49954446189804e-05
wikipedia_url   : -
====================
name            : transform giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8350>
salience        : 2.4983371986309066e-05
wikipedia_url   : -
====================
name            : amp community
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea83f0>
salience        : 2.497751120245084e-05
wikipedia_url   : -
====================
name            : doublemacbex
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8490>
salience        : 2.4956045308499597e-05
wikipedia_url   : -
====================
name            : ivysohobrass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8530>
salience        : 2.4944538381532766e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea85d0>
salience        : 2.4944538381532766e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8670>
salience        : 2.4929588107625023e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8710>
salience        : 2.492350358807016e-05
wikipedia_url   : -
====================
name            : berkeley square
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea87b0>
salience        : 2.487872370693367e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8850>
salience        : 2.483025127730798e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea88f0>
salience        : 2.4818564270390198e-05
wikipedia_url   : -
====================
name            : collection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8990>
salience        : 2.4751234377617948e-05
wikipedia_url   : -
====================
name            : collection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8a30>
salience        : 2.473493259458337e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8ad0>
salience        : 2.4695926185813732e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8b70>
salience        : 2.4639381081215106e-05
wikipedia_url   : -
====================
name            : newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8c60>
salience        : 2.4637158276163973e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8d00>
salience        : 2.4613616915303282e-05
wikipedia_url   : -
====================
name            : 英国 いよいよ今日から4日間にわたって ロンドン各所で開催される光の祭典 リュミエール ロンドン 周辺では交通規制もありますので お出かけの際はロンドン交通局ウェブサイトなどで最新情報をご確認ください 画像は2016年のもの thelondoneye
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8da0>
salience        : 2.4604722057119943e-05
wikipedia_url   : -
====================
name            : mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8df0>
salience        : 2.458696144458372e-05
wikipedia_url   : -
====================
name            : mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8e40>
salience        : 2.4577642761869356e-05
wikipedia_url   : -
====================
name            : mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8e90>
salience        : 2.4577642761869356e-05
wikipedia_url   : -
====================
name            : doorstep
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8f30>
salience        : 2.4530338123440742e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b030>
salience        : 2.450453939673025e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b120>
salience        : 2.4500612198607996e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b1c0>
salience        : 2.4490664145560004e-05
wikipedia_url   : -
====================
name            : cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b210>
salience        : 2.4479277271893807e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b2b0>
salience        : 2.4470989956171252e-05
wikipedia_url   : -
====================
name            : festival pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b3a0>
salience        : 2.446471080475021e-05
wikipedia_url   : -
====================
name            : diamondgeezer
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b490>
salience        : 2.445139762130566e-05
wikipedia_url   : -
====================
name            : freebiefriday installation imakefings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b530>
salience        : 2.444223537168e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b5d0>
salience        : 2.4425638912362047e-05
wikipedia_url   : -
====================
name            : squareuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b670>
salience        : 2.4421507987426594e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b710>
salience        : 2.4420856789220124e-05
wikipedia_url   : -
====================
name            : interest
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b7b0>
salience        : 2.434685120533686e-05
wikipedia_url   : -
====================
name            : festival hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b8a0>
salience        : 2.4340923118870705e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b940>
salience        : 2.42251389863668e-05
wikipedia_url   : -
====================
name            : ppl
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b9e0>
salience        : 2.4174587451852858e-05
wikipedia_url   : -
====================
name            : cultureteam help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ba30>
salience        : 2.4165256036212668e-05
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bad0>
salience        : 2.4163120542652905e-05
wikipedia_url   : -
====================
name            : festival celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bb20>
salience        : 2.414989285171032e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bbc0>
salience        : 2.414561458863318e-05
wikipedia_url   : -
====================
name            : karizmatic_k lumierelondon aichoketrust uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bc60>
salience        : 2.4144197595887817e-05
wikipedia_url   : -
====================
name            : city world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bd50>
salience        : 2.4141394533216953e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bdf0>
salience        : 2.4125103664118797e-05
wikipedia_url   : -
====================
name            : thanks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8be90>
salience        : 2.4124945412040688e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bf30>
salience        : 2.4117283828672953e-05
wikipedia_url   : -
====================
name            : rainbow head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8030>
salience        : 2.4109667720040306e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd80d0>
salience        : 2.4102244424284436e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8120>
salience        : 2.4098600988509133e-05
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd81c0>
salience        : 2.4098600988509133e-05
wikipedia_url   : -
====================
name            : aworks uk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd82b0>
salience        : 2.4044338715611957e-05
wikipedia_url   : -
====================
name            : centralline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8350>
salience        : 2.4022683646762744e-05
wikipedia_url   : -
====================
name            : game
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd83f0>
salience        : 2.3996952222660184e-05
wikipedia_url   : -
====================
name            : lighting csm_news
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8490>
salience        : 2.3978029275895096e-05
wikipedia_url   : -
====================
name            : pa lumiere_london head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd84e0>
salience        : 2.397368552919943e-05
wikipedia_url   : -
====================
name            : flower
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8580>
salience        : 2.3962162231327966e-05
wikipedia_url   : -
====================
name            : patron peter phillips
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8620>
salience        : 2.3962162231327966e-05
wikipedia_url   : -
====================
name            : pug café
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd86c0>
salience        : 2.3962162231327966e-05
wikipedia_url   : -
====================
name            : royalacademy thesavoylondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8760>
salience        : 2.3951430193847045e-05
wikipedia_url   : -
====================
name            : dot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd87b0>
salience        : 2.3943262931425124e-05
wikipedia_url   : -
====================
name            : festival plug bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8800>
salience        : 2.3939892344060354e-05
wikipedia_url   : -
====================
name            : city world
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd88a0>
salience        : 2.393750946794171e-05
wikipedia_url   : -
====================
name            : city world
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8990>
salience        : 2.393750946794171e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd89e0>
salience        : 2.393656177446246e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8a80>
salience        : 2.3911195967230015e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8b20>
salience        : 2.3903650799184106e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8bc0>
salience        : 2.3890113880042918e-05
wikipedia_url   : -
====================
name            : installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8c60>
salience        : 2.3890113880042918e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8d00>
salience        : 2.3877180865383707e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8da0>
salience        : 2.387092354183551e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8e40>
salience        : 2.387092354183551e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired browns_hotel lumiere london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8ee0>
salience        : 2.382171805948019e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6030>
salience        : 2.3797518224455416e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea60d0>
salience        : 2.3758981114951894e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea61c0>
salience        : 2.3739601601846516e-05
wikipedia_url   : -
====================
name            : laser
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6210>
salience        : 2.3728567612124607e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6260>
salience        : 2.3721440811641514e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6350>
salience        : 2.3721440811641514e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea63f0>
salience        : 2.367964589211624e-05
wikipedia_url   : -
====================
name            : brownshotel roccofoehotels aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6490>
salience        : 2.3657132260268554e-05
wikipedia_url   : -
====================
name            : story
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea64e0>
salience        : 2.3618478735443205e-05
wikipedia_url   : -
====================
name            : travel tfltrafficnews update
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6530>
salience        : 2.3581680579809472e-05
wikipedia_url   : -
====================
name            : aichoketrust rukiabdi wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6580>
salience        : 2.3551883714389987e-05
wikipedia_url   : -
====================
name            : everyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6670>
salience        : 2.3550112018710934e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6710>
salience        : 2.352009505557362e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6760>
salience        : 2.352009505557362e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6800>
salience        : 2.3512311599915847e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea68a0>
salience        : 2.3512187908636406e-05
wikipedia_url   : -
====================
name            : voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6940>
salience        : 2.349806163692847e-05
wikipedia_url   : -
====================
name            : djafrankenstein lumierelondon sonyalpha ldn_gov
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea69e0>
salience        : 2.346680594200734e-05
wikipedia_url   : -
====================
name            : aichoketrust kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6a80>
salience        : 2.34290291700745e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6ad0>
salience        : 2.3360345949186012e-05
wikipedia_url   : -
====================
name            : folk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6b70>
salience        : 2.3341162886936218e-05
wikipedia_url   : -
====================
name            : folk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6bc0>
salience        : 2.3332037017098628e-05
wikipedia_url   : -
====================
name            : kingscross arenamediauk saralrodassilva southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6c60>
salience        : 2.3314574718824588e-05
wikipedia_url   : -
====================
name            : visitbritain visitlondon loveuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6d00>
salience        : 2.32312195294071e-05
wikipedia_url   : -
====================
name            : set menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6da0>
salience        : 2.3223748939926736e-05
wikipedia_url   : -
====================
name            : sponsorship
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6e40>
salience        : 2.3211312509374693e-05
wikipedia_url   : -
====================
name            : sponsorship
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6ee0>
salience        : 2.3187973056337796e-05
wikipedia_url   : -
====================
name            : lumierelondon leicestersquaregardens
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6f80>
salience        : 2.316281279490795e-05
wikipedia_url   : -
====================
name            : sponsorship
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03080>
salience        : 2.314639277756214e-05
wikipedia_url   : -
====================
name            : mayoroflondon londonisopen designcouncil
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03120>
salience        : 2.3116841475712135e-05
wikipedia_url   : -
====================
name            : lumierelondon 7dialslondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e031c0>
salience        : 2.308318107679952e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03210>
salience        : 2.301535823789891e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03300>
salience        : 2.2994956452748738e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e033a0>
salience        : 2.2934382286621258e-05
wikipedia_url   : -
====================
name            : rainbow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38030>
salience        : 2.283140565850772e-05
wikipedia_url   : -
====================
name            : pop office
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38800>
salience        : 2.277388375659939e-05
wikipedia_url   : -
====================
name            : jaimelondonboy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61440>
salience        : 2.275955193908885e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a61e40>
salience        : 2.2751317374059e-05
wikipedia_url   : -
====================
name            : hea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a80>
salience        : 2.274905637023039e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf30>
salience        : 2.2748041374143213e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a030>
salience        : 2.2748041374143213e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a1c0>
salience        : 2.2741600332665257e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a350>
salience        : 2.2741600332665257e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a490>
salience        : 2.2741600332665257e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a5d0>
salience        : 2.2739717678632587e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a760>
salience        : 2.2738435291103087e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a8a0>
salience        : 2.2738435291103087e-05
wikipedia_url   : -
====================
name            : dame
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a990>
salience        : 2.2660184185951948e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3aad0>
salience        : 2.2660184185951948e-05
wikipedia_url   : -
====================
name            : region
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3acb0>
salience        : 2.264778049720917e-05
wikipedia_url   : -
====================
name            : region
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3aee0>
salience        : 2.264778049720917e-05
wikipedia_url   : -
====================
name            : design beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d080>
salience        : 2.262453199364245e-05
wikipedia_url   : -
====================
name            : embankment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d2b0>
salience        : 2.262453199364245e-05
wikipedia_url   : -
====================
name            : king cross thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d490>
salience        : 2.260309520352166e-05
wikipedia_url   : -
====================
name            : hit
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d5d0>
salience        : 2.2555841496796347e-05
wikipedia_url   : -
====================
name            : maoldz
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d760>
salience        : 2.2555841496796347e-05
wikipedia_url   : -
====================
name            : embankment
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d940>
salience        : 2.2547294065589085e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d9e0>
salience        : 2.2542832084582187e-05
wikipedia_url   : -
====================
name            : pond life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dad0>
salience        : 2.2539004930877127e-05
wikipedia_url   : -
====================
name            : step
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1db70>
salience        : 2.253095772175584e-05
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dd50>
salience        : 2.2521742721437477e-05
wikipedia_url   : -
====================
name            : lightsoflondon londonbynight lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1de90>
salience        : 2.2510614144266583e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1df80>
salience        : 2.2423304471885785e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85120>
salience        : 2.2411068130168132e-05
wikipedia_url   : -
====================
name            : residents installation bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85210>
salience        : 2.2405001800507307e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85300>
salience        : 2.2399066438083537e-05
wikipedia_url   : -
====================
name            : ottersrowing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85440>
salience        : 2.21797436097404e-05
wikipedia_url   : -
====================
name            : lumierelondon timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85530>
salience        : 2.2143582100397907e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85710>
salience        : 2.2120348148746416e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85800>
salience        : 2.2098041881690733e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85940>
salience        : 2.209625563409645e-05
wikipedia_url   : -
====================
name            : cheers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85a30>
salience        : 2.2094589439802803e-05
wikipedia_url   : -
====================
name            : celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85b70>
salience        : 2.2085527234594338e-05
wikipedia_url   : -
====================
name            : facebook page highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85bc0>
salience        : 2.207651050412096e-05
wikipedia_url   : -
====================
name            : city world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85da0>
salience        : 2.2070664272177964e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85e90>
salience        : 2.202856012445409e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85030>
salience        : 2.202856012445409e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e851c0>
salience        : 2.20174861169653e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e852b0>
salience        : 2.2006852304912172e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e853a0>
salience        : 2.2006852304912172e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85490>
salience        : 2.198677248088643e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85580>
salience        : 2.197727189923171e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e856c0>
salience        : 2.197727189923171e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85800>
salience        : 2.196809509769082e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85940>
salience        : 2.196809509769082e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85a30>
salience        : 2.195922570535913e-05
wikipedia_url   : -
====================
name            : minicabs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85b20>
salience        : 2.1862186258658767e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85c60>
salience        : 2.1846513845957816e-05
wikipedia_url   : -
====================
name            : therose westminstercath victoriabid visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85da0>
salience        : 2.1783611373393796e-05
wikipedia_url   : -
====================
name            : wander
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85f30>
salience        : 2.177567148464732e-05
wikipedia_url   : -
====================
name            : lumierelondon lumierelondon lumiere visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df20d0>
salience        : 2.1765723431599326e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2170>
salience        : 2.1749205188825727e-05
wikipedia_url   : -
====================
name            : abc11 musictaughtme polandia tombraider amazonhq2 ainextcon ukfrsummit celebrateented verybritishoffences gyimahmei thegoodside lollies2017 iwitot winniethepoohday thursdaythoughts stormpoolen 020kiest wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2260>
salience        : 2.1748988729086705e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df23a0>
salience        : 2.174311703129206e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2530>
salience        : 2.1740124793723226e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2670>
salience        : 2.1737165297963656e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df27b0>
salience        : 2.1734240363002755e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098760>
salience        : 2.1731346350861713e-05
wikipedia_url   : -
====================
name            : visitlondon city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a800>
salience        : 2.1710360670113005e-05
wikipedia_url   : -
====================
name            : media city
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d260>
salience        : 2.169865183532238e-05
wikipedia_url   : -
====================
name            : standstill
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d490>
salience        : 2.1696556359529495e-05
wikipedia_url   : -
====================
name            : granary square impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d580>
salience        : 2.1694761016988195e-05
wikipedia_url   : -
====================
name            : sta tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4da80>
salience        : 2.1682886654161848e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a182b0>
salience        : 2.164010402339045e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a185d0>
salience        : 2.1603716959361918e-05
wikipedia_url   : -
====================
name            : worry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18710>
salience        : 2.1532223399844952e-05
wikipedia_url   : -
====================
name            : traffic news updates
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18940>
salience        : 2.149219835700933e-05
wikipedia_url   : -
====================
name            : lampshade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18c60>
salience        : 2.1383008061093278e-05
wikipedia_url   : -
====================
name            : grosvenor_ldn wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46170>
salience        : 2.1316287529771216e-05
wikipedia_url   : -
====================
name            : kaybuxton
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a463f0>
salience        : 2.1220666894805618e-05
wikipedia_url   : -
====================
name            : soundscape
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46850>
salience        : 2.1180410840315744e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46ad0>
salience        : 2.117391341016628e-05
wikipedia_url   : -
====================
name            : abc11 musictaughtme polandia amazonhq2 ainextcon cstilii ukfrsummit celebrateented verybritishoffences gyimahmei thegoodside lollies2017 iwitot winniethepoohday thursdaythoughts empoweryourvoice kingscrossn1c croydonpaners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46ee0>
salience        : 2.111639696522616e-05
wikipedia_url   : -
====================
name            : winter lights canary wharf
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a030>
salience        : 2.109733031829819e-05
wikipedia_url   : -
====================
name            : mr
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a210>
salience        : 2.109733031829819e-05
wikipedia_url   : -
====================
name            : family
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ab70>
salience        : 2.1074731193948537e-05
wikipedia_url   : -
====================
name            : kaybuxton
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8080>
salience        : 2.1060001017758623e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de82b0>
salience        : 2.102169491990935e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de87b0>
salience        : 2.1018802726757713e-05
wikipedia_url   : -
====================
name            : atmosphere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8a80>
salience        : 2.1015941456425935e-05
wikipedia_url   : -
====================
name            : universe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8e40>
salience        : 2.100018537021242e-05
wikipedia_url   : -
====================
name            : universe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c210>
salience        : 2.100018537021242e-05
wikipedia_url   : -
====================
name            : think
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c350>
salience        : 2.0994584701838903e-05
wikipedia_url   : -
====================
name            : pa installation nightlife london visitlondon pond nature
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c580>
salience        : 2.0984509319532663e-05
wikipedia_url   : -
====================
name            : southbankbid leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c850>
salience        : 2.0981233319616877e-05
wikipedia_url   : -
====================
name            : doubt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c940>
salience        : 2.0969740944565274e-05
wikipedia_url   : -
====================
name            : scientist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cda0>
salience        : 2.095578020089306e-05
wikipedia_url   : -
====================
name            : effos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ce40>
salience        : 2.0936175133101642e-05
wikipedia_url   : -
====================
name            : visitbritain visitlondon loveuk kaybuxton
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c030>
salience        : 2.0906840290990658e-05
wikipedia_url   : -
====================
name            : lumierelondon londonwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3f0>
salience        : 2.089205190713983e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c9e0>
salience        : 2.0719115127576515e-05
wikipedia_url   : -
====================
name            : academy
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ce90>
salience        : 2.0707941075670533e-05
wikipedia_url   : -
====================
name            : performers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c990>
salience        : 2.0707941075670533e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2080>
salience        : 2.070432310574688e-05
wikipedia_url   : -
====================
name            : shot raspberry ripple side
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2260>
salience        : 2.069377114821691e-05
wikipedia_url   : -
====================
name            : wave action
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2670>
salience        : 2.0683643015217967e-05
wikipedia_url   : -
====================
name            : wave action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2940>
salience        : 2.0667621356551535e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2b70>
salience        : 2.0637546185753308e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8580>
salience        : 2.0629386199289e-05
wikipedia_url   : -
====================
name            : offer book subject availability
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88a0>
salience        : 2.059585676761344e-05
wikipedia_url   : -
====================
name            : academy
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a531c0>
salience        : 2.0577575924107805e-05
wikipedia_url   : -
====================
name            : roamingrequired
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53260>
salience        : 2.049330942099914e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a53b70>
salience        : 2.0487406800384633e-05
wikipedia_url   : -
====================
name            : lumiere leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e170>
salience        : 2.0470673916861415e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7edf0>
salience        : 2.0332603526185267e-05
wikipedia_url   : -
====================
name            : ottersrowing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79ad0>
salience        : 2.030514406214934e-05
wikipedia_url   : -
====================
name            : love
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a486c0>
salience        : 2.0199180653435178e-05
wikipedia_url   : -
====================
name            : pride pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48d00>
salience        : 2.019848943746183e-05
wikipedia_url   : -
====================
name            : bike power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48f30>
salience        : 2.0138579202466644e-05
wikipedia_url   : -
====================
name            : kingscrossn1c granarysquarebrasserie daanr wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03440>
salience        : 2.0083956769667566e-05
wikipedia_url   : -
====================
name            : kingscrossn1c kxquaerly
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e034e0>
salience        : 2.0066863726242445e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03580>
salience        : 2.0040137314936146e-05
wikipedia_url   : -
====================
name            : fitzrovia
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03670>
salience        : 2.0026578567922115e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Fitzrovia
====================
name            : technicolour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03710>
salience        : 2.0000596123281866e-05
wikipedia_url   : -
====================
name            : launch canadahouse deputy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e037b0>
salience        : 1.9978791897301562e-05
wikipedia_url   : -
====================
name            : lasers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03850>
salience        : 1.9955343304900452e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e038f0>
salience        : 1.993189835047815e-05
wikipedia_url   : -
====================
name            : sroosegaarde waterlicht kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03990>
salience        : 1.989823613257613e-05
wikipedia_url   : -
====================
name            : sta tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03a30>
salience        : 1.9813465769402683e-05
wikipedia_url   : -
====================
name            : festival celebration
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03a80>
salience        : 1.9752127627725713e-05
wikipedia_url   : -
====================
name            : power illumination
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03ad0>
salience        : 1.970449557120446e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03b20>
salience        : 1.9643410269054584e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03bc0>
salience        : 1.9622342733782716e-05
wikipedia_url   : -
====================
name            : ottersrowing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03c60>
salience        : 1.96093042177381e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03d00>
salience        : 1.9599956431193277e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03d50>
salience        : 1.95945813175058e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03da0>
salience        : 1.9593921024352312e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03e40>
salience        : 1.9593921024352312e-05
wikipedia_url   : -
====================
name            : kids
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03ee0>
salience        : 1.957836138899438e-05
wikipedia_url   : -
====================
name            : amp cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b030>
salience        : 1.9573255485738628e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b0d0>
salience        : 1.9511260688886978e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b170>
salience        : 1.950008299900219e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b210>
salience        : 1.9474247892503627e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b2b0>
salience        : 1.9474247892503627e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b350>
salience        : 1.9474247892503627e-05
wikipedia_url   : -
====================
name            : car bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b3f0>
salience        : 1.9474247892503627e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b440>
salience        : 1.9455434085102752e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b4e0>
salience        : 1.9455434085102752e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b580>
salience        : 1.9442242773948237e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b5d0>
salience        : 1.9438004528637975e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b6c0>
salience        : 1.9425728169153444e-05
wikipedia_url   : -
====================
name            : festival returns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b710>
salience        : 1.942518792930059e-05
wikipedia_url   : -
====================
name            : rambe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b760>
salience        : 1.9421773686190136e-05
wikipedia_url   : -
====================
name            : hand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b7b0>
salience        : 1.9388142391107976e-05
wikipedia_url   : -
====================
name            : issue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b800>
salience        : 1.9240445908508264e-05
wikipedia_url   : -
====================
name            : occitanie guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b8a0>
salience        : 1.9229913959861733e-05
wikipedia_url   : -
====================
name            : latter
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b990>
salience        : 1.9200895621906966e-05
wikipedia_url   : -
====================
name            : marriottcountyhall zumtobel_light
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1ba30>
salience        : 1.9200895621906966e-05
wikipedia_url   : -
====================
name            : tribute
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bad0>
salience        : 1.919197165989317e-05
wikipedia_url   : -
====================
name            : elegance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bb70>
salience        : 1.912408333737403e-05
wikipedia_url   : -
====================
name            : mastercardemployee
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bc10>
salience        : 1.9117631381959654e-05
wikipedia_url   : -
====================
name            : hav
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bc60>
salience        : 1.9093473383691162e-05
wikipedia_url   : -
====================
name            : snippet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bd00>
salience        : 1.9093473383691162e-05
wikipedia_url   : -
====================
name            : snippet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bda0>
salience        : 1.9087807231699117e-05
wikipedia_url   : -
====================
name            : cosmoscope wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1be40>
salience        : 1.9062576029682532e-05
wikipedia_url   : -
====================
name            : metaphor
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bee0>
salience        : 1.905287899717223e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bf80>
salience        : 1.903907468658872e-05
wikipedia_url   : -
====================
name            : commute home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f0d0>
salience        : 1.902923577290494e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f170>
salience        : 1.9022902051801793e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f210>
salience        : 1.9016735677723773e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f2b0>
salience        : 1.8996364815393463e-05
wikipedia_url   : -
====================
name            : roamingrequired
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f300>
salience        : 1.893340959213674e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f3f0>
salience        : 1.891385909402743e-05
wikipedia_url   : -
====================
name            : street st james market
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f490>
salience        : 1.889849954750389e-05
wikipedia_url   : -
====================
name            : marriage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f530>
salience        : 1.884564153442625e-05
wikipedia_url   : -
====================
name            : market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f5d0>
salience        : 1.8841739802155644e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f670>
salience        : 1.8837903553503565e-05
wikipedia_url   : -
====================
name            : victoriabid londonstashere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f710>
salience        : 1.8831402485375293e-05
wikipedia_url   : -
====================
name            : wish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f760>
salience        : 1.87914956768509e-05
wikipedia_url   : -
====================
name            : surface
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f800>
salience        : 1.877912291092798e-05
wikipedia_url   : -
====================
name            : sides
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f850>
salience        : 1.870414416771382e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy visitlondon kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f8f0>
salience        : 1.866775164671708e-05
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f940>
salience        : 1.8623319192556664e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere kaybuxton
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f9e0>
salience        : 1.8604278011480346e-05
wikipedia_url   : -
====================
name            : piccadilly kaybuxton
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fa30>
salience        : 1.8521732272347435e-05
wikipedia_url   : -
====================
name            : idontknowhim leakestarches
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fa80>
salience        : 1.8501890735933557e-05
wikipedia_url   : -
====================
name            : makes
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fb20>
salience        : 1.8444561646902002e-05
wikipedia_url   : -
====================
name            : purchase
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fbc0>
salience        : 1.8407366951578297e-05
wikipedia_url   : -
====================
name            : shooting stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fc60>
salience        : 1.8397855455987155e-05
wikipedia_url   : -
====================
name            : purchase
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fd00>
salience        : 1.8385770090389997e-05
wikipedia_url   : -
====================
name            : droplets
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fdf0>
salience        : 1.8368784367339686e-05
wikipedia_url   : -
====================
name            : visitlondon aichoketrust wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fe90>
salience        : 1.834959039115347e-05
wikipedia_url   : -
====================
name            : london kingsx fitzrovia wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1ff30>
salience        : 1.83447318704566e-05
wikipedia_url   : -
====================
name            : westminster asalto wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16030>
salience        : 1.8342339899390936e-05
wikipedia_url   : -
====================
name            : vip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16080>
salience        : 1.830146175052505e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16170>
salience        : 1.8299448129255325e-05
wikipedia_url   : -
====================
name            : cyclists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16260>
salience        : 1.825251820264384e-05
wikipedia_url   : -
====================
name            : cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16350>
salience        : 1.8228092812933028e-05
wikipedia_url   : -
====================
name            : buzz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e163a0>
salience        : 1.8147709852200933e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e163f0>
salience        : 1.7962001948035322e-05
wikipedia_url   : -
====================
name            : bihday
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e164e0>
salience        : 1.7959444448933937e-05
wikipedia_url   : -
====================
name            : eye visitlondon website updates
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16530>
salience        : 1.7956488591153175e-05
wikipedia_url   : -
====================
name            : ottersrowing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e165d0>
salience        : 1.795194657461252e-05
wikipedia_url   : -
====================
name            : map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16620>
salience        : 1.7945178115041927e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16710>
salience        : 1.7944696082849987e-05
wikipedia_url   : -
====================
name            : shout
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16760>
salience        : 1.794233321561478e-05
wikipedia_url   : -
====================
name            : aichoketrust outdooras london lumierelondon thelondoneye
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16800>
salience        : 1.7928663510247134e-05
wikipedia_url   : -
====================
name            : euro_tour 光の祭典 ルミエール ロンドン
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e168a0>
salience        : 1.7910970200318843e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16940>
salience        : 1.7848913557827473e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e169e0>
salience        : 1.784651067282539e-05
wikipedia_url   : -
====================
name            : feel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16a30>
salience        : 1.7842472516349517e-05
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16ad0>
salience        : 1.7841783119365573e-05
wikipedia_url   : -
====================
name            : fitzrovia mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16b20>
salience        : 1.77928068296751e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16bc0>
salience        : 1.7788550394470803e-05
wikipedia_url   : -
====================
name            : lumierelondon photograghy mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16c10>
salience        : 1.7768446923582815e-05
wikipedia_url   : -
====================
name            : bloombergservice euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16cb0>
salience        : 1.7757223758962937e-05
wikipedia_url   : -
====================
name            : balance fruit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16d50>
salience        : 1.772909854480531e-05
wikipedia_url   : -
====================
name            : footprint cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16da0>
salience        : 1.7725957150105387e-05
wikipedia_url   : -
====================
name            : cosmoscope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16e40>
salience        : 1.772285941115115e-05
wikipedia_url   : -
====================
name            : footprint cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16e90>
salience        : 1.7705158825265244e-05
wikipedia_url   : -
====================
name            : city justsayin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16ee0>
salience        : 1.7691443645162508e-05
wikipedia_url   : -
====================
name            : traffic approaches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16f30>
salience        : 1.768880247254856e-05
wikipedia_url   : -
====================
name            : lumierelondon smitf_london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce030>
salience        : 1.7665270206634887e-05
wikipedia_url   : -
====================
name            : west end
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce120>
salience        : 1.764313674357254e-05
wikipedia_url   : https://en.wikipedia.org/wiki/West_End_of_London
====================
name            : awe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce170>
salience        : 1.7609378119232133e-05
wikipedia_url   : -
====================
name            : awe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce1c0>
salience        : 1.7595077224541456e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce210>
salience        : 1.7586047761142254e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce260>
salience        : 1.7586047761142254e-05
wikipedia_url   : -
====================
name            : imaginationlabs pong
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce2b0>
salience        : 1.7577383914613165e-05
wikipedia_url   : -
====================
name            : skyline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce350>
salience        : 1.7553318684804253e-05
wikipedia_url   : -
====================
name            : stall skylarkgallery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce3a0>
salience        : 1.754223194438964e-05
wikipedia_url   : -
====================
name            : commute home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce490>
salience        : 1.741708183544688e-05
wikipedia_url   : -
====================
name            : show metadata
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce530>
salience        : 1.7414658941561356e-05
wikipedia_url   : -
====================
name            : illuminations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce5d0>
salience        : 1.7409891370334662e-05
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce620>
salience        : 1.7409891370334662e-05
wikipedia_url   : -
====================
name            : eye visitlondon website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce670>
salience        : 1.7407548511982895e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce6c0>
salience        : 1.7404237951268442e-05
wikipedia_url   : -
====================
name            : know
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce710>
salience        : 1.7396205294062383e-05
wikipedia_url   : -
====================
name            : bihday hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce7b0>
salience        : 1.7367236068821512e-05
wikipedia_url   : -
====================
name            : wabbey theringbar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce850>
salience        : 1.7350110283587128e-05
wikipedia_url   : -
====================
name            : activity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce8f0>
salience        : 1.724373214528896e-05
wikipedia_url   : -
====================
name            : lightuplondon teamldn
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce990>
salience        : 1.7218389984918758e-05
wikipedia_url   : -
====================
name            : picadilly circus light show bit disaster
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce9e0>
salience        : 1.7208318240591325e-05
wikipedia_url   : -
====================
name            : chris
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcea80>
salience        : 1.717238046694547e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Chris_Plante
====================
name            : rangs kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dceb20>
salience        : 1.7118196410592645e-05
wikipedia_url   : -
====================
name            : bread
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcebc0>
salience        : 1.6996207705233246e-05
wikipedia_url   : -
====================
name            : amsterdam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcec60>
salience        : 1.696946674201172e-05
wikipedia_url   : -
====================
name            : tripod lumiere amsterdam
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dced00>
salience        : 1.696669824013952e-05
wikipedia_url   : -
====================
name            : pleasure
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dceda0>
salience        : 1.69639679370448e-05
wikipedia_url   : -
====================
name            : bluefinbuilding
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcedf0>
salience        : 1.6955982573563233e-05
wikipedia_url   : -
====================
name            : pleasure
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcee90>
salience        : 1.695082573860418e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcef30>
salience        : 1.6933361621340737e-05
wikipedia_url   : -
====================
name            : camden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd080>
salience        : 1.691516808932647e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Camden
====================
name            : spoiler
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd120>
salience        : 1.6897425666684285e-05
wikipedia_url   : -
====================
name            : tips
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48f80>
salience        : 1.6888176105567254e-05
wikipedia_url   : -
====================
name            : structures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48620>
salience        : 1.6888176105567254e-05
wikipedia_url   : -
====================
name            : euclidean geometry fractal algorithms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bead0>
salience        : 1.6888176105567254e-05
wikipedia_url   : -
====================
name            : telephone booths
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0080>
salience        : 1.6888176105567254e-05
wikipedia_url   : -
====================
name            : gridlock origin world bubble
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b01c0>
salience        : 1.6872196283657104e-05
wikipedia_url   : -
====================
name            : tings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99990>
salience        : 1.687083931756206e-05
wikipedia_url   : -
====================
name            : lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5800>
salience        : 1.6862959455465898e-05
wikipedia_url   : -
====================
name            : conce
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd5030>
salience        : 1.6854854038683698e-05
wikipedia_url   : -
====================
name            : chomp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b20>
salience        : 1.6854854038683698e-05
wikipedia_url   : -
====================
name            : hi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8030>
salience        : 1.6847305232658982e-05
wikipedia_url   : -
====================
name            : purchase
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8170>
salience        : 1.6841560864122584e-05
wikipedia_url   : -
====================
name            : side door
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8260>
salience        : 1.6841540855239145e-05
wikipedia_url   : -
====================
name            : poal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8300>
salience        : 1.6840025637065992e-05
wikipedia_url   : -
====================
name            : flavour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8440>
salience        : 1.6840025637065992e-05
wikipedia_url   : -
====================
name            : china town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8620>
salience        : 1.6836846043588594e-05
wikipedia_url   : -
====================
name            : promo code
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8760>
salience        : 1.6832995243021287e-05
wikipedia_url   : -
====================
name            : light show join
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea88a0>
salience        : 1.6832995243021287e-05
wikipedia_url   : -
====================
name            : fab
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8940>
salience        : 1.6832995243021287e-05
wikipedia_url   : -
====================
name            : compasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8a80>
salience        : 1.6832238543429412e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8bc0>
salience        : 1.6829972082632594e-05
wikipedia_url   : -
====================
name            : bread
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8cb0>
salience        : 1.6825884813442826e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8ee0>
salience        : 1.6822150428197347e-05
wikipedia_url   : -
====================
name            : echelle
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b0d0>
salience        : 1.6819005395518616e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b260>
salience        : 1.6819005395518616e-05
wikipedia_url   : -
====================
name            : visitlondon travel travelinspires thursdaythoughts visitlondon amyelizabethtv aichoketrust westminsterabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b350>
salience        : 1.6816982679301873e-05
wikipedia_url   : -
====================
name            : glock
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b3f0>
salience        : 1.679523484199308e-05
wikipedia_url   : -
====================
name            : strolls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b4e0>
salience        : 1.679523484199308e-05
wikipedia_url   : -
====================
name            : name
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b580>
salience        : 1.679523484199308e-05
wikipedia_url   : -
====================
name            : adves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b620>
salience        : 1.678956687101163e-05
wikipedia_url   : -
====================
name            : ricoharena
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b760>
salience        : 1.678956687101163e-05
wikipedia_url   : -
====================
name            : amp waterloo pop dimsum feast
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b850>
salience        : 1.678956687101163e-05
wikipedia_url   : -
====================
name            : lumierelondon inktonermarket
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b8f0>
salience        : 1.6778683857410215e-05
wikipedia_url   : -
====================
name            : clairelhoney
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ba80>
salience        : 1.6778683857410215e-05
wikipedia_url   : -
====================
name            : cocktail lounge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bc10>
salience        : 1.6778683857410215e-05
wikipedia_url   : -
====================
name            : safari
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bd00>
salience        : 1.6646828953525983e-05
wikipedia_url   : -
====================
name            : awork lots
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bee0>
salience        : 1.6619133020867594e-05
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8080>
salience        : 1.6595458873780444e-05
wikipedia_url   : -
====================
name            : abc11 musictaughtme polandia tombraider amazonhq2 ainextcon ukfrsummit celebrateented verybritishoffences gyimahmei thegoodside lollies2017 iwitot winniethepoohday thursdaythoughts stormpoolen 020kiest
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8210>
salience        : 1.635029911994934e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd83a0>
salience        : 1.6267969840555452e-05
wikipedia_url   : -
====================
name            : solomongreyband
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8530>
salience        : 1.623268508410547e-05
wikipedia_url   : -
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd85d0>
salience        : 1.622275885893032e-05
wikipedia_url   : -
====================
name            : footprint cards
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8670>
salience        : 1.621811134100426e-05
wikipedia_url   : -
====================
name            : balance fruit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8850>
salience        : 1.620054717932362e-05
wikipedia_url   : -
====================
name            : tonight recommendation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd88f0>
salience        : 1.620054717932362e-05
wikipedia_url   : -
====================
name            : reason
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8a30>
salience        : 1.6186786524485797e-05
wikipedia_url   : -
====================
name            : reason
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8b70>
salience        : 1.6183646948775277e-05
wikipedia_url   : -
====================
name            : coup
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8c10>
salience        : 1.616018380445894e-05
wikipedia_url   : -
====================
name            : light installation wildlife flowers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8cb0>
salience        : 1.6152060197782703e-05
wikipedia_url   : -
====================
name            : lumierelondon marikatweets
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8df0>
salience        : 1.6136755220941268e-05
wikipedia_url   : -
====================
name            : community groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8f30>
salience        : 1.6134317775140516e-05
wikipedia_url   : -
====================
name            : refleketer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6120>
salience        : 1.61109164764639e-05
wikipedia_url   : -
====================
name            : fitzrovia london healthyvibes january2018 weekendvibes pescatori charlottestreet timeoutlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea62b0>
salience        : 1.6103485904750414e-05
wikipedia_url   : -
====================
name            : refleketer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6440>
salience        : 1.6097832485684194e-05
wikipedia_url   : -
====================
name            : aquarium telephone box
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6620>
salience        : 1.609723040019162e-05
wikipedia_url   : -
====================
name            : standardnews staronline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea66c0>
salience        : 1.6071964637376368e-05
wikipedia_url   : -
====================
name            : ff fridayfeeling tgif designcouncil mayoroflondon londonisopen timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6850>
salience        : 1.6071964637376368e-05
wikipedia_url   : -
====================
name            : waterlooplace greatpolandstreet stjames fridayfeeling timeoutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6990>
salience        : 1.606065416126512e-05
wikipedia_url   : -
====================
name            : flowers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6b20>
salience        : 1.602270276634954e-05
wikipedia_url   : -
====================
name            : church
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6d50>
salience        : 1.602270276634954e-05
wikipedia_url   : -
====================
name            : greetings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6e90>
salience        : 1.5998237358871847e-05
wikipedia_url   : -
====================
name            : ruby wearewaterloouk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea6f30>
salience        : 1.59949813678395e-05
wikipedia_url   : -
====================
name            : employees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03170>
salience        : 1.598862581886351e-05
wikipedia_url   : -
====================
name            : aichoketrust londona lovecamden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e032b0>
salience        : 1.5822248315089382e-05
wikipedia_url   : -
====================
name            : lumierelondon ldn_culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e03350>
salience        : 1.5816600352991372e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a38e90>
salience        : 1.573677764099557e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb760>
salience        : 1.564325975778047e-05
wikipedia_url   : -
====================
name            : installation top list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb580>
salience        : 1.556840470584575e-05
wikipedia_url   : -
====================
name            : surface
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a260>
salience        : 1.5543622794211842e-05
wikipedia_url   : -
====================
name            : variety installations amp food drink pit stops
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a3f0>
salience        : 1.552234243717976e-05
wikipedia_url   : -
====================
name            : voyage installation aichoketrust piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a620>
salience        : 1.5515019185841084e-05
wikipedia_url   : -
====================
name            : rao
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3a8f0>
salience        : 1.550572233099956e-05
wikipedia_url   : -
====================
name            : android
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ab70>
salience        : 1.550088381918613e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Android_(operating_system)
====================
name            : walk station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a3ada0>
salience        : 1.5475205145776272e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d210>
salience        : 1.5434377928613685e-05
wikipedia_url   : -
====================
name            : cheers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d580>
salience        : 1.526573942101095e-05
wikipedia_url   : -
====================
name            : idea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d670>
salience        : 1.5259955034707673e-05
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d6c0>
salience        : 1.524889830761822e-05
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d800>
salience        : 1.5243607776938006e-05
wikipedia_url   : -
====================
name            : sponsor lanterncompany life size
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1d8a0>
salience        : 1.523594528407557e-05
wikipedia_url   : -
====================
name            : lamps line street stpancrasint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1da30>
salience        : 1.5231006727844942e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dcb0>
salience        : 1.5169447578955442e-05
wikipedia_url   : -
====================
name            : carnabylondon lightupthenight seethelight lightupthesky illuminations lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1dee0>
salience        : 1.516856991656823e-05
wikipedia_url   : -
====================
name            : blog post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a852b0>
salience        : 1.5152900232351385e-05
wikipedia_url   : -
====================
name            : effos scribbling_lau
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a853a0>
salience        : 1.5152900232351385e-05
wikipedia_url   : -
====================
name            : blog post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85760>
salience        : 1.5144417375267949e-05
wikipedia_url   : -
====================
name            : damejudidench meeting
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85990>
salience        : 1.513238294137409e-05
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85ad0>
salience        : 1.5113923836906906e-05
wikipedia_url   : -
====================
name            : world class
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85d00>
salience        : 1.5093971342139412e-05
wikipedia_url   : -
====================
name            : india
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a85f30>
salience        : 1.5089247426658403e-05
wikipedia_url   : https://en.wikipedia.org/wiki/India
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85300>
salience        : 1.5087774954736233e-05
wikipedia_url   : -
====================
name            : rca lightupthenight seethelight lightupthesky
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85530>
salience        : 1.5085052837093826e-05
wikipedia_url   : -
====================
name            : jaw
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85620>
salience        : 1.5039616300782654e-05
wikipedia_url   : -
====================
name            : cheers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e858a0>
salience        : 1.4894257219566498e-05
wikipedia_url   : -
====================
name            : westminster bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85a80>
salience        : 1.4885358723404352e-05
wikipedia_url   : -
====================
name            : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon maoldz
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85d00>
salience        : 1.4878169167786837e-05
wikipedia_url   : -
====================
name            : visitlondon pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df28f0>
salience        : 1.4858112081128638e-05
wikipedia_url   : -
====================
name            : standardnews staronline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2990>
salience        : 1.4845969417365268e-05
wikipedia_url   : -
====================
name            : album cover
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2d50>
salience        : 1.4794894923397806e-05
wikipedia_url   : -
====================
name            : covent garden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2f30>
salience        : 1.4784226550546009e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Covent_Garden
====================
name            : russellofeah greetings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2030>
salience        : 1.4780480341869406e-05
wikipedia_url   : -
====================
name            : walk home work heck lot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df21c0>
salience        : 1.477851219533477e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2490>
salience        : 1.477851219533477e-05
wikipedia_url   : -
====================
name            : heroine nzvpak
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df2710>
salience        : 1.475565386499511e-05
wikipedia_url   : -
====================
name            : flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098850>
salience        : 1.473407701269025e-05
wikipedia_url   : -
====================
name            : jayonlife lovelondon travelblogger ottersrowing
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081da0>
salience        : 1.473377960792277e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d850>
salience        : 1.4656207895313855e-05
wikipedia_url   : -
====================
name            : road closures process
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a180d0>
salience        : 1.4637259482697118e-05
wikipedia_url   : -
====================
name            : 流れる霧をライトアップしたインスタレーション waterlicht daan roosegaarde kings cross
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a183a0>
salience        : 1.4490598914562725e-05
wikipedia_url   : -
====================
name            : accounts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18850>
salience        : 1.4482567166851368e-05
wikipedia_url   : -
====================
name            : iphone7plus wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18e90>
salience        : 1.4470509086095262e-05
wikipedia_url   : -
====================
name            : visitlondon travel travelinspires
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46580>
salience        : 1.4281807125371415e-05
wikipedia_url   : -
====================
name            : lumierelondon memoirsofametro
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46990>
salience        : 1.424791116733104e-05
wikipedia_url   : -
====================
name            : treat butterflies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46da0>
salience        : 1.4207473213900812e-05
wikipedia_url   : -
====================
name            : flicker
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a300>
salience        : 1.4204842045728583e-05
wikipedia_url   : -
====================
name            : ondes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a350>
salience        : 1.4204842045728583e-05
wikipedia_url   : -
====================
name            : shooting stars
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ad50>
salience        : 1.4204842045728583e-05
wikipedia_url   : -
====================
name            : sleguil ay watering cans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ae40>
salience        : 1.4194699360814411e-05
wikipedia_url   : -
====================
name            : scientist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8710>
salience        : 1.4194699360814411e-05
wikipedia_url   : -
====================
name            : floor
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8940>
salience        : 1.4194699360814411e-05
wikipedia_url   : -
====================
name            : ondes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8bc0>
salience        : 1.4192253729561344e-05
wikipedia_url   : -
====================
name            : light flicker
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8f30>
salience        : 1.4189842659106944e-05
wikipedia_url   : -
====================
name            : cans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c170>
salience        : 1.4180522157403175e-05
wikipedia_url   : -
====================
name            : england
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb20>
salience        : 1.4175465366861317e-05
wikipedia_url   : https://en.wikipedia.org/wiki/England
====================
name            : watering cans
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c2b0>
salience        : 1.4173847375786863e-05
wikipedia_url   : -
====================
name            : rowing
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c760>
salience        : 1.4173847375786863e-05
wikipedia_url   : -
====================
name            : city avweekjuliet
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c1c0>
salience        : 1.4171678230923135e-05
wikipedia_url   : -
====================
name            : doublemacbex
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c800>
salience        : 1.4169537280395161e-05
wikipedia_url   : -
====================
name            : rowing
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c0d0>
salience        : 1.4167421795718838e-05
wikipedia_url   : -
====================
name            : lumiere2018 aichoketrust london visitlondon simon_burgess
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2850>
salience        : 1.41655555125908e-05
wikipedia_url   : -
====================
name            : michelin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2ee0>
salience        : 1.4142459804133978e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Michelin
====================
name            : visitlondon london lightfestival illumaphonium
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d50>
salience        : 1.4142459804133978e-05
wikipedia_url   : -
====================
name            : effos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd170>
salience        : 1.410380718880333e-05
wikipedia_url   : -
====================
name            : book meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd210>
salience        : 1.409990363754332e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd2b0>
salience        : 1.4078182175580878e-05
wikipedia_url   : -
====================
name            : wind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd300>
salience        : 1.4075638318900019e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd3f0>
salience        : 1.4074816135689616e-05
wikipedia_url   : -
====================
name            : jaw
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd440>
salience        : 1.4071513760427479e-05
wikipedia_url   : -
====================
name            : love motion
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd530>
salience        : 1.4071513760427479e-05
wikipedia_url   : -
====================
name            : scientist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd620>
salience        : 1.4058908163860906e-05
wikipedia_url   : -
====================
name            : bermudae
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd6c0>
salience        : 1.4050027857592795e-05
wikipedia_url   : -
====================
name            : floor
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd760>
salience        : 1.4050027857592795e-05
wikipedia_url   : -
====================
name            : joy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd7b0>
salience        : 1.3953743291494902e-05
wikipedia_url   : -
====================
name            : spots
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd800>
salience        : 1.3951756045571528e-05
wikipedia_url   : -
====================
name            : camera
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd8f0>
salience        : 1.3945931641501375e-05
wikipedia_url   : -
====================
name            : beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd990>
salience        : 1.3945931641501375e-05
wikipedia_url   : -
====================
name            : nohernline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afda30>
salience        : 1.3940300050307997e-05
wikipedia_url   : -
====================
name            : meeting
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdad0>
salience        : 1.3934849448560271e-05
wikipedia_url   : -
====================
name            : wabbey visitlondon wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdb70>
salience        : 1.3822456821799278e-05
wikipedia_url   : -
====================
name            : croydon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdc60>
salience        : 1.3769012184638996e-05
wikipedia_url   : -
====================
name            : doublemacbex entre les rangs kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdd00>
salience        : 1.3740311260335147e-05
wikipedia_url   : -
====================
name            : earlham street head dial
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdd50>
salience        : 1.3731979379372206e-05
wikipedia_url   : -
====================
name            : lewisham ivysohobrass
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afddf0>
salience        : 1.3603661500383168e-05
wikipedia_url   : -
====================
name            : level
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afde40>
salience        : 1.3559471881308127e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afde90>
salience        : 1.3540909094444942e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdee0>
salience        : 1.3538437997340225e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdf30>
salience        : 1.3531240256270394e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afdf80>
salience        : 1.3531240256270394e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17030>
salience        : 1.3531240256270394e-05
wikipedia_url   : -
====================
name            : michelinstar chinatownlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b170d0>
salience        : 1.3507283256330993e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17170>
salience        : 1.3478481378115248e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b171c0>
salience        : 1.3448404388327617e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17210>
salience        : 1.3416960428003222e-05
wikipedia_url   : -
====================
name            : exhibition amp plenty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17260>
salience        : 1.3416960428003222e-05
wikipedia_url   : -
====================
name            : travelinspires thursdaythoughts visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17300>
salience        : 1.3359594049688894e-05
wikipedia_url   : -
====================
name            : ff fridayfeeling tgif designcouncil mayoroflondon londonisopen timeoutlondon maoldz westminster abbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b173a0>
salience        : 1.3329367902770173e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17440>
salience        : 1.3318118362803943e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17490>
salience        : 1.3268704606161918e-05
wikipedia_url   : -
====================
name            : buses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b174e0>
salience        : 1.3247373317426536e-05
wikipedia_url   : -
====================
name            : fields
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17580>
salience        : 1.3177635992178693e-05
wikipedia_url   : -
====================
name            : tgjenkins
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17620>
salience        : 1.2993220479984302e-05
wikipedia_url   : -
====================
name            : heaven
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17710>
salience        : 1.2991348739888053e-05
wikipedia_url   : -
====================
name            : shooting stars
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17760>
salience        : 1.2984075510757975e-05
wikipedia_url   : -
====================
name            : ondes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b177b0>
salience        : 1.2984075510757975e-05
wikipedia_url   : -
====================
name            : flicker
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17850>
salience        : 1.2984075510757975e-05
wikipedia_url   : -
====================
name            : projection mapping
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b178a0>
salience        : 1.2978832273802254e-05
wikipedia_url   : -
====================
name            : projection mapping
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b178f0>
salience        : 1.2978832273802254e-05
wikipedia_url   : -
====================
name            : lumierelondon ghosts
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17990>
salience        : 1.2959419109392911e-05
wikipedia_url   : -
====================
name            : sea levels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17a30>
salience        : 1.2956982573086862e-05
wikipedia_url   : -
====================
name            : nephews
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17b20>
salience        : 1.2956982573086862e-05
wikipedia_url   : -
====================
name            : drop kerbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17bc0>
salience        : 1.2945332855451852e-05
wikipedia_url   : -
====================
name            : apa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17c10>
salience        : 1.2940903616254218e-05
wikipedia_url   : -
====================
name            : city road closures process
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17c60>
salience        : 1.2940903616254218e-05
wikipedia_url   : -
====================
name            : apa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17cb0>
salience        : 1.2940903616254218e-05
wikipedia_url   : -
====================
name            : rate
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17d00>
salience        : 1.2934486221638508e-05
wikipedia_url   : -
====================
name            : preparations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17da0>
salience        : 1.2926316230732482e-05
wikipedia_url   : -
====================
name            : studio roso
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17e40>
salience        : 1.2862440598837566e-05
wikipedia_url   : -
====================
name            : studio roso
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17ee0>
salience        : 1.2851995052187704e-05
wikipedia_url   : -
====================
name            : aichoketrust flamingos bird
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17f30>
salience        : 1.2836000678362325e-05
wikipedia_url   : -
====================
name            : flamingos bird
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17f80>
salience        : 1.2836000678362325e-05
wikipedia_url   : -
====================
name            : team bravo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e190d0>
salience        : 1.2830035302613396e-05
wikipedia_url   : -
====================
name            : nephews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19170>
salience        : 1.2827134924009442e-05
wikipedia_url   : -
====================
name            : gasholderldn
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19260>
salience        : 1.281874665437499e-05
wikipedia_url   : -
====================
name            : tgjenkins
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19300>
salience        : 1.2805696314899251e-05
wikipedia_url   : -
====================
name            : aichoketrust lumierelondon london londonlamppost alllitup
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e193a0>
salience        : 1.2789624634024221e-05
wikipedia_url   : -
====================
name            : lumierelondon bbcbreakfast
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e193f0>
salience        : 1.2784459613612853e-05
wikipedia_url   : -
====================
name            : lethabygallery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19440>
salience        : 1.272198096557986e-05
wikipedia_url   : -
====================
name            : edvaizey glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19490>
salience        : 1.2501110177254304e-05
wikipedia_url   : -
====================
name            : лондоне стартовали сразу два фестиваля света
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19530>
salience        : 1.2462570339266676e-05
wikipedia_url   : -
====================
name            : oxo tower wharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e195d0>
salience        : 1.2455748219508678e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Oxo_Tower
====================
name            : aichoketrust billfreehomes durham_uni
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19670>
salience        : 1.2405183042574208e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19710>
salience        : 1.2335060091572814e-05
wikipedia_url   : -
====================
name            : westminster canonukandie
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19760>
salience        : 1.2307870747463312e-05
wikipedia_url   : -
====================
name            : macron
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19850>
salience        : 1.2303311450523324e-05
wikipedia_url   : -
====================
name            : lumierelondon visitbritain visitlondon loveuk wabbey stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e198f0>
salience        : 1.2195336239528842e-05
wikipedia_url   : -
====================
name            : items
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19940>
salience        : 1.2173833056294825e-05
wikipedia_url   : -
====================
name            : hats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19990>
salience        : 1.2109819181205239e-05
wikipedia_url   : -
====================
name            : hats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e199e0>
salience        : 1.2013576451863628e-05
wikipedia_url   : -
====================
name            : hats
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19a30>
salience        : 1.1997995898127556e-05
wikipedia_url   : -
====================
name            : vlog
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19ad0>
salience        : 1.1849600923596881e-05
wikipedia_url   : -
====================
name            : latter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19b70>
salience        : 1.1846206689369865e-05
wikipedia_url   : -
====================
name            : atmosphere preview vlog
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19c10>
salience        : 1.1844539585581515e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19cb0>
salience        : 1.1836479643534403e-05
wikipedia_url   : -
====================
name            : prosecco book tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19d00>
salience        : 1.1831851224997081e-05
wikipedia_url   : -
====================
name            : oxotowerwharf lumierelondon photograghy southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19da0>
salience        : 1.1796972103184089e-05
wikipedia_url   : -
====================
name            : pre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19df0>
salience        : 1.1779919077525847e-05
wikipedia_url   : -
====================
name            : lethabygallery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19e40>
salience        : 1.1713564163073897e-05
wikipedia_url   : -
====================
name            : roamingrequired
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19ee0>
salience        : 1.1591290785872843e-05
wikipedia_url   : -
====================
name            : works traceyemin alaaminawi arabelladorman chris
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e19f80>
salience        : 1.1506691407703329e-05
wikipedia_url   : -
====================
name            : kingscrossn1c jkwaldman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54080>
salience        : 1.1482359695946798e-05
wikipedia_url   : -
====================
name            : street tunnel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54170>
salience        : 1.1379117495380342e-05
wikipedia_url   : -
====================
name            : wall graffiti
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54210>
salience        : 1.1379117495380342e-05
wikipedia_url   : -
====================
name            : kxpictures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a542b0>
salience        : 1.1379117495380342e-05
wikipedia_url   : -
====================
name            : shift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54300>
salience        : 1.13728883661679e-05
wikipedia_url   : -
====================
name            : noun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54350>
salience        : 1.13728883661679e-05
wikipedia_url   : -
====================
name            : finish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a543f0>
salience        : 1.1368886589480098e-05
wikipedia_url   : -
====================
name            : holiday inn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54490>
salience        : 1.1368886589480098e-05
wikipedia_url   : -
====================
name            : woman
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54530>
salience        : 1.136121318268124e-05
wikipedia_url   : -
====================
name            : regent street right
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54580>
salience        : 1.1347038707754109e-05
wikipedia_url   : -
====================
name            : defrosting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54620>
salience        : 1.1345364328008145e-05
wikipedia_url   : -
====================
name            : cookie dough southbank centre members
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a546c0>
salience        : 1.1345364328008145e-05
wikipedia_url   : -
====================
name            : visitlondon london lightfestival flipper540 eah
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54760>
salience        : 1.1327046195219737e-05
wikipedia_url   : -
====================
name            : grande playground de inverno creativityisgreat
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54800>
salience        : 1.1317744792904705e-05
wikipedia_url   : -
====================
name            : ufo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54850>
salience        : 1.1296087905066088e-05
wikipedia_url   : -
====================
name            : decorations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a548f0>
salience        : 1.1286914741504006e-05
wikipedia_url   : -
====================
name            : pair candlesticks
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54990>
salience        : 1.1286914741504006e-05
wikipedia_url   : -
====================
name            : exercise
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54a30>
salience        : 1.12839879875537e-05
wikipedia_url   : -
====================
name            : guest
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54a80>
salience        : 1.12839879875537e-05
wikipedia_url   : -
====================
name            : benjamingammon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54ad0>
salience        : 1.1281122169748414e-05
wikipedia_url   : -
====================
name            : piece migrancy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54b20>
salience        : 1.1270222785242368e-05
wikipedia_url   : -
====================
name            : aists amp employment oppounities tourism amp fitness
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54b70>
salience        : 1.1270222785242368e-05
wikipedia_url   : -
====================
name            : lumierelondon fitzrovia
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54c10>
salience        : 1.1255738172621932e-05
wikipedia_url   : -
====================
name            : esgolondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54d00>
salience        : 1.1088433893746696e-05
wikipedia_url   : -
====================
name            : soul
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54d50>
salience        : 1.1003861800418235e-05
wikipedia_url   : -
====================
name            : lumierelondon lumiere southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54df0>
salience        : 1.091027934307931e-05
wikipedia_url   : -
====================
name            : alaaminawi aichoketrust regentst_assoc thewpa newwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54e90>
salience        : 1.087741748051485e-05
wikipedia_url   : -
====================
name            : abc11 musictaughtme polandia tombraider amazonhq2 ainextcon ukfrsummit celebrateented verybritishoffences gyimahmei thegoodside lollies2017 iwitot winniethepoohday thursdaythoughts stormpoolen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a54f30>
salience        : 1.0867915079870727e-05
wikipedia_url   : -
====================
name            : cassieldotcom cosmoscope
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b16030>
salience        : 1.079898083844455e-05
wikipedia_url   : -
====================
name            : westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b160d0>
salience        : 1.0793248293339275e-05
wikipedia_url   : -
====================
name            : papers
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b161c0>
salience        : 1.0787860446725972e-05
wikipedia_url   : -
====================
name            : bicycles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a538f0>
salience        : 1.0665955414879136e-05
wikipedia_url   : -
====================
name            : holbid oxfordstreetw1 thenohbankbid victoriabid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a7e530>
salience        : 1.0607441254251171e-05
wikipedia_url   : -
====================
name            : street st james market
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e79620>
salience        : 1.0601155736367218e-05
wikipedia_url   : -
====================
name            : freelondon lumierelondon londonisopen shaunewalsh
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b120>
salience        : 1.0446580745337997e-05
wikipedia_url   : -
====================
name            : camera phone battery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b1c0>
salience        : 1.0399262464488856e-05
wikipedia_url   : -
====================
name            : saws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b260>
salience        : 1.0397847290732898e-05
wikipedia_url   : -
====================
name            : soing hat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b3a0>
salience        : 1.0395062417956069e-05
wikipedia_url   : -
====================
name            : harry potter
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b620>
salience        : 1.0395062417956069e-05
wikipedia_url   : -
====================
name            : rails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b670>
salience        : 1.0395062417956069e-05
wikipedia_url   : -
====================
name            : exhibition light sound gah
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b850>
salience        : 1.0390997886133846e-05
wikipedia_url   : -
====================
name            : price band
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1b940>
salience        : 1.0390997886133846e-05
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bb20>
salience        : 1.0390997886133846e-05
wikipedia_url   : -
====================
name            : bachelor
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bcb0>
salience        : 1.0390997886133846e-05
wikipedia_url   : -
====================
name            : navs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bd50>
salience        : 1.0390997886133846e-05
wikipedia_url   : -
====================
name            : orgs
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1be90>
salience        : 1.0389671842858661e-05
wikipedia_url   : -
====================
name            : legs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a1bf30>
salience        : 1.022506785375299e-05
wikipedia_url   : -
====================
name            : scotland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f120>
salience        : 9.95642585621681e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Scotland
====================
name            : liverpool
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f350>
salience        : 9.95642585621681e-06
wikipedia_url   : -
====================
name            : londoners londonisopen lovelondon loveldnlovecul repoers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f440>
salience        : 9.935611160472035e-06
wikipedia_url   : -
====================
name            : telegraphpics guardianphotos metropixdesk timespictures visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f580>
salience        : 9.935248272086028e-06
wikipedia_url   : -
====================
name            : jk rowling
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f7b0>
salience        : 9.931845852406695e-06
wikipedia_url   : https://en.wikipedia.org/wiki/J._K._Rowling
====================
name            : lumierelondon sinoradiouk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1f990>
salience        : 9.928665349434596e-06
wikipedia_url   : -
====================
name            : panership technicians_mih techniciansmakeithappen berkeleyst_bar berkeleysqgin bsqlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fb70>
salience        : 9.908339052344672e-06
wikipedia_url   : -
====================
name            : croydon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fd50>
salience        : 9.546067303745076e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Croydon
====================
name            : lumierelondon robbingham
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1fe40>
salience        : 9.527958354738075e-06
wikipedia_url   : -
====================
name            : controlnocontrol danieliregui
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e1ff80>
salience        : 9.481974302616436e-06
wikipedia_url   : -
====================
name            : loveuk erikflorin amsterdam streetphotography acsversace
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16120>
salience        : 9.458436579734553e-06
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon doublemacbex
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e161c0>
salience        : 9.452358426642604e-06
wikipedia_url   : -
====================
name            : stjameslondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16300>
salience        : 9.450401194044389e-06
wikipedia_url   : -
====================
name            : ireland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16580>
salience        : 9.429746569367126e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Ireland
====================
name            : lumierelondon nationalgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e166c0>
salience        : 9.3751514214091e-06
wikipedia_url   : -
====================
name            : reason
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16850>
salience        : 9.070856322068721e-06
wikipedia_url   : -
====================
name            : lumierelondon look stars
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16990>
salience        : 9.01310340850614e-06
wikipedia_url   : -
====================
name            : twitter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16b70>
salience        : 8.885742317943368e-06
wikipedia_url   : -
====================
name            : aichoketrust ldn_gov
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16d00>
salience        : 8.769695341470651e-06
wikipedia_url   : -
====================
name            : stjpiccadilly traceyemin
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e16f80>
salience        : 8.737056305108126e-06
wikipedia_url   : -
====================
name            : lightupthenight seethelight lightupthesky illuminations lumierelondon chinatownlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce0d0>
salience        : 8.64228877617279e-06
wikipedia_url   : -
====================
name            : beer
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce3f0>
salience        : 8.616899322078098e-06
wikipedia_url   : -
====================
name            : ideas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce440>
salience        : 8.477355549985077e-06
wikipedia_url   : -
====================
name            : brownshotel roccofoehotels kaybuxton
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce580>
salience        : 8.391001756535843e-06
wikipedia_url   : -
====================
name            : southbank bankside lightuplondon bestplacetowork kaybuxton
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce800>
salience        : 8.382141459151171e-06
wikipedia_url   : -
====================
name            : westminster bakerstreetq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dce940>
salience        : 8.240338502218947e-06
wikipedia_url   : -
====================
name            : rangs rami
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dceb70>
salience        : 8.230197636294179e-06
wikipedia_url   : -
====================
name            : love motion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcecb0>
salience        : 7.960277798702009e-06
wikipedia_url   : -
====================
name            : book meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcee40>
salience        : 7.898680451035034e-06
wikipedia_url   : -
====================
name            : alaaminawi aichoketrust regentst_assoc thewpa gabrielswharf
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dcef80>
salience        : 7.801711035426706e-06
wikipedia_url   : -
====================
name            : takemeaway swansaswimming
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22afd030>
salience        : 7.80012305767741e-06
wikipedia_url   : -
====================
name            : dhc sarahfountainsmith helenmarriage justinesimons trafalgarsquare
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a48940>
salience        : 7.589878350700019e-06
wikipedia_url   : -
====================
name            : soho lumierelondon carnabylondon nohernlights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a483a0>
salience        : 7.573828497697832e-06
wikipedia_url   : -
====================
name            : controlnocontrol lumierelondon goodgestreet mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f30>
salience        : 6.9997126956877764e-06
wikipedia_url   : -
====================
name            : rca
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea80d0>
salience        : 6.992892849666532e-06
wikipedia_url   : -
====================
name            : eyelovelondon lumierelondon lisaweeting leakestreet southbank clairelhoney
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea83a0>
salience        : 6.713447874062695e-06
wikipedia_url   : -
====================
name            : lumierelondon brightnights lightsoflondon thisislondon mydarlinglondon londondisclosure london_only liveloveldntown urbanphotography canon6
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8580>
salience        : 6.713447874062695e-06
wikipedia_url   : -
====================
name            : london lumiere lumierelondon lumierefestival london_enthusiast londonist highgatelondon londontown bestlondonphotos hellolondon goingoutlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8800>
salience        : 6.7123228291166015e-06
wikipedia_url   : -
====================
name            : aopédelondres london visitlondon igerslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8b20>
salience        : 6.703840426780516e-06
wikipedia_url   : -
====================
name            : camdenjonathan moveit4smiles
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8d50>
salience        : 6.655930519627873e-06
wikipedia_url   : -
====================
name            : thursdaythoughts twitterdown justicefornaqib kfcbontalkcentral
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea8f80>
salience        : 6.647298050665995e-06
wikipedia_url   : -
====================
name            : festival joys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b300>
salience        : 6.360880888678366e-06
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c roamingrequired lumierelondon manilove
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b6c0>
salience        : 6.147297426650766e-06
wikipedia_url   : -
====================
name            : bbcradiolondon vanessafeltz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8b800>
salience        : 6.13968131801812e-06
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon wendyhurrell
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bb70>
salience        : 6.138089247542666e-06
wikipedia_url   : -
====================
name            : piccadillycircus leicestersquare royalacademy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bda0>
salience        : 5.994907951389905e-06
wikipedia_url   : -
====================
name            : pokémon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8bf80>
salience        : 5.994307230139384e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Pokémon_(video_game_series)
====================
name            : computer
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8300>
salience        : 5.97713551542256e-06
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8940>
salience        : 3.916894002031768e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Ron_Haselden
====================
name            : amp space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8d50>
salience        : 1.8148509361992637e-09
wikipedia_url   : -
In [107]:
text = sentence_tokenized4
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

entities = language_client.analyze_entities(document).entities

# entity types from enums.Entity.Type
entity_type = ('UNKNOWN', 'PERSON', 'LOCATION', 'ORGANIZATION',
                   'EVENT', 'WORK_OF_ART', 'CONSUMER_GOOD', 'OTHER')

for entity in entities:
        print('=' * 20)
        print(u'{:<16}: {}'.format('name', entity.name))
        print(u'{:<16}: {}'.format('type', entity_type[entity.type]))
        print(u'{:<16}: {}'.format('metadata', entity.metadata))
        print(u'{:<16}: {}'.format('salience', entity.salience))
        print(u'{:<16}: {}'.format('wikipedia_url',
              entity.metadata.get('wikipedia_url', '-')))
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1bfff030>
salience        : 0.4536570906639099
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9ff80>
salience        : 0.06045268103480339
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0026c0>
salience        : 0.05054222047328949
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002df0>
salience        : 0.0351225882768631
wikipedia_url   : -
====================
name            : individuals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987440>
salience        : 0.02750876173377037
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987210>
salience        : 0.019441356882452965
wikipedia_url   : -
====================
name            : destinations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987670>
salience        : 0.018924620002508163
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4800>
salience        : 0.018397286534309387
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4a30>
salience        : 0.013512428849935532
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c48a0>
salience        : 0.007772162090986967
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4670>
salience        : 0.0071177096106112
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d350>
salience        : 0.006521142553538084
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01dad0>
salience        : 0.005973171908408403
wikipedia_url   : -
====================
name            : programme installations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d0d0>
salience        : 0.005269750952720642
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d800>
salience        : 0.005018598400056362
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ced50>
salience        : 0.0031150581780821085
wikipedia_url   : -
====================
name            : journeys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceb20>
salience        : 0.003015031572431326
wikipedia_url   : -
====================
name            : changes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec10>
salience        : 0.0026773957069963217
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ceee0>
salience        : 0.0020845646504312754
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ce9e0>
salience        : 0.0020675347186625004
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee90>
salience        : 0.0019282239954918623
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cebc0>
salience        : 0.0019153818720951676
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf5d0>
salience        : 0.001792167779058218
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf8a0>
salience        : 0.0017687618965283036
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf080>
salience        : 0.0016879767645150423
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf120>
salience        : 0.0016877728048712015
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf620>
salience        : 0.0016355807892978191
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf210>
salience        : 0.0016123628010973334
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc710>
salience        : 0.0016057174652814865
wikipedia_url   : -
====================
name            : bloomberg
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc0d0>
salience        : 0.0015169833786785603
wikipedia_url   : https://en.wikipedia.org/wiki/Bloomberg_L.P.
====================
name            : piccadilly circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6d00>
salience        : 0.0015006508911028504
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6c60>
salience        : 0.0014747916720807552
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6940>
salience        : 0.0014340123161673546
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde35d0>
salience        : 0.0014046734431758523
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3260>
salience        : 0.0013792357640340924
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a80>
salience        : 0.0013639212120324373
wikipedia_url   : -
====================
name            : lights festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3da0>
salience        : 0.0013367380015552044
wikipedia_url   : -
====================
name            : louise dennison
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3a30>
salience        : 0.0013308727648109198
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e40>
salience        : 0.001283263904042542
wikipedia_url   : -
====================
name            : project pa dance way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3cb0>
salience        : 0.0012596773449331522
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d50>
salience        : 0.0012595525477081537
wikipedia_url   : -
====================
name            : office desk lamp giant size
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3580>
salience        : 0.0012483467580750585
wikipedia_url   : -
====================
name            : bargehouse wave riverside walkway amp bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38a0>
salience        : 0.0012187185930088162
wikipedia_url   : -
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3bc0>
salience        : 0.001209269859828055
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde36c0>
salience        : 0.0012073054676875472
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3210>
salience        : 0.0012008047197014093
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ee0>
salience        : 0.0011643669568002224
wikipedia_url   : -
====================
name            : festival london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33f0>
salience        : 0.0011239873711019754
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3ad0>
salience        : 0.0011100226547569036
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3850>
salience        : 0.0010982842650264502
wikipedia_url   : -
====================
name            : european
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3350>
salience        : 0.0010892393765971065
wikipedia_url   : https://en.wikipedia.org/wiki/Europe
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b20>
salience        : 0.001082360278815031
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3760>
salience        : 0.0010387625079602003
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3620>
salience        : 0.001036143279634416
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f80>
salience        : 0.0010011661797761917
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3940>
salience        : 0.0009882256854325533
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde34e0>
salience        : 0.0009816139936447144
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde31c0>
salience        : 0.0009767201263457537
wikipedia_url   : -
====================
name            : aist alaaminawi
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3170>
salience        : 0.000970039633102715
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3530>
salience        : 0.000907149922568351
wikipedia_url   : -
====================
name            : advice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c60>
salience        : 0.0009030363289639354
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee90>
salience        : 0.0008891584002412856
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e120>
salience        : 0.0008569901692681015
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e490>
salience        : 0.0008532266947440803
wikipedia_url   : -
====================
name            : lightbulb installation ganton street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec10>
salience        : 0.0008436404750682414
wikipedia_url   : -
====================
name            : chelvanstanmore visitlondon mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ebc0>
salience        : 0.0008328704861924052
wikipedia_url   : -
====================
name            : oleandsteenuk visitlondnon lumiere_london visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e9e0>
salience        : 0.0008204545010812581
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea80>
salience        : 0.000814565340988338
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e440>
salience        : 0.0008110677590593696
wikipedia_url   : -
====================
name            : series chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e1c0>
salience        : 0.0008039270178414881
wikipedia_url   : -
====================
name            : southbank amp waterloo route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb70>
salience        : 0.0007829998503439128
wikipedia_url   : -
====================
name            : stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef80>
salience        : 0.0007739771972410381
wikipedia_url   : -
====================
name            : tips
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207edf0>
salience        : 0.0007670316263101995
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e260>
salience        : 0.0007669096230529249
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e2b0>
salience        : 0.0007481244392693043
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e940>
salience        : 0.0007429211982525885
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed00>
salience        : 0.0007408716483041644
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e620>
salience        : 0.0007125682896003127
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3a0>
salience        : 0.0006987810484133661
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ec60>
salience        : 0.0006972228293307126
wikipedia_url   : -
====================
name            : community groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ecb0>
salience        : 0.0006930139497853816
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eee0>
salience        : 0.0006868229829706252
wikipedia_url   : -
====================
name            : piccadilly circus
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ea30>
salience        : 0.0006850996287539601
wikipedia_url   : https://en.wikipedia.org/wiki/Piccadilly_Circus
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e080>
salience        : 0.0006719393422827125
wikipedia_url   : -
====================
name            : plans
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e170>
salience        : 0.0006567536620423198
wikipedia_url   : -
====================
name            : hea london south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ead0>
salience        : 0.0006561040063388646
wikipedia_url   : -
====================
name            : perspectives
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8f0>
salience        : 0.0006470677326433361
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ee0>
salience        : 0.0006096467259339988
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d50>
salience        : 0.0006038279389031231
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b70>
salience        : 0.0005920346011407673
wikipedia_url   : -
====================
name            : daan roosegaarde
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2760>
salience        : 0.0005896684597246349
wikipedia_url   : https://en.wikipedia.org/wiki/Daan_Roosegaarde
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2b20>
salience        : 0.0005875548231415451
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ad0>
salience        : 0.0005826420383527875
wikipedia_url   : -
====================
name            : bus routes
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2da0>
salience        : 0.0005797069170512259
wikipedia_url   : -
====================
name            : uk
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2990>
salience        : 0.0005762739456258714
wikipedia_url   : https://en.wikipedia.org/wiki/United_Kingdom
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2940>
salience        : 0.0005743125802837312
wikipedia_url   : -
====================
name            : bloomberg mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2850>
salience        : 0.0005699375178664923
wikipedia_url   : -
====================
name            : set menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2ee0>
salience        : 0.0005671806284226477
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2620>
salience        : 0.0005668535595759749
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2f30>
salience        : 0.0005668535595759749
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28f0>
salience        : 0.0005668535595759749
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd24e0>
salience        : 0.0005622546304948628
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd27b0>
salience        : 0.0005622546304948628
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7300>
salience        : 0.0005600033910013735
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7260>
salience        : 0.0005432706093415618
wikipedia_url   : -
====================
name            : risks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a80>
salience        : 0.0005364498356357217
wikipedia_url   : -
====================
name            : ukandeu lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b74e0>
salience        : 0.0005348051781766117
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7f30>
salience        : 0.0005327898543328047
wikipedia_url   : -
====================
name            : festival pa umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7850>
salience        : 0.0005278791068121791
wikipedia_url   : -
====================
name            : visitlondon lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b79e0>
salience        : 0.0005192164098843932
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7490>
salience        : 0.0005132156074978411
wikipedia_url   : -
====================
name            : leicester square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73f0>
salience        : 0.0005089144106023014
wikipedia_url   : https://en.wikipedia.org/wiki/Leicester_Square
====================
name            : performance festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7030>
salience        : 0.0005047942977398634
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7940>
salience        : 0.0005032072076573968
wikipedia_url   : -
====================
name            : nohern lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78f0>
salience        : 0.0004985535051673651
wikipedia_url   : -
====================
name            : tonight sneak peak favourite installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b77b0>
salience        : 0.0004905425012111664
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7350>
salience        : 0.00046948905219323933
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b73a0>
salience        : 0.00046948905219323933
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015f80>
salience        : 0.00046907138312235475
wikipedia_url   : -
====================
name            : aichoketrust aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c0154e0>
salience        : 0.0004685204476118088
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015bc0>
salience        : 0.00045383593533188105
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067440>
salience        : 0.00045076021342538297
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067bc0>
salience        : 0.00044318081927485764
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067cb0>
salience        : 0.00043745929724536836
wikipedia_url   : -
====================
name            : travel info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067210>
salience        : 0.0004238288092892617
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067300>
salience        : 0.0004229903861414641
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ee0>
salience        : 0.0004202823620289564
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067350>
salience        : 0.00041982668335549533
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a30>
salience        : 0.00041785161010921
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067760>
salience        : 0.0004174612695351243
wikipedia_url   : -
====================
name            : camden mylocalculture camdenis southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220675d0>
salience        : 0.0004151311004534364
wikipedia_url   : https://en.wikipedia.org/wiki/South_Bank
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e40>
salience        : 0.00040878020809032023
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067800>
salience        : 0.00040822988376021385
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067170>
salience        : 0.00040747143793851137
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067260>
salience        : 0.0004066991386935115
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c60>
salience        : 0.00039321507210843265
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d00>
salience        : 0.00039321507210843265
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067850>
salience        : 0.0003916835121344775
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220674e0>
salience        : 0.0003916293499059975
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220679e0>
salience        : 0.0003914388071279973
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673f0>
salience        : 0.00038527639117091894
wikipedia_url   : -
====================
name            : southbank amp waterloo route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067ad0>
salience        : 0.0003832346119452268
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067df0>
salience        : 0.00038277459680102766
wikipedia_url   : -
====================
name            : light displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067530>
salience        : 0.0003811289498116821
wikipedia_url   : -
====================
name            : oxford
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067c10>
salience        : 0.00037917838199064136
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5990>
salience        : 0.0003734076744876802
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5350>
salience        : 0.00037117075407877564
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c55d0>
salience        : 0.00036028449540026486
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5580>
salience        : 0.00035548696178011596
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5cb0>
salience        : 0.0003450713702477515
wikipedia_url   : -
====================
name            : westminster victoria
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5620>
salience        : 0.0003415261162444949
wikipedia_url   : https://en.wikipedia.org/wiki/Victoria,_London
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58f0>
salience        : 0.0003401385329198092
wikipedia_url   : -
====================
name            : spain
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c58a0>
salience        : 0.0003392327926121652
wikipedia_url   : https://en.wikipedia.org/wiki/Spain
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c52b0>
salience        : 0.00033656854066066444
wikipedia_url   : -
====================
name            : arcade
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2080>
salience        : 0.0003302483819425106
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2940>
salience        : 0.00031859613955020905
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2cb0>
salience        : 0.00031452561961486936
wikipedia_url   : -
====================
name            : plan visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2440>
salience        : 0.00030705955578014255
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2710>
salience        : 0.00030692919972352684
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2df0>
salience        : 0.00030692919972352684
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d50>
salience        : 0.0003060496528632939
wikipedia_url   : -
====================
name            : bloombergservice euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2f30>
salience        : 0.0002994638925883919
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd27b0>
salience        : 0.00029522611293941736
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd21c0>
salience        : 0.0002926695451606065
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd22b0>
salience        : 0.00028812195523642004
wikipedia_url   : -
====================
name            : refugees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c10>
salience        : 0.00028389529325067997
wikipedia_url   : -
====================
name            : bloombergservice euro_tour 光の祭典 ルミエール ロンドン
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b20>
salience        : 0.00028316339012235403
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2800>
salience        : 0.00027981994207948446
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e90>
salience        : 0.00027895753737539053
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2260>
salience        : 0.0002734429726842791
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2850>
salience        : 0.0002719032345339656
wikipedia_url   : -
====================
name            : thu fri
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2030>
salience        : 0.00027147785294800997
wikipedia_url   : -
====================
name            : tales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2530>
salience        : 0.0002713944704737514
wikipedia_url   : -
====================
name            : arcade festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd26c0>
salience        : 0.00027054938254877925
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd20d0>
salience        : 0.00026885332772508264
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2670>
salience        : 0.00026885332772508264
wikipedia_url   : -
====================
name            : lights festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2990>
salience        : 0.00026885332772508264
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28f0>
salience        : 0.00026835297467187047
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a80>
salience        : 0.00026835297467187047
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7490>
salience        : 0.00026835297467187047
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e40>
salience        : 0.00026835297467187047
wikipedia_url   : -
====================
name            : aichoke uk com
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ad0>
salience        : 0.00026772351702675223
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c60>
salience        : 0.00026740424800664186
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78f0>
salience        : 0.00026740424800664186
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7990>
salience        : 0.00026740424800664186
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b70>
salience        : 0.00026740424800664186
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7440>
salience        : 0.00026730220997706056
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7800>
salience        : 0.00026730220997706056
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7bc0>
salience        : 0.00026730220997706056
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f30>
salience        : 0.00026730220997706056
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7080>
salience        : 0.0002665689098648727
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7530>
salience        : 0.0002662563056219369
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7170>
salience        : 0.00026556834927760065
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7b20>
salience        : 0.00026494840858504176
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7f80>
salience        : 0.00026494840858504176
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a74e0>
salience        : 0.00026482806424610317
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7300>
salience        : 0.00026474797050468624
wikipedia_url   : -
====================
name            : londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a76c0>
salience        : 0.0002644048072397709
wikipedia_url   : -
====================
name            : plan visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7580>
salience        : 0.00026433274615556
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a30>
salience        : 0.0002635766286402941
wikipedia_url   : -
====================
name            : spots
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7e90>
salience        : 0.0002614020195323974
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220750d0>
salience        : 0.00026080108364112675
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075530>
salience        : 0.0002607383648864925
wikipedia_url   : -
====================
name            : bloombergservice lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753f0>
salience        : 0.00025898622698150575
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d00>
salience        : 0.0002586074697319418
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075d50>
salience        : 0.0002576711121946573
wikipedia_url   : -
====================
name            : choices lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075580>
salience        : 0.00025711889611557126
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f80>
salience        : 0.00025711889611557126
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075490>
salience        : 0.00025711889611557126
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a30>
salience        : 0.00025711889611557126
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075620>
salience        : 0.00025705379084683955
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075940>
salience        : 0.00025678559904918075
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e90>
salience        : 0.00025620986707508564
wikipedia_url   : -
====================
name            : design aichoketrust lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075210>
salience        : 0.00025555386673659086
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075350>
salience        : 0.00025428138906136155
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075df0>
salience        : 0.00024991302052512765
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075710>
salience        : 0.0002479115210007876
wikipedia_url   : -
====================
name            : thursdaythoughts visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075cb0>
salience        : 0.00024341698735952377
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075760>
salience        : 0.00024287121777888387
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b20>
salience        : 0.0002420125383650884
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220757b0>
salience        : 0.00024166185176
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220759e0>
salience        : 0.0002413485781289637
wikipedia_url   : -
====================
name            : changes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075080>
salience        : 0.00023947116278577596
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075260>
salience        : 0.00023934106866363436
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075170>
salience        : 0.00023600483837071806
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075030>
salience        : 0.00023581173445563763
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075e40>
salience        : 0.000235278406762518
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002f30>
salience        : 0.00023410683206748217
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002b70>
salience        : 0.0002335697499802336
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1ba9e080>
salience        : 0.00023327911912929267
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229870d0>
salience        : 0.00023263911134563386
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4b20>
salience        : 0.00023263911134563386
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8a0>
salience        : 0.00023263911134563386
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d530>
salience        : 0.00023211748339235783
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d030>
salience        : 0.0002316773752681911
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d850>
salience        : 0.0002316773752681911
wikipedia_url   : -
====================
name            : programme installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cea80>
salience        : 0.0002316773752681911
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cef30>
salience        : 0.00023096163931768388
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cec60>
salience        : 0.00023039172810968012
wikipedia_url   : -
====================
name            : triptych
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bfcb0>
salience        : 0.00023018383944872767
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf710>
salience        : 0.00022829906083643436
wikipedia_url   : -
====================
name            : cosmoscope
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf170>
salience        : 0.0002256695443065837
wikipedia_url   : -
====================
name            : victoria sourcedmarket visitlondnon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cca80>
salience        : 0.000225346302613616
wikipedia_url   : -
====================
name            : refugees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fca6e40>
salience        : 0.0002244492352474481
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3490>
salience        : 0.0002237535227322951
wikipedia_url   : -
====================
name            : offer book subject availability
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3030>
salience        : 0.00022353429812937975
wikipedia_url   : -
====================
name            : mayoroflondon run aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3670>
salience        : 0.00022280077973846346
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3d00>
salience        : 0.00022169131261762232
wikipedia_url   : -
====================
name            : aichoke
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3710>
salience        : 0.0002212709659943357
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3300>
salience        : 0.00021940897568129003
wikipedia_url   : -
====================
name            : bank bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde32b0>
salience        : 0.00021742613171227276
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde37b0>
salience        : 0.00021663651568815112
wikipedia_url   : -
====================
name            : lumijuu cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde33a0>
salience        : 0.00021654061856679618
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3c10>
salience        : 0.0002153602836187929
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3df0>
salience        : 0.00021378861856646836
wikipedia_url   : -
====================
name            : poetry water amp
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e210>
salience        : 0.00021314270270522684
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e030>
salience        : 0.00021314270270522684
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e710>
salience        : 0.0002131278597516939
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e800>
salience        : 0.00021272373851388693
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e850>
salience        : 0.000212227096199058
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ee40>
salience        : 0.00021131671383045614
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e4e0>
salience        : 0.0002101333811879158
wikipedia_url   : -
====================
name            : kingscross aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e0d0>
salience        : 0.00020829540153499693
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ef30>
salience        : 0.00020772787684109062
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e670>
salience        : 0.00020744532230310142
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e350>
salience        : 0.0002050540060736239
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e6c0>
salience        : 0.00020255516574252397
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e580>
salience        : 0.00020019487419631332
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e8a0>
salience        : 0.00019972097652498633
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37ad0>
salience        : 0.00019945715030189604
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc37e90>
salience        : 0.0001994315389310941
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e90>
salience        : 0.0001994315389310941
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2cb0>
salience        : 0.00019925805099774152
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd25d0>
salience        : 0.00019893939315807074
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c10>
salience        : 0.00019839998276438564
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2df0>
salience        : 0.0001971109741134569
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2e40>
salience        : 0.00019702264398802072
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2580>
salience        : 0.0001965808478416875
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a30>
salience        : 0.0001965808478416875
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2530>
salience        : 0.00019640414393506944
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7a30>
salience        : 0.00019640414393506944
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075670>
salience        : 0.00019620808598119766
wikipedia_url   : -
====================
name            : result kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075990>
salience        : 0.00019617390353232622
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075b70>
salience        : 0.00019593394245021045
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075850>
salience        : 0.00019554350001271814
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c120>
salience        : 0.00019534830062184483
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c620>
salience        : 0.00019534830062184483
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cee0>
salience        : 0.00019511919526848942
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc10>
salience        : 0.00019511919526848942
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c350>
salience        : 0.00019491283455863595
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c6c0>
salience        : 0.00019491025886964053
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ccb0>
salience        : 0.00019491025886964053
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd50>
salience        : 0.00019491025886964053
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c5d0>
salience        : 0.00019491025886964053
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c530>
salience        : 0.00019471826090011746
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c710>
salience        : 0.00019471826090011746
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c990>
salience        : 0.00019471826090011746
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cbc0>
salience        : 0.00019454066932667047
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c9e0>
salience        : 0.00019454066932667047
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c670>
salience        : 0.00019421751494519413
wikipedia_url   : -
====================
name            : performance cirquebijou caravan city
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c940>
salience        : 0.00019331877410877496
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c170>
salience        : 0.00019327776681166142
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca80>
salience        : 0.00019163523393217474
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c260>
salience        : 0.000190680890227668
wikipedia_url   : -
====================
name            : bloombergservice planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c440>
salience        : 0.00019031931878998876
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c4e0>
salience        : 0.0001890604180516675
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c850>
salience        : 0.00018857627583201975
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cd00>
salience        : 0.0001882127980934456
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ca30>
salience        : 0.00018763715343084186
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf80>
salience        : 0.00018763715343084186
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c2b0>
salience        : 0.00018763715343084186
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3a0>
salience        : 0.00018763715343084186
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47120>
salience        : 0.00018760778766591102
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473a0>
salience        : 0.00018724212714005262
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47440>
salience        : 0.0001869736734079197
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47490>
salience        : 0.0001869736734079197
wikipedia_url   : -
====================
name            : effect plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47030>
salience        : 0.0001869736734079197
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f30>
salience        : 0.00018565192294772714
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47260>
salience        : 0.00018500084115657955
wikipedia_url   : -
====================
name            : matthewbandrews bluefinbuilding
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc477b0>
salience        : 0.0001832310517784208
wikipedia_url   : -
====================
name            : king
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc472b0>
salience        : 0.0001823913335101679
wikipedia_url   : -
====================
name            : boulevard king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c10>
salience        : 0.0001823913335101679
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a80>
salience        : 0.0001823214697651565
wikipedia_url   : -
====================
name            : west end
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc479e0>
salience        : 0.0001819088647607714
wikipedia_url   : https://en.wikipedia.org/wiki/West_End_of_London
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47170>
salience        : 0.00017631160153541714
wikipedia_url   : -
====================
name            : southbanklondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47710>
salience        : 0.00017619373102206737
wikipedia_url   : -
====================
name            : southbanklondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b70>
salience        : 0.00017619373102206737
wikipedia_url   : -
====================
name            : southbanklondon festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e40>
salience        : 0.00017619373102206737
wikipedia_url   : -
====================
name            : termination routes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47c60>
salience        : 0.00017616474360693246
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47530>
salience        : 0.00017612519150134176
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc471c0>
salience        : 0.00017535423103254288
wikipedia_url   : -
====================
name            : pedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47b20>
salience        : 0.00017312761337962002
wikipedia_url   : -
====================
name            : prosecco book tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47bc0>
salience        : 0.00016999270883388817
wikipedia_url   : -
====================
name            : tube stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47f80>
salience        : 0.00016971818695310503
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47a30>
salience        : 0.0001694337697699666
wikipedia_url   : -
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc478f0>
salience        : 0.00016935900202952325
wikipedia_url   : -
====================
name            : hea london south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc476c0>
salience        : 0.00016889430116862059
wikipedia_url   : -
====================
name            : tasting menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9760>
salience        : 0.0001686300674919039
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98a0>
salience        : 0.00016708338807802647
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル bloombergdotorg bloomberg
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9710>
salience        : 0.00016457124729640782
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9670>
salience        : 0.000164379584020935
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9850>
salience        : 0.00015924926265142858
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9530>
salience        : 0.00015924926265142858
wikipedia_url   : -
====================
name            : aist
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f30>
salience        : 0.00015924926265142858
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9260>
salience        : 0.00015885624452494085
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e90>
salience        : 0.00015873373195063323
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9f80>
salience        : 0.0001582802360644564
wikipedia_url   : -
====================
name            : pint pride
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9440>
salience        : 0.00015783638809807599
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9df0>
salience        : 0.00015749194426462054
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd97b0>
salience        : 0.00015725359844509512
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9cb0>
salience        : 0.00015715417976025492
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9d50>
salience        : 0.00015700531366746873
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd93f0>
salience        : 0.00015689869178459048
wikipedia_url   : -
====================
name            : canvas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9030>
salience        : 0.0001550352608319372
wikipedia_url   : -
====================
name            : tonight sneak peak favourite installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9580>
salience        : 0.00015479967987630516
wikipedia_url   : -
====================
name            : sound
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a80>
salience        : 0.0001546029670862481
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9940>
salience        : 0.00015327948494814336
wikipedia_url   : -
====================
name            : guide
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd94e0>
salience        : 0.000153001252328977
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f30>
salience        : 0.0001529045548522845
wikipedia_url   : -
====================
name            : lighting streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9620>
salience        : 0.00015285889094229788
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d92b0>
salience        : 0.00015234040620271116
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9670>
salience        : 0.00015162363706622273
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9580>
salience        : 0.00015117402654141188
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル mikebloomberg
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d94e0>
salience        : 0.0001509160501882434
wikipedia_url   : -
====================
name            : visitlondon lumiere london
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d95d0>
salience        : 0.0001504675456089899
wikipedia_url   : -
====================
name            : patrice warrener
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9ee0>
salience        : 0.000149129205965437
wikipedia_url   : https://en.wikipedia.org/wiki/Patrice_Warrener
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9710>
salience        : 0.00014718111196998507
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d93f0>
salience        : 0.00014644807379227132
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9850>
salience        : 0.00014644807379227132
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9c60>
salience        : 0.00014644807379227132
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d96c0>
salience        : 0.00014644807379227132
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6b20>
salience        : 0.00014644807379227132
wikipedia_url   : -
====================
name            : leakestarches
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d68f0>
salience        : 0.00014607420598622411
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d69e0>
salience        : 0.00014593018568120897
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d50>
salience        : 0.00014593018568120897
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6da0>
salience        : 0.00014593018568120897
wikipedia_url   : -
====================
name            : road
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6ad0>
salience        : 0.00014593018568120897
wikipedia_url   : -
====================
name            : southbank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9760>
salience        : 0.0001453272270737216
wikipedia_url   : -
====================
name            : southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c92b0>
salience        : 0.0001451715943403542
wikipedia_url   : -
====================
name            : kxpictures kingscrossn1c mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9710>
salience        : 0.00014511847984977067
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b70>
salience        : 0.00014491577167063951
wikipedia_url   : -
====================
name            : hea london south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde77b0>
salience        : 0.00014330906560644507
wikipedia_url   : -
====================
name            : tubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ee0>
salience        : 0.00014260975876823068
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73a0>
salience        : 0.00014065593131817877
wikipedia_url   : -
====================
name            : onmycalendarfornextyear london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7490>
salience        : 0.00014023551193531603
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde73f0>
salience        : 0.00013863093045074493
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7800>
salience        : 0.00013858593592885882
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7850>
salience        : 0.00013858593592885882
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7d00>
salience        : 0.0001381389010930434
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde75d0>
salience        : 0.0001381389010930434
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e40>
salience        : 0.0001381389010930434
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7760>
salience        : 0.0001381389010930434
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f30>
salience        : 0.0001381389010930434
wikipedia_url   : -
====================
name            : store street destination
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7210>
salience        : 0.00013811381359118968
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7170>
salience        : 0.00013755033432971686
wikipedia_url   : -
====================
name            : trafalgar square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7df0>
salience        : 0.00013743375893682241
wikipedia_url   : https://en.wikipedia.org/wiki/Trafalgar_Square
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7300>
salience        : 0.0001373292616335675
wikipedia_url   : -
====================
name            : air
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7670>
salience        : 0.0001372596889268607
wikipedia_url   : -
====================
name            : hot chocolate loads
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78a0>
salience        : 0.00013616068463306874
wikipedia_url   : -
====================
name            : london gt
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7b20>
salience        : 0.00013557649799622595
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7120>
salience        : 0.00013555890473071486
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7ad0>
salience        : 0.00013555890473071486
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde70d0>
salience        : 0.00013533358287531883
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7620>
salience        : 0.00013518691412173212
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c60>
salience        : 0.0001350769161945209
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7990>
salience        : 0.00013485498493537307
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde79e0>
salience        : 0.00013485498493537307
wikipedia_url   : -
====================
name            : bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7260>
salience        : 0.00013346524792723358
wikipedia_url   : -
====================
name            : installations umbrella
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7e90>
salience        : 0.00013346524792723358
wikipedia_url   : -
====================
name            : bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7da0>
salience        : 0.00013346524792723358
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde76c0>
salience        : 0.0001330893428530544
wikipedia_url   : -
====================
name            : chris
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7cb0>
salience        : 0.00013229195610620081
wikipedia_url   : https://en.wikipedia.org/wiki/Chris_Plante
====================
name            : fitzrovia london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b70>
salience        : 0.00013223930727690458
wikipedia_url   : https://en.wikipedia.org/wiki/London
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8710>
salience        : 0.0001320819865213707
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc86c0>
salience        : 0.00013203409616835415
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc89e0>
salience        : 0.00013190401659812778
wikipedia_url   : -
====================
name            : skip tube
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8210>
salience        : 0.0001312149252044037
wikipedia_url   : -
====================
name            : simon corder
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc80d0>
salience        : 0.00012999137106817216
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc84e0>
salience        : 0.00012891959340777248
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a30>
salience        : 0.00012891959340777248
wikipedia_url   : -
====================
name            : london_theatre
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ad0>
salience        : 0.00012872547085862607
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8a80>
salience        : 0.0001285904727410525
wikipedia_url   : -
====================
name            : india
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88f0>
salience        : 0.00012856739340350032
wikipedia_url   : https://en.wikipedia.org/wiki/India
====================
name            : street plug
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83a0>
salience        : 0.00012843983131460845
wikipedia_url   : -
====================
name            : sta planning visit mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8170>
salience        : 0.00012834661174565554
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8850>
salience        : 0.00012834661174565554
wikipedia_url   : -
====================
name            : stations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f30>
salience        : 0.00012834661174565554
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8b20>
salience        : 0.00012813572539016604
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8620>
salience        : 0.00012813572539016604
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8670>
salience        : 0.00012813572539016604
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e4e0>
salience        : 0.00012813572539016604
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e940>
salience        : 0.00012778410746250302
wikipedia_url   : -
====================
name            : city mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec10>
salience        : 0.00012749752204399556
wikipedia_url   : -
====================
name            : travel info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b78a0>
salience        : 0.0001273415400646627
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b75d0>
salience        : 0.00012725572742056102
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7ad0>
salience        : 0.00012704402615781873
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7440>
salience        : 0.00012672368029598147
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015490>
salience        : 0.00012641125067602843
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067e90>
salience        : 0.00012641125067602843
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b20>
salience        : 0.00012641125067602843
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678a0>
salience        : 0.00012641125067602843
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067940>
salience        : 0.00012641125067602843
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067a80>
salience        : 0.000125964215840213
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067490>
salience        : 0.000125964215840213
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067670>
salience        : 0.000125964215840213
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067080>
salience        : 0.000125964215840213
wikipedia_url   : -
====================
name            : bloombergdotorg bloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067120>
salience        : 0.00012568144302349538
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067620>
salience        : 0.00012408535985741764
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067d50>
salience        : 0.00012340597459115088
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067da0>
salience        : 0.00012320320820435882
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220672b0>
salience        : 0.00012320320820435882
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067030>
salience        : 0.0001228056353284046
wikipedia_url   : -
====================
name            : reserve spot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c56c0>
salience        : 0.00012269474973436445
wikipedia_url   : -
====================
name            : route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5d00>
salience        : 0.00012128605885664001
wikipedia_url   : -
====================
name            : route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5710>
salience        : 0.00012128605885664001
wikipedia_url   : -
====================
name            : victorialine
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5760>
salience        : 0.00012112879630876705
wikipedia_url   : -
====================
name            : cirquebijou performance bloombergservice mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5440>
salience        : 0.00012012256047455594
wikipedia_url   : -
====================
name            : glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2210>
salience        : 0.00011932382039958611
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2490>
salience        : 0.0001188724345411174
wikipedia_url   : -
====================
name            : carpet clouds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2c60>
salience        : 0.00011865734268212691
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd25d0>
salience        : 0.00011864810949191451
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2a30>
salience        : 0.00011839056242024526
wikipedia_url   : -
====================
name            : southbank amp waterloo route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23f0>
salience        : 0.00011807122791651636
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd29e0>
salience        : 0.00011782873480115086
wikipedia_url   : -
====================
name            : sun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2620>
salience        : 0.00011752155114663765
wikipedia_url   : -
====================
name            : aist amp lighting designer
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2d00>
salience        : 0.00011731754784705117
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2350>
salience        : 0.00011689730308717117
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2170>
salience        : 0.00011659618030535057
wikipedia_url   : -
====================
name            : desk lamps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd23a0>
salience        : 0.00011653957335511222
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2e40>
salience        : 0.00011459165398264304
wikipedia_url   : -
====================
name            : kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7350>
salience        : 0.00011334087321301922
wikipedia_url   : -
====================
name            : journeys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7260>
salience        : 0.0001126475544879213
wikipedia_url   : -
====================
name            : series chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7030>
salience        : 0.00011231830285396427
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7cb0>
salience        : 0.00011229590745642781
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7120>
salience        : 0.00011196356354048476
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a75d0>
salience        : 0.00011116500536445528
wikipedia_url   : -
====================
name            : bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73f0>
salience        : 0.00011025671847164631
wikipedia_url   : -
====================
name            : aichoketrust aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7c10>
salience        : 0.00010970312723657116
wikipedia_url   : -
====================
name            : come
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7940>
salience        : 0.00010906030365731567
wikipedia_url   : -
====================
name            : bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7a80>
salience        : 0.00010833521082531661
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7850>
salience        : 0.00010806797217810526
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a72b0>
salience        : 0.00010806797217810526
wikipedia_url   : -
====================
name            : bloombergservice mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7710>
salience        : 0.00010796362039400265
wikipedia_url   : -
====================
name            : plan works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7620>
salience        : 0.00010793488036142662
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c002bc0>
salience        : 0.00010744426253950223
wikipedia_url   : -
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22987120>
salience        : 0.00010708634363254532
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d8f0>
salience        : 0.00010702900908654556
wikipedia_url   : -
====================
name            : leakestarches coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c01d940>
salience        : 0.0001068051133188419
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cecb0>
salience        : 0.0001066004260792397
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf2b0>
salience        : 0.00010656953963916749
wikipedia_url   : -
====================
name            : installation miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf300>
salience        : 0.00010645917063811794
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf6c0>
salience        : 0.00010642527195159346
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3120>
salience        : 0.00010625224967952818
wikipedia_url   : -
====================
name            : miss
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde30d0>
salience        : 0.00010599257075227797
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3440>
salience        : 0.00010569020378170535
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde38f0>
salience        : 0.00010560885857557878
wikipedia_url   : -
====================
name            : tfltravelales
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3080>
salience        : 0.00010547098645474762
wikipedia_url   : -
====================
name            : programme tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eda0>
salience        : 0.00010531278530834243
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207eb20>
salience        : 0.00010498717165319249
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207ed50>
salience        : 0.00010480668424861506
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e530>
salience        : 0.00010413424752186984
wikipedia_url   : -
====================
name            : westminster abbey
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd28a0>
salience        : 0.00010311851656297222
wikipedia_url   : https://en.wikipedia.org/wiki/Westminster_Abbey
====================
name            : paper lanterns amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2710>
salience        : 0.00010280293645337224
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2d00>
salience        : 0.00010278605623170733
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2c60>
salience        : 0.00010268676851410419
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2bc0>
salience        : 0.00010265701712341979
wikipedia_url   : -
====================
name            : panership bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2800>
salience        : 0.00010257178655592725
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2670>
salience        : 0.00010251803905703127
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220754e0>
salience        : 0.00010251803905703127
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220751c0>
salience        : 0.00010251803905703127
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c60>
salience        : 0.00010249201295664534
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075440>
salience        : 0.00010246651800116524
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075ad0>
salience        : 0.00010246651800116524
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075c10>
salience        : 0.00010246651800116524
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075da0>
salience        : 0.00010241703421343118
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075a80>
salience        : 0.00010239300900138915
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075120>
salience        : 0.00010239300900138915
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075800>
salience        : 0.0001023694421746768
wikipedia_url   : -
====================
name            : cirquebijou contact
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220755d0>
salience        : 0.00010228667088085786
wikipedia_url   : -
====================
name            : rambe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075bc0>
salience        : 0.00010223049321211874
wikipedia_url   : -
====================
name            : leakestarches
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075300>
salience        : 0.00010222024866379797
wikipedia_url   : -
====================
name            : tube network bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220756c0>
salience        : 0.00010185108112636954
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220752b0>
salience        : 0.00010177015792578459
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758a0>
salience        : 0.00010152252070838585
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c7b0>
salience        : 0.00010135137563338503
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cda0>
salience        : 0.00010135137563338503
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8f0>
salience        : 0.00010134062904398888
wikipedia_url   : -
====================
name            : leakestarches
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce90>
salience        : 0.00010095466859638691
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cc60>
salience        : 0.00010039025801233947
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208ce40>
salience        : 0.00010003521310864016
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c580>
salience        : 0.00010003521310864016
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cf30>
salience        : 9.98562973109074e-05
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c760>
salience        : 9.97991010081023e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c1c0>
salience        : 9.97991010081023e-05
wikipedia_url   : -
====================
name            : lights festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c8a0>
salience        : 9.97991010081023e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c0d0>
salience        : 9.97991010081023e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c030>
salience        : 9.976068395189941e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47080>
salience        : 9.974448039429262e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47350>
salience        : 9.969221719074994e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc474e0>
salience        : 9.964365744963288e-05
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47670>
salience        : 9.954771667253226e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ad0>
salience        : 9.939574374584481e-05
wikipedia_url   : -
====================
name            : culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47e90>
salience        : 9.875348769128323e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47da0>
salience        : 9.839596168603748e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47760>
salience        : 9.763188427314162e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d00>
salience        : 9.736703214002773e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9e40>
salience        : 9.701960516395047e-05
wikipedia_url   : -
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee40>
salience        : 9.701960516395047e-05
wikipedia_url   : -
====================
name            : fields
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e800>
salience        : 9.697044879430905e-05
wikipedia_url   : -
====================
name            : community groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e7b0>
salience        : 9.680200309958309e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209edf0>
salience        : 9.670662984717637e-05
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3f0>
salience        : 9.613508882466704e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef30>
salience        : 9.608247637515888e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eda0>
salience        : 9.600592602510005e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e6c0>
salience        : 9.589293040335178e-05
wikipedia_url   : -
====================
name            : trains
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e9e0>
salience        : 9.584816871210933e-05
wikipedia_url   : -
====================
name            : price band
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea80>
salience        : 9.578171739121899e-05
wikipedia_url   : -
====================
name            : chasing lights treasure hunt
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb20>
salience        : 9.578171739121899e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e2b0>
salience        : 9.542258339934051e-05
wikipedia_url   : -
====================
name            : stjameslondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ead0>
salience        : 9.423058509128168e-05
wikipedia_url   : -
====================
name            : charity lovecamden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e490>
salience        : 9.410343045601621e-05
wikipedia_url   : -
====================
name            : rambe building
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e8f0>
salience        : 9.399303235113621e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e0d0>
salience        : 9.391407365910709e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e670>
salience        : 9.389285696670413e-05
wikipedia_url   : -
====================
name            : tube network bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed00>
salience        : 9.389285696670413e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e3a0>
salience        : 9.388205944560468e-05
wikipedia_url   : -
====================
name            : visit bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e580>
salience        : 9.387202590005472e-05
wikipedia_url   : -
====================
name            : festival bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e530>
salience        : 9.387202590005472e-05
wikipedia_url   : -
====================
name            : visitlondon bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ed50>
salience        : 9.387202590005472e-05
wikipedia_url   : -
====================
name            : tube network bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93080>
salience        : 9.387202590005472e-05
wikipedia_url   : -
====================
name            : check light life bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933a0>
salience        : 9.385156590724364e-05
wikipedia_url   : -
====================
name            : visit bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a934e0>
salience        : 9.385156590724364e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a937b0>
salience        : 9.383146243635565e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93df0>
salience        : 9.371428313897923e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b70>
salience        : 9.357685485156253e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ad0>
salience        : 9.269065776607022e-05
wikipedia_url   : -
====================
name            : lunch amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93da0>
salience        : 9.138214954873547e-05
wikipedia_url   : -
====================
name            : lovelondon euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93440>
salience        : 9.068447252502665e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a30>
salience        : 9.0353874838911e-05
wikipedia_url   : -
====================
name            : city staing
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93120>
salience        : 9.03453619685024e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93ee0>
salience        : 9.03453619685024e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d50>
salience        : 9.01681705727242e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93260>
salience        : 9.010409121401608e-05
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93030>
salience        : 9.001290163723752e-05
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93990>
salience        : 8.994361996883526e-05
wikipedia_url   : -
====================
name            : soho
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93350>
salience        : 8.989534399006516e-05
wikipedia_url   : -
====================
name            : pa staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f30>
salience        : 8.989534399006516e-05
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93710>
salience        : 8.981697465060279e-05
wikipedia_url   : -
====================
name            : city light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c10>
salience        : 8.981697465060279e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93620>
salience        : 8.962551510194317e-05
wikipedia_url   : -
====================
name            : euro_tour 光の祭典 ルミエール ロンドン
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a933f0>
salience        : 8.956168312579393e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93760>
salience        : 8.944756700657308e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a935d0>
salience        : 8.944756700657308e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93cb0>
salience        : 8.922677807277068e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93530>
salience        : 8.922677807277068e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3cb0>
salience        : 8.922677807277068e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3490>
salience        : 8.922677807277068e-05
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38f0>
salience        : 8.90433948370628e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3580>
salience        : 8.898178930394351e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3260>
salience        : 8.860845264280215e-05
wikipedia_url   : -
====================
name            : light festivals
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a30>
salience        : 8.849716687109321e-05
wikipedia_url   : -
====================
name            : installation readiness londoners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc32b0>
salience        : 8.77556813065894e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33a0>
salience        : 8.76141493790783e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3760>
salience        : 8.76141493790783e-05
wikipedia_url   : -
====================
name            : french
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f30>
salience        : 8.751136920182034e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3850>
salience        : 8.725183579372242e-05
wikipedia_url   : -
====================
name            : parking london car parks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc33f0>
salience        : 8.719372999621555e-05
wikipedia_url   : -
====================
name            : aichoketrust mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc34e0>
salience        : 8.698044257471338e-05
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3bc0>
salience        : 8.683396299602464e-05
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc38a0>
salience        : 8.676021388964728e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e90>
salience        : 8.676021388964728e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c60>
salience        : 8.664924826007336e-05
wikipedia_url   : -
====================
name            : cosmoscope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3670>
salience        : 8.63637396832928e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ad0>
salience        : 8.635194535600021e-05
wikipedia_url   : -
====================
name            : installations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3170>
salience        : 8.625946065876633e-05
wikipedia_url   : -
====================
name            : mayor london book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc39e0>
salience        : 8.61999360495247e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3030>
salience        : 8.617447019787505e-05
wikipedia_url   : -
====================
name            : oxotowerwharf southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3940>
salience        : 8.606947085354477e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d50>
salience        : 8.52907178341411e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc36c0>
salience        : 8.52907178341411e-05
wikipedia_url   : -
====================
name            : euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3080>
salience        : 8.484653517371044e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3da0>
salience        : 8.469567546853796e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3f80>
salience        : 8.466927101835608e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf580>
salience        : 8.464928396278992e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe40>
salience        : 8.42045628814958e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf760>
salience        : 8.384841930819675e-05
wikipedia_url   : -
====================
name            : southbankbid centralline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf080>
salience        : 8.384841930819675e-05
wikipedia_url   : -
====================
name            : aist amp innovator
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfda0>
salience        : 8.384841930819675e-05
wikipedia_url   : -
====================
name            : rambe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfb70>
salience        : 8.375055767828599e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf710>
salience        : 8.367504779016599e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf440>
salience        : 8.332435390911996e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8f0>
salience        : 8.316563616972417e-05
wikipedia_url   : -
====================
name            : sta planning visit aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf2b0>
salience        : 8.293239079648629e-05
wikipedia_url   : -
====================
name            : sta planning visit aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf3f0>
salience        : 8.273432467831299e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf0d0>
salience        : 8.2521750300657e-05
wikipedia_url   : -
====================
name            : sta planning visit aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf5d0>
salience        : 8.247202640632167e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf620>
salience        : 8.243036427302286e-05
wikipedia_url   : -
====================
name            : get preview aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc10>
salience        : 8.242688636528328e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf990>
salience        : 8.234228880610317e-05
wikipedia_url   : -
====================
name            : launch lumiere aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa80>
salience        : 8.230251842178404e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf530>
salience        : 8.230251842178404e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfee0>
salience        : 8.22642759885639e-05
wikipedia_url   : -
====================
name            : triptych leakestreet head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfbc0>
salience        : 8.18820990389213e-05
wikipedia_url   : -
====================
name            : thisislondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf030>
salience        : 8.18820990389213e-05
wikipedia_url   : -
====================
name            : triptych leakestreet head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfad0>
salience        : 8.18820990389213e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf8a0>
salience        : 8.187135972548276e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a80>
salience        : 8.18359840195626e-05
wikipedia_url   : -
====================
name            : circus
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c10>
salience        : 8.181876182788983e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064670>
salience        : 8.150343637680635e-05
wikipedia_url   : -
====================
name            : guide culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064620>
salience        : 8.114543015835807e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064bc0>
salience        : 8.110792259685695e-05
wikipedia_url   : -
====================
name            : meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064490>
salience        : 8.109744521789253e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064850>
salience        : 8.106715540634468e-05
wikipedia_url   : -
====================
name            : light kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064940>
salience        : 8.084695582510903e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b20>
salience        : 8.033095218706876e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064080>
salience        : 8.008270378923044e-05
wikipedia_url   : -
====================
name            : town dinner amp drinks
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064da0>
salience        : 8.000755769899115e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064c60>
salience        : 7.98590190242976e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220649e0>
salience        : 7.984130206750706e-05
wikipedia_url   : -
====================
name            : cirquebijou amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064d50>
salience        : 7.984130206750706e-05
wikipedia_url   : -
====================
name            : light designers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648f0>
salience        : 7.981006638146937e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643f0>
salience        : 7.97994653112255e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064800>
salience        : 7.97994653112255e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f30>
salience        : 7.975935295689851e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064350>
salience        : 7.94815641711466e-05
wikipedia_url   : -
====================
name            : visitthecity
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064710>
salience        : 7.945689867483452e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064300>
salience        : 7.936931069707498e-05
wikipedia_url   : -
====================
name            : visitthecity
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220645d0>
salience        : 7.932275184430182e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064210>
salience        : 7.931987784104422e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220643a0>
salience        : 7.924197416286916e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064260>
salience        : 7.924197416286916e-05
wikipedia_url   : -
====================
name            : bloombergservice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ad0>
salience        : 7.91224156273529e-05
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064990>
salience        : 7.859095057938248e-05
wikipedia_url   : -
====================
name            : bottle festoon project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e40>
salience        : 7.856761658331379e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x110b3aa80>
salience        : 7.808521331753582e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a80>
salience        : 7.786582864355296e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ee0>
salience        : 7.698636181885377e-05
wikipedia_url   : -
====================
name            : story lady lamp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967440>
salience        : 7.643117714906111e-05
wikipedia_url   : -
====================
name            : story lady lamp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d50>
salience        : 7.637889211764559e-05
wikipedia_url   : -
====================
name            : story lady lamp
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f30>
salience        : 7.632938650203869e-05
wikipedia_url   : -
====================
name            : kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967300>
salience        : 7.622780685778707e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967ad0>
salience        : 7.611933688167483e-05
wikipedia_url   : -
====================
name            : pit stop stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229673f0>
salience        : 7.604237907798961e-05
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c60>
salience        : 7.601860852446407e-05
wikipedia_url   : -
====================
name            : risks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd96c0>
salience        : 7.567747525172308e-05
wikipedia_url   : -
====================
name            : risks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd99e0>
salience        : 7.567747525172308e-05
wikipedia_url   : -
====================
name            : westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9bc0>
salience        : 7.548078428953886e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd95d0>
salience        : 7.52777632442303e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9da0>
salience        : 7.495714817196131e-05
wikipedia_url   : -
====================
name            : sta
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ee0>
salience        : 7.470373384421691e-05
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b70>
salience        : 7.451932469848543e-05
wikipedia_url   : -
====================
name            : map preview event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9ad0>
salience        : 7.448036194546148e-05
wikipedia_url   : -
====================
name            : preview event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd98f0>
salience        : 7.437240128638223e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9b20>
salience        : 7.437240128638223e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9080>
salience        : 7.433076825691387e-05
wikipedia_url   : -
====================
name            : tribute
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d99e0>
salience        : 7.369891682174057e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d98f0>
salience        : 7.369701052084565e-05
wikipedia_url   : -
====================
name            : visitlondon wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9e40>
salience        : 7.364085467997938e-05
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9490>
salience        : 7.354726403718814e-05
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9530>
salience        : 7.354726403718814e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6bc0>
salience        : 7.347382779698819e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c10>
salience        : 7.347382779698819e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6a30>
salience        : 7.347382779698819e-05
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22975440>
salience        : 7.34339773771353e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9440>
salience        : 7.341544551309198e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7350>
salience        : 7.341544551309198e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde74e0>
salience        : 7.341544551309198e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde71c0>
salience        : 7.341544551309198e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7530>
salience        : 7.336065027629957e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7c10>
salience        : 7.336065027629957e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7580>
salience        : 7.336065027629957e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7710>
salience        : 7.336065027629957e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7940>
salience        : 7.333180110435933e-05
wikipedia_url   : -
====================
name            : films
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a80>
salience        : 7.332695531658828e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8760>
salience        : 7.330902735702693e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c60>
salience        : 7.330902735702693e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8490>
salience        : 7.330902735702693e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8580>
salience        : 7.330902735702693e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8800>
salience        : 7.330902735702693e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8990>
salience        : 7.32602275093086e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d00>
salience        : 7.32602275093086e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8f80>
salience        : 7.32602275093086e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc88a0>
salience        : 7.321395969484001e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc83f0>
salience        : 7.321395969484001e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8940>
salience        : 7.321395969484001e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8260>
salience        : 7.321395969484001e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8440>
salience        : 7.316997653106228e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8530>
salience        : 7.316997653106228e-05
wikipedia_url   : -
====================
name            : cosmoscope store street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e170>
salience        : 7.316035771509632e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7d50>
salience        : 7.312806701520458e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7530>
salience        : 7.312806701520458e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1c015b20>
salience        : 7.308804197236896e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067990>
salience        : 7.308804197236896e-05
wikipedia_url   : -
====================
name            : lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220671c0>
salience        : 7.308804197236896e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220678f0>
salience        : 7.308804197236896e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067f30>
salience        : 7.307808118639514e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5b20>
salience        : 7.306703628273681e-05
wikipedia_url   : -
====================
name            : hq
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5670>
salience        : 7.305070903385058e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ee0>
salience        : 7.30497413314879e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd28a0>
salience        : 7.30497413314879e-05
wikipedia_url   : -
====================
name            : bloomberg pattiharris aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2ad0>
salience        : 7.304338942049071e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2580>
salience        : 7.301302684936672e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2da0>
salience        : 7.301302684936672e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2b70>
salience        : 7.301302684936672e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a79e0>
salience        : 7.301302684936672e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a71c0>
salience        : 7.297776755876839e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a70d0>
salience        : 7.297776755876839e-05
wikipedia_url   : -
====================
name            : phlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7210>
salience        : 7.29741805116646e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a78a0>
salience        : 7.297338015632704e-05
wikipedia_url   : -
====================
name            : industries
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcc2df0>
salience        : 7.296651165233925e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c4030>
salience        : 7.278640259755775e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2295b300>
salience        : 7.27580554666929e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc760>
salience        : 7.232522330014035e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3e90>
salience        : 7.216187805170193e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3990>
salience        : 7.205984002212062e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde39e0>
salience        : 7.171253673732281e-05
wikipedia_url   : -
====================
name            : rambe building
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3f30>
salience        : 7.163832924561575e-05
wikipedia_url   : -
====================
name            : festiveseason kingscrossn1c
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e3f0>
salience        : 7.138639193726704e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e990>
salience        : 7.13546687620692e-05
wikipedia_url   : -
====================
name            : streetzine londonist lovelondon lumierelondon lumieres2018 tflbusales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e760>
salience        : 7.134726911317557e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcd2a80>
salience        : 7.13286644895561e-05
wikipedia_url   : -
====================
name            : lightfestival kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220758f0>
salience        : 7.128756260499358e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c210>
salience        : 7.122293027350679e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c3f0>
salience        : 7.121545058907941e-05
wikipedia_url   : -
====================
name            : skip_garden
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c300>
salience        : 7.120714872144163e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cdf0>
salience        : 7.097335765138268e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb20>
salience        : 7.093269960023463e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c490>
salience        : 7.075401663314551e-05
wikipedia_url   : -
====================
name            : thisisredbridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47df0>
salience        : 7.062908844090998e-05
wikipedia_url   : -
====================
name            : mia
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47d50>
salience        : 7.052560977172107e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967a30>
salience        : 7.041344360914081e-05
wikipedia_url   : -
====================
name            : 1st floor
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967210>
salience        : 7.03677287674509e-05
wikipedia_url   : -
====================
name            : floor
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229679e0>
salience        : 7.026572711765766e-05
wikipedia_url   : -
====================
name            : floor
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e40>
salience        : 7.026572711765766e-05
wikipedia_url   : -
====================
name            : floor
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967e90>
salience        : 7.026572711765766e-05
wikipedia_url   : -
====================
name            : floods
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967d00>
salience        : 7.009227556409314e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad710>
salience        : 7.009227556409314e-05
wikipedia_url   : -
====================
name            : business district
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad5d0>
salience        : 7.009227556409314e-05
wikipedia_url   : -
====================
name            : londontheinside kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad030>
salience        : 6.966752698644996e-05
wikipedia_url   : -
====================
name            : tales
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad170>
salience        : 6.884177128085867e-05
wikipedia_url   : -
====================
name            : pre
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad120>
salience        : 6.858330016257241e-05
wikipedia_url   : -
====================
name            : order
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad4e0>
salience        : 6.858330016257241e-05
wikipedia_url   : -
====================
name            : pancras kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adc60>
salience        : 6.820331327617168e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad210>
salience        : 6.765399302821606e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ada80>
salience        : 6.760629185009748e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad490>
salience        : 6.760629185009748e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad6c0>
salience        : 6.760629185009748e-05
wikipedia_url   : -
====================
name            : lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad8a0>
salience        : 6.758622475899756e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad2b0>
salience        : 6.756664515705779e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adad0>
salience        : 6.756664515705779e-05
wikipedia_url   : -
====================
name            : visit light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adf80>
salience        : 6.756664515705779e-05
wikipedia_url   : -
====================
name            : scene tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220adee0>
salience        : 6.753322668373585e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad350>
salience        : 6.751054024789482e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a29e0>
salience        : 6.749266322003677e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a22b0>
salience        : 6.747516454197466e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ee0>
salience        : 6.747516454197466e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c10>
salience        : 6.745802966179326e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2df0>
salience        : 6.742480036336929e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a27b0>
salience        : 6.742480036336929e-05
wikipedia_url   : -
====================
name            : lumierelondon view
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f30>
salience        : 6.742225377820432e-05
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2990>
salience        : 6.73773538437672e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23f0>
salience        : 6.73773538437672e-05
wikipedia_url   : -
====================
name            : pop galleries
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2c60>
salience        : 6.7324515839573e-05
wikipedia_url   : -
====================
name            : galleries
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2350>
salience        : 6.7324515839573e-05
wikipedia_url   : -
====================
name            : choices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2b20>
salience        : 6.7324515839573e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a20d0>
salience        : 6.718799704685807e-05
wikipedia_url   : -
====================
name            : granary
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2580>
salience        : 6.708639557473361e-05
wikipedia_url   : -
====================
name            : festival light london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2670>
salience        : 6.70571971568279e-05
wikipedia_url   : -
====================
name            : london_theatre
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2170>
salience        : 6.701787060592324e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2bc0>
salience        : 6.701787060592324e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a23a0>
salience        : 6.701787060592324e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28a0>
salience        : 6.701787060592324e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2760>
salience        : 6.699889490846545e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2260>
salience        : 6.698288780171424e-05
wikipedia_url   : -
====================
name            : londonlife festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a28f0>
salience        : 6.698288780171424e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e40>
salience        : 6.69803557684645e-05
wikipedia_url   : -
====================
name            : festival london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2940>
salience        : 6.69803557684645e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf940>
salience        : 6.695914635201916e-05
wikipedia_url   : -
====================
name            : bottle festoon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3f0>
salience        : 6.688579014735296e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce3a0>
salience        : 6.688579014735296e-05
wikipedia_url   : -
====================
name            : sneak peek thebroadwaysw1 festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce2b0>
salience        : 6.688579014735296e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce300>
salience        : 6.686322012683377e-05
wikipedia_url   : -
====================
name            : londonlife festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce620>
salience        : 6.686322012683377e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce4e0>
salience        : 6.684126128675416e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce1c0>
salience        : 6.681988452328369e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce260>
salience        : 6.679905345663428e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce170>
salience        : 6.679905345663428e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce440>
salience        : 6.677873898297548e-05
wikipedia_url   : -
====================
name            : time travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce350>
salience        : 6.677873898297548e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce710>
salience        : 6.632016447838396e-05
wikipedia_url   : -
====================
name            : travel london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7030>
salience        : 6.629838026128709e-05
wikipedia_url   : -
====================
name            : umbrellas action london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a30>
salience        : 6.629838026128709e-05
wikipedia_url   : -
====================
name            : light show lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7580>
salience        : 6.625651440117508e-05
wikipedia_url   : -
====================
name            : installation london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7080>
salience        : 6.625651440117508e-05
wikipedia_url   : -
====================
name            : night event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7760>
salience        : 6.606573151657358e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7120>
salience        : 6.560936162713915e-05
wikipedia_url   : -
====================
name            : impact
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73a0>
salience        : 6.532981933560222e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7850>
salience        : 6.528005178552121e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7ad0>
salience        : 6.512403342640027e-05
wikipedia_url   : -
====================
name            : camdenis lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7800>
salience        : 6.512403342640027e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7350>
salience        : 6.512403342640027e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7cb0>
salience        : 6.508584192488343e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc79e0>
salience        : 6.50674119242467e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7990>
salience        : 6.50674119242467e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7440>
salience        : 6.50494039291516e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7170>
salience        : 6.499772280221805e-05
wikipedia_url   : -
====================
name            : festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7940>
salience        : 6.498121365439147e-05
wikipedia_url   : -
====================
name            : ride bike light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7490>
salience        : 6.496504647657275e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78f0>
salience        : 6.493367254734039e-05
wikipedia_url   : -
====================
name            : langheinrich gt newnewspage festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc74e0>
salience        : 6.493367254734039e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc78a0>
salience        : 6.490349915111437e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b70>
salience        : 6.47517153993249e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7260>
salience        : 6.468522769864649e-05
wikipedia_url   : -
====================
name            : lunch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7e40>
salience        : 6.454747926909477e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d00>
salience        : 6.454702815972269e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc71c0>
salience        : 6.452351226471364e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c60>
salience        : 6.452351226471364e-05
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7c10>
salience        : 6.452351226471364e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaee0>
salience        : 6.449906504712999e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae40>
salience        : 6.44843457848765e-05
wikipedia_url   : -
====================
name            : lighting
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa120>
salience        : 6.447535270126536e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa080>
salience        : 6.447535270126536e-05
wikipedia_url   : -
====================
name            : tea cakes bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa030>
salience        : 6.447535270126536e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaacb0>
salience        : 6.447535270126536e-05
wikipedia_url   : -
====================
name            : glimpse lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad00>
salience        : 6.440823926823214e-05
wikipedia_url   : -
====================
name            : stroll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3a0>
salience        : 6.440270226448774e-05
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf80>
salience        : 6.434643000829965e-05
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab70>
salience        : 6.434643000829965e-05
wikipedia_url   : -
====================
name            : winterlights lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa80>
salience        : 6.434643000829965e-05
wikipedia_url   : -
====================
name            : tfltravelales lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaada0>
salience        : 6.43268576823175e-05
wikipedia_url   : -
====================
name            : pint
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaf30>
salience        : 6.428054621210322e-05
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaad50>
salience        : 6.408188346540555e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa9e0>
salience        : 6.35007381788455e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa990>
salience        : 6.343714630929753e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaad0>
salience        : 6.332428165478632e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa300>
salience        : 6.332428165478632e-05
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa490>
salience        : 6.332110933726653e-05
wikipedia_url   : -
====================
name            : streets landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa0d0>
salience        : 6.314215715974569e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国の
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa530>
salience        : 6.271898018894717e-05
wikipedia_url   : -
====================
name            : hea london south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac10>
salience        : 6.26853434368968e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa350>
salience        : 6.205440877238289e-05
wikipedia_url   : -
====================
name            : vip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaadf0>
salience        : 6.178225157782435e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa4e0>
salience        : 6.175744056235999e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa170>
salience        : 6.171909626573324e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaac60>
salience        : 6.170673441374674e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa710>
salience        : 6.169457628857344e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77080>
salience        : 6.168261461425573e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77300>
salience        : 6.165923696244135e-05
wikipedia_url   : -
====================
name            : list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e774e0>
salience        : 6.129788380349055e-05
wikipedia_url   : -
====================
name            : londonwestend
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77850>
salience        : 6.129592657089233e-05
wikipedia_url   : -
====================
name            : activity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77940>
salience        : 6.125841900939122e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77bc0>
salience        : 6.120745820226148e-05
wikipedia_url   : -
====================
name            : restaurant london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c60>
salience        : 6.116994336480275e-05
wikipedia_url   : -
====================
name            : mayoroflondon londonassembly londonisopen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e40>
salience        : 6.09831404290162e-05
wikipedia_url   : -
====================
name            : tomcopley londonassembly ldn_gov mayoroflondon londonisopen
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e770d0>
salience        : 6.084635606384836e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77170>
salience        : 6.071661846362986e-05
wikipedia_url   : -
====================
name            : cain_int visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77490>
salience        : 6.069127266528085e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77620>
salience        : 6.066676724003628e-05
wikipedia_url   : -
====================
name            : vip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77710>
salience        : 6.0635036788880825e-05
wikipedia_url   : -
====================
name            : pop dinner champagne
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e779e0>
salience        : 6.0635036788880825e-05
wikipedia_url   : -
====================
name            : bloombergservice grosvenor_gbi
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b70>
salience        : 6.062941247364506e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77e90>
salience        : 6.057615246390924e-05
wikipedia_url   : -
====================
name            : cain_int visitthecity
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e771c0>
salience        : 6.0514827055158094e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77580>
salience        : 6.0495473007904366e-05
wikipedia_url   : -
====================
name            : pedal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a80>
salience        : 6.048405703040771e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ad0>
salience        : 6.0476610087789595e-05
wikipedia_url   : -
====================
name            : night event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e776c0>
salience        : 6.0401631344575435e-05
wikipedia_url   : -
====================
name            : bloombergservice visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77210>
salience        : 6.019875581841916e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d50>
salience        : 6.0026672144886106e-05
wikipedia_url   : -
====================
name            : amp experience festival lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77030>
salience        : 5.987003169138916e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77260>
salience        : 5.968154437141493e-05
wikipedia_url   : -
====================
name            : theatre show london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773a0>
salience        : 5.967033212073147e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089350>
salience        : 5.9628298913594335e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220890d0>
salience        : 5.9528829297050834e-05
wikipedia_url   : -
====================
name            : countdown lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220896c0>
salience        : 5.951562343398109e-05
wikipedia_url   : -
====================
name            : visitlondon bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e90>
salience        : 5.951562343398109e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089bc0>
salience        : 5.948990292381495e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220899e0>
salience        : 5.948990292381495e-05
wikipedia_url   : -
====================
name            : festival pa umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089080>
salience        : 5.947146928519942e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089580>
salience        : 5.945296652498655e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089530>
salience        : 5.942673669778742e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089210>
salience        : 5.9416459407657385e-05
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089f30>
salience        : 5.941185372648761e-05
wikipedia_url   : -
====================
name            : ride bike light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089df0>
salience        : 5.9395304560894147e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089170>
salience        : 5.938430695096031e-05
wikipedia_url   : -
====================
name            : charity aichoke
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089c10>
salience        : 5.880362732568756e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b20>
salience        : 5.869929736945778e-05
wikipedia_url   : -
====================
name            : searcystpancras
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089670>
salience        : 5.8562618505675346e-05
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089800>
salience        : 5.849630542797968e-05
wikipedia_url   : -
====================
name            : lighting installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d00>
salience        : 5.8478944993112236e-05
wikipedia_url   : -
====================
name            : south bank installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089300>
salience        : 5.8478944993112236e-05
wikipedia_url   : -
====================
name            : lighting installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089260>
salience        : 5.8478944993112236e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220892b0>
salience        : 5.84619992878288e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93670>
salience        : 5.844545012223534e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93490>
salience        : 5.842927566845901e-05
wikipedia_url   : -
====================
name            : thisislondon visitlondon london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93850>
salience        : 5.841581150889397e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a936c0>
salience        : 5.8397989050718024e-05
wikipedia_url   : -
====================
name            : miss installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93f80>
salience        : 5.838284778292291e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a932b0>
salience        : 5.838284778292291e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93bc0>
salience        : 5.836802301928401e-05
wikipedia_url   : -
====================
name            : lighting installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93940>
salience        : 5.836802301928401e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93580>
salience        : 5.836802301928401e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93210>
salience        : 5.83535002078861e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93300>
salience        : 5.83535002078861e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938a0>
salience        : 5.8339272072771564e-05
wikipedia_url   : -
====================
name            : kingscrossn1c bbclondonnews
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3d00>
salience        : 5.8336445363238454e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3800>
salience        : 5.832532042404637e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3120>
salience        : 5.832532042404637e-05
wikipedia_url   : -
====================
name            : lighting installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3300>
salience        : 5.829821384395473e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc31c0>
salience        : 5.802720625069924e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3350>
salience        : 5.7956895034294575e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3210>
salience        : 5.791363582829945e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc37b0>
salience        : 5.78728795517236e-05
wikipedia_url   : -
====================
name            : installation
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3710>
salience        : 5.78343533561565e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3440>
salience        : 5.781585423392244e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3a80>
salience        : 5.77978280489333e-05
wikipedia_url   : -
====================
name            : phil brown
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf940>
salience        : 5.7781180657912046e-05
wikipedia_url   : -
====================
name            : hq
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf300>
salience        : 5.740091728512198e-05
wikipedia_url   : -
====================
name            : photos ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd50>
salience        : 5.738941399613395e-05
wikipedia_url   : -
====================
name            : hq
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfd00>
salience        : 5.7322336942888796e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfcb0>
salience        : 5.7109060435323045e-05
wikipedia_url   : -
====================
name            : tag
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfc60>
salience        : 5.684386633220129e-05
wikipedia_url   : -
====================
name            : instinct
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf850>
salience        : 5.677714943885803e-05
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff80>
salience        : 5.6687855249037966e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfa30>
salience        : 5.6663237046450377e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf670>
salience        : 5.6663237046450377e-05
wikipedia_url   : -
====================
name            : page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf9e0>
salience        : 5.6560700613772497e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064580>
salience        : 5.654096821672283e-05
wikipedia_url   : -
====================
name            : news
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064760>
salience        : 5.645341661875136e-05
wikipedia_url   : -
====================
name            : european
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064a30>
salience        : 5.627894643112086e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220644e0>
salience        : 5.615833288175054e-05
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220641c0>
salience        : 5.6008058891166e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220648a0>
salience        : 5.600001895800233e-05
wikipedia_url   : -
====================
name            : westminster abbey cha lovelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064df0>
salience        : 5.594311005552299e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064170>
salience        : 5.592410161625594e-05
wikipedia_url   : -
====================
name            : gt visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220640d0>
salience        : 5.5900352890603244e-05
wikipedia_url   : -
====================
name            : guide visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220647b0>
salience        : 5.5900352890603244e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220642b0>
salience        : 5.5900352890603244e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064b70>
salience        : 5.5900352890603244e-05
wikipedia_url   : -
====================
name            : event visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064440>
salience        : 5.588878411799669e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9300>
salience        : 5.588878411799669e-05
wikipedia_url   : -
====================
name            : programme visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9350>
salience        : 5.587740815826692e-05
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9990>
salience        : 5.587740815826692e-05
wikipedia_url   : -
====================
name            : city visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9120>
salience        : 5.585520921158604e-05
wikipedia_url   : -
====================
name            : spin london history visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9a30>
salience        : 5.5844375310698524e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9f80>
salience        : 5.583506208495237e-05
wikipedia_url   : -
====================
name            : work waterlicht info visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9760>
salience        : 5.581287405220792e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9440>
salience        : 5.580269134952687e-05
wikipedia_url   : -
====================
name            : landscape aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9120>
salience        : 5.575946852331981e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6cb0>
salience        : 5.562245496548712e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c9d00>
salience        : 5.5331678595393896e-05
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7a30>
salience        : 5.5242442613234743e-05
wikipedia_url   : -
====================
name            : travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7bc0>
salience        : 5.50021359231323e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7f80>
salience        : 5.495620644069277e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7080>
salience        : 5.472048360388726e-05
wikipedia_url   : -
====================
name            : bbclondonnews festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7440>
salience        : 5.464926653075963e-05
wikipedia_url   : -
====================
name            : hop board
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e40>
salience        : 5.454443089547567e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc87b0>
salience        : 5.418348155217245e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc85d0>
salience        : 5.406820491771214e-05
wikipedia_url   : -
====================
name            : mella amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8d50>
salience        : 5.406820491771214e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8e90>
salience        : 5.405324191087857e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8cb0>
salience        : 5.405324191087857e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8ee0>
salience        : 5.405324191087857e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8120>
salience        : 5.403861359809525e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8080>
salience        : 5.403861359809525e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8350>
salience        : 5.403861359809525e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8df0>
salience        : 5.403861359809525e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8300>
salience        : 5.4010291933082044e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ea30>
salience        : 5.40074979653582e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ecb0>
salience        : 5.375031105359085e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ef80>
salience        : 5.3654635848943144e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e990>
salience        : 5.3654635848943144e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ebc0>
salience        : 5.361268267733976e-05
wikipedia_url   : -
====================
name            : inspiration study universe blood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ec60>
salience        : 5.3564832342090085e-05
wikipedia_url   : -
====================
name            : riverside walk oxo rambe amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7b20>
salience        : 5.3502873925026506e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220673a0>
salience        : 5.348255217541009e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067580>
salience        : 5.3446947276825085e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5850>
salience        : 5.339162817108445e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f30>
salience        : 5.338110713637434e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2300>
salience        : 5.338110713637434e-05
wikipedia_url   : -
====================
name            : touches installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd24e0>
salience        : 5.3370753448689356e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2120>
salience        : 5.3360559832071885e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7670>
salience        : 5.3350529924500734e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7da0>
salience        : 5.3350529924500734e-05
wikipedia_url   : -
====================
name            : visitors installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d00>
salience        : 5.334064917406067e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7d50>
salience        : 5.334064917406067e-05
wikipedia_url   : -
====================
name            : program
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229876c0>
salience        : 5.3330375521909446e-05
wikipedia_url   : -
====================
name            : chelvanstanmore visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bf1c0>
salience        : 5.3293009841581807e-05
wikipedia_url   : -
====================
name            : chelvanstanmore visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde3b70>
salience        : 5.3293009841581807e-05
wikipedia_url   : -
====================
name            : individuals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22075f30>
salience        : 5.312366192811169e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c800>
salience        : 5.2978248277213424e-05
wikipedia_url   : -
====================
name            : david ward
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc473f0>
salience        : 5.2599898481275886e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47940>
salience        : 5.2548912208294496e-05
wikipedia_url   : -
====================
name            : festival installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47620>
salience        : 5.2482326282188296e-05
wikipedia_url   : -
====================
name            : festival pa umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47990>
salience        : 5.1936109230155125e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47800>
salience        : 5.188296199776232e-05
wikipedia_url   : -
====================
name            : festival london evening standard
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967da0>
salience        : 5.1841103413607925e-05
wikipedia_url   : -
====================
name            : residents
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967170>
salience        : 5.1841103413607925e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967df0>
salience        : 5.1841103413607925e-05
wikipedia_url   : -
====================
name            : installations umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967f80>
salience        : 5.179356594453566e-05
wikipedia_url   : -
====================
name            : durhamresearch visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967bc0>
salience        : 5.175662226974964e-05
wikipedia_url   : -
====================
name            : lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967490>
salience        : 5.175107071409002e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Lumiere_festival
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad3a0>
salience        : 5.17230510013178e-05
wikipedia_url   : -
====================
name            : illuminations
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad260>
salience        : 5.169882206246257e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad080>
salience        : 5.165475158719346e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893a0>
salience        : 5.130791396368295e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089940>
salience        : 5.124475137563422e-05
wikipedia_url   : -
====================
name            : warming
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089710>
salience        : 5.1199192967033014e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898a0>
salience        : 5.103439980302937e-05
wikipedia_url   : -
====================
name            : londontheinside kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a30>
salience        : 5.0768980145221576e-05
wikipedia_url   : -
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220891c0>
salience        : 5.0636484957067296e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089850>
salience        : 5.060262628830969e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089b70>
salience        : 5.049297396908514e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089120>
salience        : 5.0372371333651245e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089030>
salience        : 5.0372371333651245e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220897b0>
salience        : 5.034851346863434e-05
wikipedia_url   : -
====================
name            : leakestarches coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089490>
salience        : 5.0337395805399865e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089440>
salience        : 5.033692286815494e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d1c0>
salience        : 5.0239323172718287e-05
wikipedia_url   : -
====================
name            : launch event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dbc0>
salience        : 5.004221020499244e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d9e0>
salience        : 4.9952806875808164e-05
wikipedia_url   : -
====================
name            : check blog list top installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d5d0>
salience        : 4.9841477448353544e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d080>
salience        : 4.9561760533833876e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d490>
salience        : 4.9423026212025434e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d710>
salience        : 4.926435212837532e-05
wikipedia_url   : -
====================
name            : awork
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d850>
salience        : 4.9135593144455925e-05
wikipedia_url   : -
====================
name            : south bank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dad0>
salience        : 4.885348607786e-05
wikipedia_url   : -
====================
name            : cirquebijou performance bloombergservice aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc60>
salience        : 4.87483230244834e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8a0>
salience        : 4.8592377424938604e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d350>
salience        : 4.8579080612398684e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d580>
salience        : 4.8242898628814146e-05
wikipedia_url   : -
====================
name            : makeover
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d530>
salience        : 4.808063022210263e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd00>
salience        : 4.807225923286751e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d800>
salience        : 4.803625779459253e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d670>
salience        : 4.802233524969779e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d8f0>
salience        : 4.799545422429219e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dcb0>
salience        : 4.799545422429219e-05
wikipedia_url   : -
====================
name            : dining
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d6c0>
salience        : 4.793376865563914e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da80>
salience        : 4.7910059947753325e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dda0>
salience        : 4.789882223121822e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206ddf0>
salience        : 4.789882223121822e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d030>
salience        : 4.7887795517453924e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d120>
salience        : 4.7887795517453924e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d440>
salience        : 4.78072433907073e-05
wikipedia_url   : -
====================
name            : mikebloomberg
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d300>
salience        : 4.775589695782401e-05
wikipedia_url   : -
====================
name            : planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d170>
salience        : 4.760742012877017e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d940>
salience        : 4.760742012877017e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d7b0>
salience        : 4.75718843517825e-05
wikipedia_url   : -
====================
name            : city nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d760>
salience        : 4.7509671276202425e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d260>
salience        : 4.749156141770072e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beee0>
salience        : 4.749156141770072e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be760>
salience        : 4.747675484395586e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be990>
salience        : 4.747675484395586e-05
wikipedia_url   : -
====================
name            : london light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beda0>
salience        : 4.7384331992361695e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bec10>
salience        : 4.715983959613368e-05
wikipedia_url   : -
====================
name            : light show
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8a0>
salience        : 4.715983959613368e-05
wikipedia_url   : -
====================
name            : enjoyfitzrovia
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea80>
salience        : 4.705425089923665e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220becb0>
salience        : 4.696448741015047e-05
wikipedia_url   : -
====================
name            : cirquebijou amp lambethacademy students
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed00>
salience        : 4.693758819485083e-05
wikipedia_url   : -
====================
name            : store street sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bed50>
salience        : 4.692954826168716e-05
wikipedia_url   : -
====================
name            : store street sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be0d0>
salience        : 4.681132122641429e-05
wikipedia_url   : -
====================
name            : pa
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be9e0>
salience        : 4.658275793190114e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef80>
salience        : 4.650324262911454e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be350>
salience        : 4.6501594624714926e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be4e0>
salience        : 4.645157605409622e-05
wikipedia_url   : -
====================
name            : awork
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be940>
salience        : 4.6386950998567045e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bedf0>
salience        : 4.632431591744535e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bead0>
salience        : 4.631056799553335e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0300>
salience        : 4.631056799553335e-05
wikipedia_url   : -
====================
name            : travel festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d50>
salience        : 4.630381954484619e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0760>
salience        : 4.6297147491713986e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f80>
salience        : 4.6297147491713986e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b07b0>
salience        : 4.6290555474115536e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0530>
salience        : 4.628666283679195e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b04e0>
salience        : 4.6284039854072034e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0260>
salience        : 4.627760063158348e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0800>
salience        : 4.6271230530692264e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b08a0>
salience        : 4.625254587153904e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0210>
salience        : 4.625254587153904e-05
wikipedia_url   : -
====================
name            : residents installation bottle festoon project kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0710>
salience        : 4.625105066224933e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0580>
salience        : 4.624645589501597e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e90>
salience        : 4.624645589501597e-05
wikipedia_url   : -
====================
name            : havaslondon kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b70>
salience        : 4.618554885382764e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0120>
salience        : 4.6168392145773396e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0620>
salience        : 4.6168392145773396e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03f0>
salience        : 4.6168392145773396e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0f30>
salience        : 4.616134174284525e-05
wikipedia_url   : -
====================
name            : parking event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b03a0>
salience        : 4.6158147597452626e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b02b0>
salience        : 4.6158147597452626e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0e40>
salience        : 4.6158147597452626e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0350>
salience        : 4.6158147597452626e-05
wikipedia_url   : -
====================
name            : kingscrosscouk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ee0>
salience        : 4.6115856093820184e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0a80>
salience        : 4.6109551476547495e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0ad0>
salience        : 4.6109551476547495e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0b20>
salience        : 4.6100318286335096e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0080>
salience        : 4.6056298742769286e-05
wikipedia_url   : -
====================
name            : story
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b01c0>
salience        : 4.5993681851541623e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99030>
salience        : 4.594805432134308e-05
wikipedia_url   : -
====================
name            : link plan visit lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99120>
salience        : 4.594805432134308e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99210>
salience        : 4.59344191767741e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99300>
salience        : 4.59344191767741e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993f0>
salience        : 4.59344191767741e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99530>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a995d0>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99620>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99670>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99800>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998a0>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99940>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b20>
salience        : 4.592772529576905e-05
wikipedia_url   : -
====================
name            : promo code
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d00>
salience        : 4.5918874093331397e-05
wikipedia_url   : -
====================
name            : installations london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99d50>
salience        : 4.591457036440261e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99170>
salience        : 4.590171738527715e-05
wikipedia_url   : -
====================
name            : kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99850>
salience        : 4.589997843140736e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99da0>
salience        : 4.588297815644182e-05
wikipedia_url   : -
====================
name            : culturalheritage kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f30>
salience        : 4.582454857882112e-05
wikipedia_url   : -
====================
name            : havaslondon kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99580>
salience        : 4.5807184505974874e-05
wikipedia_url   : -
====================
name            : position store street staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ad0>
salience        : 4.579434244078584e-05
wikipedia_url   : -
====================
name            : havaslondon kings
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99b70>
salience        : 4.577399886329658e-05
wikipedia_url   : -
====================
name            : visitlondon lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a990d0>
salience        : 4.5633332774741575e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c60>
salience        : 4.555127088679001e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99440>
salience        : 4.554215047392063e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a997b0>
salience        : 4.554215047392063e-05
wikipedia_url   : -
====================
name            : victoriabid aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99c10>
salience        : 4.547155913314782e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a30>
salience        : 4.547155913314782e-05
wikipedia_url   : -
====================
name            : coffee beer
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99990>
salience        : 4.5403554395306855e-05
wikipedia_url   : -
====================
name            : trains mystery
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095490>
salience        : 4.530170917860232e-05
wikipedia_url   : -
====================
name            : con
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220957b0>
salience        : 4.514147440204397e-05
wikipedia_url   : -
====================
name            : noches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953a0>
salience        : 4.5076034439262e-05
wikipedia_url   : -
====================
name            : bus routes
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095a30>
salience        : 4.499325223150663e-05
wikipedia_url   : -
====================
name            : mist
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095990>
salience        : 4.496475958148949e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095710>
salience        : 4.4623378926189616e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d50>
salience        : 4.4623378926189616e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e90>
salience        : 4.4616714149015024e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220954e0>
salience        : 4.4590859033633024e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220956c0>
salience        : 4.4590859033633024e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c60>
salience        : 4.4572243496077135e-05
wikipedia_url   : -
====================
name            : carnaby light
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095bc0>
salience        : 4.4566175347426906e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220955d0>
salience        : 4.456017632037401e-05
wikipedia_url   : -
====================
name            : lightshow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095440>
salience        : 4.456017632037401e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095300>
salience        : 4.4554242776939645e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095940>
salience        : 4.4554242776939645e-05
wikipedia_url   : -
====================
name            : countdown lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095d00>
salience        : 4.4548374717123806e-05
wikipedia_url   : -
====================
name            : countdown lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d00>
salience        : 4.4548374717123806e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a25d0>
salience        : 4.4548374717123806e-05
wikipedia_url   : -
====================
name            : emma allen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2030>
salience        : 4.4387947127688676e-05
wikipedia_url   : -
====================
name            : chinatownlondon lumiere london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a30>
salience        : 4.428123065736145e-05
wikipedia_url   : -
====================
name            : check guide rupe street food drink requirements
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2300>
salience        : 4.4273328967392445e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2440>
salience        : 4.4255652028368786e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2080>
salience        : 4.4255652028368786e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2800>
salience        : 4.4255652028368786e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2a80>
salience        : 4.4255652028368786e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2f80>
salience        : 4.4255652028368786e-05
wikipedia_url   : -
====================
name            : watering cans
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2cb0>
salience        : 4.4236978283151984e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2490>
salience        : 4.3989901314489543e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2d50>
salience        : 4.393199196783826e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a24e0>
salience        : 4.3922063923673704e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf4e0>
salience        : 4.3893342080991715e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cf210>
salience        : 4.3893342080991715e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce030>
salience        : 4.3893342080991715e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce080>
salience        : 4.3893342080991715e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce120>
salience        : 4.3893342080991715e-05
wikipedia_url   : -
====================
name            : sta planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce210>
salience        : 4.38841016148217e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce0d0>
salience        : 4.3875017581740394e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7530>
salience        : 4.3875017581740394e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7300>
salience        : 4.3866086343768984e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7b20>
salience        : 4.3866086343768984e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc73f0>
salience        : 4.3866086343768984e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc77b0>
salience        : 4.3866086343768984e-05
wikipedia_url   : -
====================
name            : plant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7a80>
salience        : 4.385730062494986e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7bc0>
salience        : 4.384865678730421e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7620>
salience        : 4.384865678730421e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc75d0>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc72b0>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7210>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc76c0>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7d50>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc70d0>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7710>
salience        : 4.3840154830832034e-05
wikipedia_url   : -
====================
name            : power poetry water
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa670>
salience        : 4.382776751299389e-05
wikipedia_url   : -
====================
name            : lumiere cocktail amp trio
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaab20>
salience        : 4.3760646804003045e-05
wikipedia_url   : -
====================
name            : tomcopley ldn_gov londonassembly londonisopen southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa6c0>
salience        : 4.369187809061259e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa7b0>
salience        : 4.3063108023488894e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaaa30>
salience        : 4.302870001993142e-05
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaae90>
salience        : 4.2976469558198005e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa5d0>
salience        : 4.291685399948619e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77120>
salience        : 4.2907471652142704e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77670>
salience        : 4.2770294385263696e-05
wikipedia_url   : -
====================
name            : perks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e777b0>
salience        : 4.27277191192843e-05
wikipedia_url   : -
====================
name            : newnewspage festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778f0>
salience        : 4.219422407913953e-05
wikipedia_url   : -
====================
name            : newnewspage festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77990>
salience        : 4.219422407913953e-05
wikipedia_url   : -
====================
name            : newnewspage festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77a30>
salience        : 4.219422407913953e-05
wikipedia_url   : -
====================
name            : newnewspage festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77c10>
salience        : 4.219422407913953e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77350>
salience        : 4.212823114357889e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77df0>
salience        : 4.212288695271127e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f30>
salience        : 4.1945939301513135e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e775d0>
salience        : 4.193960194243118e-05
wikipedia_url   : -
====================
name            : plan visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77ee0>
salience        : 4.193960194243118e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77800>
salience        : 4.193960194243118e-05
wikipedia_url   : -
====================
name            : amp visibility
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77760>
salience        : 4.193334098090418e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089990>
salience        : 4.1897306800819933e-05
wikipedia_url   : -
====================
name            : amp visibility
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089e40>
salience        : 4.1897306800819933e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220894e0>
salience        : 4.189154060441069e-05
wikipedia_url   : -
====================
name            : rambe building visitlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93a80>
salience        : 4.1874627640936524e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93b20>
salience        : 4.1874627640936524e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93c60>
salience        : 4.186911246506497e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93800>
salience        : 4.1495753976050764e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a938f0>
salience        : 4.1495753976050764e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3df0>
salience        : 4.1495753976050764e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b20>
salience        : 4.148452353547327e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3b70>
salience        : 4.148452353547327e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3c10>
salience        : 4.148452353547327e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3ee0>
salience        : 4.148452353547327e-05
wikipedia_url   : -
====================
name            : caravanresto
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf6c0>
salience        : 4.142118996242061e-05
wikipedia_url   : -
====================
name            : eventmerch aichoketrust visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfdf0>
salience        : 4.136815550737083e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcff30>
salience        : 4.08676169172395e-05
wikipedia_url   : -
====================
name            : aichoketrust visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf490>
salience        : 4.0861134039005265e-05
wikipedia_url   : -
====================
name            : experience woh aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf4e0>
salience        : 4.070627619512379e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064f80>
salience        : 4.053879456478171e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064030>
salience        : 4.025052112410776e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064530>
salience        : 4.008789255749434e-05
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9800>
salience        : 4.008423275081441e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9c10>
salience        : 4.0069939132081345e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9490>
salience        : 4.004141374025494e-05
wikipedia_url   : -
====================
name            : installation
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6c60>
salience        : 4.0035905840341e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c96c0>
salience        : 4.0035905840341e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde72b0>
salience        : 4.0035905840341e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8c10>
salience        : 4.0025068301474676e-05
wikipedia_url   : -
====================
name            : installation
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e030>
salience        : 4.0019738662522286e-05
wikipedia_url   : -
====================
name            : aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eb70>
salience        : 4.000532499048859e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209eee0>
salience        : 3.997247767983936e-05
wikipedia_url   : -
====================
name            : granarysquare kingscross euston benaresofficial benares
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b7080>
salience        : 3.997057501692325e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067710>
salience        : 3.995684892288409e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2bc0>
salience        : 3.991277117165737e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd2760>
salience        : 3.991232006228529e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7ee0>
salience        : 3.952415499952622e-05
wikipedia_url   : -
====================
name            : aichoketrust london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cc3a0>
salience        : 3.948846642742865e-05
wikipedia_url   : -
====================
name            : parking paner qparkuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e300>
salience        : 3.938689042115584e-05
wikipedia_url   : -
====================
name            : kingscross preview
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220753a0>
salience        : 3.9093985833460465e-05
wikipedia_url   : -
====================
name            : force cirquebijou
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208c080>
salience        : 3.898635623045266e-05
wikipedia_url   : -
====================
name            : set menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47ee0>
salience        : 3.895889312843792e-05
wikipedia_url   : -
====================
name            : field luminosity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47300>
salience        : 3.8955375202931464e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fc47cb0>
salience        : 3.866441693389788e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967940>
salience        : 3.8656497054034844e-05
wikipedia_url   : -
====================
name            : cosmoscope store street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220951c0>
salience        : 3.8656231481581926e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f30>
salience        : 3.8629026676062495e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220953f0>
salience        : 3.8629026676062495e-05
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095620>
salience        : 3.844256207230501e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095c10>
salience        : 3.840285717160441e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095670>
salience        : 3.833424489130266e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095da0>
salience        : 3.8309397496050224e-05
wikipedia_url   : -
====================
name            : guide aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095120>
salience        : 3.828651097137481e-05
wikipedia_url   : -
====================
name            : pa gt aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b20>
salience        : 3.827501132036559e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debc60>
salience        : 3.8269365177256986e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb440>
salience        : 3.8231653888942674e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb6c0>
salience        : 3.807180837611668e-05
wikipedia_url   : -
====================
name            : pixar
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8f0>
salience        : 3.803203799179755e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Pixar
====================
name            : lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb20>
salience        : 3.7957041058689356e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe90>
salience        : 3.793456562561914e-05
wikipedia_url   : -
====================
name            : conjunction tube festival signal failures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb0d0>
salience        : 3.7659690860891715e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb670>
salience        : 3.765038127312437e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf80>
salience        : 3.761893094633706e-05
wikipedia_url   : -
====================
name            : wish london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb120>
salience        : 3.757593731279485e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb080>
salience        : 3.730020034709014e-05
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb800>
salience        : 3.729952368303202e-05
wikipedia_url   : -
====================
name            : photography
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debee0>
salience        : 3.724612543010153e-05
wikipedia_url   : -
====================
name            : mappingshow di aichoketrust da 18
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb530>
salience        : 3.7104240618646145e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba30>
salience        : 3.707981522893533e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3a0>
salience        : 3.707981522893533e-05
wikipedia_url   : -
====================
name            : riverside walk oxo rambe amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb710>
salience        : 3.707427822519094e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb170>
salience        : 3.707427822519094e-05
wikipedia_url   : -
====================
name            : riverside walk oxo rambe amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb4e0>
salience        : 3.707427822519094e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debad0>
salience        : 3.706881034304388e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb350>
salience        : 3.706881034304388e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debcb0>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debda0>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb850>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb940>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debd00>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb8a0>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debf30>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb760>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb580>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098cb0>
salience        : 3.706340794451535e-05
wikipedia_url   : -
====================
name            : cold amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220981c0>
salience        : 3.7022367905592546e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098620>
salience        : 3.684747207444161e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220987b0>
salience        : 3.6824199924012646e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098260>
salience        : 3.6824199924012646e-05
wikipedia_url   : -
====================
name            : southbank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220985d0>
salience        : 3.680325244204141e-05
wikipedia_url   : -
====================
name            : southbankbid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098350>
salience        : 3.679427754832432e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220980d0>
salience        : 3.6790075682802126e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098440>
salience        : 3.6790075682802126e-05
wikipedia_url   : -
====================
name            : studio tilt awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220986c0>
salience        : 3.6787911085411906e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983a0>
salience        : 3.6780995287699625e-05
wikipedia_url   : -
====================
name            : southbankbid
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098df0>
salience        : 3.677684799185954e-05
wikipedia_url   : -
====================
name            : thisislondon visitlondon london preview
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b70>
salience        : 3.677677159430459e-05
wikipedia_url   : -
====================
name            : pa gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e40>
salience        : 3.674457184388302e-05
wikipedia_url   : -
====================
name            : southbank
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098580>
salience        : 3.661326991277747e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098e90>
salience        : 3.648579149739817e-05
wikipedia_url   : -
====================
name            : road
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220983f0>
salience        : 3.6480741982813925e-05
wikipedia_url   : -
====================
name            : southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f30>
salience        : 3.646414552349597e-05
wikipedia_url   : -
====================
name            : southbank amp waterloo route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988a0>
salience        : 3.645129982032813e-05
wikipedia_url   : -
====================
name            : project pa dance way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220984e0>
salience        : 3.635673419921659e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ee0>
salience        : 3.633489541243762e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098210>
salience        : 3.631407889770344e-05
wikipedia_url   : -
====================
name            : promotions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098760>
salience        : 3.616898175096139e-05
wikipedia_url   : -
====================
name            : southbank amp waterloo route
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081490>
salience        : 3.6129600630374625e-05
wikipedia_url   : -
====================
name            : ceviche com visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d50>
salience        : 3.604349694796838e-05
wikipedia_url   : -
====================
name            : ipa thebetjemanarms
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081850>
salience        : 3.5819477488985285e-05
wikipedia_url   : -
====================
name            : visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220811c0>
salience        : 3.5734228731598705e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b70>
salience        : 3.563929203664884e-05
wikipedia_url   : -
====================
name            : quote lumiere
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081d00>
salience        : 3.561097400961444e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e90>
salience        : 3.539935642038472e-05
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a30>
salience        : 3.539202953106724e-05
wikipedia_url   : -
====================
name            : theatre street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081170>
salience        : 3.539202953106724e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081df0>
salience        : 3.5384826333029196e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c60>
salience        : 3.537773955031298e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ad0>
salience        : 3.535050564096309e-05
wikipedia_url   : -
====================
name            : wlondonhotel londonmarriott sheratonplh lanes_of_london countyhallldn lumiere london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081120>
salience        : 3.525619104038924e-05
wikipedia_url   : -
====================
name            : programme plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081b20>
salience        : 3.4961260098498315e-05
wikipedia_url   : -
====================
name            : pa flash mob rehearsal umbrella project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813f0>
salience        : 3.475402627373114e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081260>
salience        : 3.475006451481022e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818a0>
salience        : 3.469102011877112e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081080>
salience        : 3.4683034755289555e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220814e0>
salience        : 3.46080087183509e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081bc0>
salience        : 3.459773870417848e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220812b0>
salience        : 3.459269646555185e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081300>
salience        : 3.458771243458614e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081f30>
salience        : 3.458771243458614e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220817b0>
salience        : 3.458771243458614e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081350>
salience        : 3.4582786611281335e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220815d0>
salience        : 3.4582786611281335e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081da0>
salience        : 3.4582786611281335e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a184e0>
salience        : 3.4568351111374795e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18030>
salience        : 3.4568351111374795e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18080>
salience        : 3.4563647204777226e-05
wikipedia_url   : -
====================
name            : parking event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18260>
salience        : 3.454984107520431e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18350>
salience        : 3.454984107520431e-05
wikipedia_url   : -
====================
name            : light installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18440>
salience        : 3.453969839029014e-05
wikipedia_url   : -
====================
name            : riverside walkway
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18580>
salience        : 3.4526306990301237e-05
wikipedia_url   : -
====================
name            : preparations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a186c0>
salience        : 3.4515618608566e-05
wikipedia_url   : -
====================
name            : plastic bottles
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a187b0>
salience        : 3.448280040174723e-05
wikipedia_url   : -
====================
name            : instagram
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18990>
salience        : 3.448019560892135e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Instagram
====================
name            : meal gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18a80>
salience        : 3.444409594521858e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18b20>
salience        : 3.443549940129742e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18cb0>
salience        : 3.430798460613005e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18da0>
salience        : 3.427822593948804e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18e40>
salience        : 3.427822593948804e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18f80>
salience        : 3.427822593948804e-05
wikipedia_url   : -
====================
name            : london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18300>
salience        : 3.427415867918171e-05
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18670>
salience        : 3.409380224184133e-05
wikipedia_url   : -
====================
name            : umbrella display gt gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18800>
salience        : 3.407560143386945e-05
wikipedia_url   : -
====================
name            : london gt
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18b70>
salience        : 3.405351162655279e-05
wikipedia_url   : -
====================
name            : newsroom
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a182b0>
salience        : 3.4036893339361995e-05
wikipedia_url   : -
====================
name            : pitch blackmirror crossover
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18710>
salience        : 3.400050991331227e-05
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18940>
salience        : 3.399253182578832e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a180d0>
salience        : 3.396212196093984e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18850>
salience        : 3.396212196093984e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46030>
salience        : 3.393676888663322e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a460d0>
salience        : 3.39246544172056e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a461c0>
salience        : 3.391288555576466e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a462b0>
salience        : 3.386890602996573e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46440>
salience        : 3.386890602996573e-05
wikipedia_url   : -
====================
name            : tfltravelales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46530>
salience        : 3.38631471095141e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46670>
salience        : 3.385860691196285e-05
wikipedia_url   : -
====================
name            : area bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46760>
salience        : 3.385860691196285e-05
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46800>
salience        : 3.377292159711942e-05
wikipedia_url   : -
====================
name            : bloombergservice euro_tour 光の祭典 ルミエール ロンドン
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46940>
salience        : 3.37490055244416e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46a80>
salience        : 3.373531944816932e-05
wikipedia_url   : -
====================
name            : kingscrossn1c
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46bc0>
salience        : 3.3674859878374264e-05
wikipedia_url   : -
====================
name            : teamldn aichoketrust outdooras euro_tour 光の祭典 ルミエール ロンドン
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46d00>
salience        : 3.3644697396084666e-05
wikipedia_url   : -
====================
name            : tasting menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46e40>
salience        : 3.3613840059842914e-05
wikipedia_url   : -
====================
name            : meal gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46f80>
salience        : 3.360595292178914e-05
wikipedia_url   : -
====================
name            : sneakpreview euro_tour 光の祭典 ルミエール ロンドン
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46210>
salience        : 3.354327054694295e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a464e0>
salience        : 3.3534208341734484e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a467b0>
salience        : 3.3534208341734484e-05
wikipedia_url   : -
====================
name            : thisislondon visitlondon london euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46a30>
salience        : 3.352569183334708e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46cb0>
salience        : 3.3524713217047974e-05
wikipedia_url   : -
====================
name            : umbrellas
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46170>
salience        : 3.3515432733111084e-05
wikipedia_url   : -
====================
name            : thought
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46850>
salience        : 3.3492753573227674e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46ee0>
salience        : 3.348880272824317e-05
wikipedia_url   : -
====================
name            : cirquebijou contact
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46990>
salience        : 3.3455286029493436e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a0d0>
salience        : 3.336739609949291e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a1c0>
salience        : 3.336739609949291e-05
wikipedia_url   : -
====================
name            : regent street london aichoketrust experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a2b0>
salience        : 3.336739609949291e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a3a0>
salience        : 3.3351887395838276e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a4e0>
salience        : 3.32708987116348e-05
wikipedia_url   : -
====================
name            : riverside walkway amp bottle
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a620>
salience        : 3.3231863199034706e-05
wikipedia_url   : -
====================
name            : london programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a670>
salience        : 3.320778705528937e-05
wikipedia_url   : -
====================
name            : office
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a7b0>
salience        : 3.3089625503635034e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a8a0>
salience        : 3.307417136966251e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a940>
salience        : 3.30517505062744e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a9e0>
salience        : 3.301695323898457e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad300>
salience        : 3.301033939351328e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ade90>
salience        : 3.301033939351328e-05
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad760>
salience        : 3.3000749681377783e-05
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad850>
salience        : 3.3000749681377783e-05
wikipedia_url   : -
====================
name            : kingscrossn1c visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3a0>
salience        : 3.2976804504869506e-05
wikipedia_url   : -
====================
name            : wickeduk visitlondnon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dc10>
salience        : 3.29706963384524e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de40>
salience        : 3.292908877483569e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206da30>
salience        : 3.292411201982759e-05
wikipedia_url   : -
====================
name            : tubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d0d0>
salience        : 3.292403562227264e-05
wikipedia_url   : -
====================
name            : durhamresearch aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d2b0>
salience        : 3.2914558687480167e-05
wikipedia_url   : -
====================
name            : development planning
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d210>
salience        : 3.291434040875174e-05
wikipedia_url   : -
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db70>
salience        : 3.2897536584641784e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dee0>
salience        : 3.289548840257339e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206dd50>
salience        : 3.287748040747829e-05
wikipedia_url   : -
====================
name            : programme plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d3f0>
salience        : 3.2873103918973356e-05
wikipedia_url   : -
====================
name            : individuals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206db20>
salience        : 3.280057353549637e-05
wikipedia_url   : -
====================
name            : individuals
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be8f0>
salience        : 3.276973438914865e-05
wikipedia_url   : -
====================
name            : victoria bonedaddies visitlondnon stjameslondon
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bea30>
salience        : 3.272063622716814e-05
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220be210>
salience        : 3.262999598518945e-05
wikipedia_url   : -
====================
name            : flamingoflyway nightlife
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee90>
salience        : 3.262999598518945e-05
wikipedia_url   : -
====================
name            : tubes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bebc0>
salience        : 3.261470192228444e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b05d0>
salience        : 3.259901495766826e-05
wikipedia_url   : -
====================
name            : nightlife
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b00d0>
salience        : 3.2578856917098165e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0bc0>
salience        : 3.2561656553298235e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0170>
salience        : 3.2511496101506054e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0df0>
salience        : 3.25037217407953e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99bc0>
salience        : 3.2488616852788255e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e90>
salience        : 3.2351505069527775e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99a80>
salience        : 3.2351505069527775e-05
wikipedia_url   : -
====================
name            : station
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99080>
salience        : 3.2329702662536874e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99710>
salience        : 3.2291034585796297e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a998f0>
salience        : 3.2274285331368446e-05
wikipedia_url   : -
====================
name            : preview
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a993a0>
salience        : 3.224638930987567e-05
wikipedia_url   : -
====================
name            : bloombergservice southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99260>
salience        : 3.217321864212863e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a996c0>
salience        : 3.2146544981515035e-05
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a26c0>
salience        : 3.2140917028300464e-05
wikipedia_url   : -
====================
name            : commission
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2620>
salience        : 3.21274965244811e-05
wikipedia_url   : -
====================
name            : ceviche com southbanklondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2ad0>
salience        : 3.210708382539451e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2210>
salience        : 3.209335409337655e-05
wikipedia_url   : -
====================
name            : photoofthenight southbanklondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fcce490>
salience        : 3.209216447430663e-05
wikipedia_url   : -
====================
name            : gt gt state
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa850>
salience        : 3.2089803426060826e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa3f0>
salience        : 3.1890871468931437e-05
wikipedia_url   : -
====================
name            : lumiere 57 charlotte street w1t 4pd mikebloomberg
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa210>
salience        : 3.1882791518000886e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa440>
salience        : 3.1810752261662856e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa8a0>
salience        : 3.1810752261662856e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa800>
salience        : 3.1810752261662856e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77f80>
salience        : 3.1810752261662856e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77d00>
salience        : 3.18036945827771e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77440>
salience        : 3.18036945827771e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220898f0>
salience        : 3.1783256417838857e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089620>
salience        : 3.1783256417838857e-05
wikipedia_url   : -
====================
name            : destination
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089da0>
salience        : 3.1776678952155635e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089a80>
salience        : 3.1770210625836626e-05
wikipedia_url   : -
====================
name            : store street sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220893f0>
salience        : 3.176235986757092e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220895d0>
salience        : 3.175758683937602e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e40>
salience        : 3.175758683937602e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93e90>
salience        : 3.175758683937602e-05
wikipedia_url   : -
====================
name            : destination
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93170>
salience        : 3.173939694534056e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3620>
salience        : 3.172662036377005e-05
wikipedia_url   : -
====================
name            : dagenham kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3e40>
salience        : 3.1686351576354355e-05
wikipedia_url   : -
====================
name            : lampounette tilt king
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc30d0>
salience        : 3.164619920426048e-05
wikipedia_url   : -
====================
name            : festival kings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc3990>
salience        : 3.164198642480187e-05
wikipedia_url   : -
====================
name            : store street sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc35d0>
salience        : 3.1496838346356526e-05
wikipedia_url   : -
====================
name            : installations area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf350>
salience        : 3.148845644318499e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcfe90>
salience        : 3.1481067708227783e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf800>
salience        : 3.1481067708227783e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064120>
salience        : 3.147382085444406e-05
wikipedia_url   : -
====================
name            : sky brightnights gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064ee0>
salience        : 3.141749039059505e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22064e90>
salience        : 3.1403647881234065e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d9a80>
salience        : 3.138891406706534e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde78f0>
salience        : 3.132603887934238e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8bc0>
salience        : 3.129943070234731e-05
wikipedia_url   : -
====================
name            : installations area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e120>
salience        : 3.1277682865038514e-05
wikipedia_url   : -
====================
name            : area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209e1c0>
salience        : 3.12661832140293e-05
wikipedia_url   : -
====================
name            : cirquebijousumbrellas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220c5f80>
salience        : 3.126042793155648e-05
wikipedia_url   : -
====================
name            : cirquebijousumbrellas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a7df0>
salience        : 3.126042793155648e-05
wikipedia_url   : -
====================
name            : cirquebijousumbrellas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2207e7b0>
salience        : 3.120112887700088e-05
wikipedia_url   : -
====================
name            : check installation 7dialslondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2208cb70>
salience        : 3.1194434995995834e-05
wikipedia_url   : -
====================
name            : charing cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967850>
salience        : 3.1170253350865096e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967760>
salience        : 3.11635849357117e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967990>
salience        : 3.11635849357117e-05
wikipedia_url   : -
====================
name            : countdown lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220952b0>
salience        : 3.11635849357117e-05
wikipedia_url   : -
====================
name            : visitlondon scarlettroitman countdown lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095580>
salience        : 3.11635849357117e-05
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095260>
salience        : 3.1143310479819775e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ad0>
salience        : 3.111815749434754e-05
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958a0>
salience        : 3.1106181268114597e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095cb0>
salience        : 3.1047755328472704e-05
wikipedia_url   : -
====================
name            : tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095080>
salience        : 3.095387000939809e-05
wikipedia_url   : -
====================
name            : programme tfltravelales
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220958f0>
salience        : 3.0947867344366387e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095760>
salience        : 3.071291575906798e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095850>
salience        : 3.070379898417741e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095f80>
salience        : 3.068352452828549e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aa80>
salience        : 3.06315123452805e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8abc0>
salience        : 3.0620456527685747e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8acb0>
salience        : 3.061368624912575e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ada0>
salience        : 3.060784001718275e-05
wikipedia_url   : -
====================
name            : mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ae90>
salience        : 3.0606224754592404e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a080>
salience        : 3.060138624277897e-05
wikipedia_url   : -
====================
name            : installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a260>
salience        : 3.060138624277897e-05
wikipedia_url   : -
====================
name            : littlenansbar london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a490>
salience        : 3.0550043447874486e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a530>
salience        : 3.0439083275268786e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a5d0>
salience        : 3.0365341444849037e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a760>
salience        : 3.0336936106323265e-05
wikipedia_url   : -
====================
name            : destinos sal disfrutar de la luz
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a850>
salience        : 3.0319950383272953e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a8f0>
salience        : 3.02774478768697e-05
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a990>
salience        : 3.02774478768697e-05
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aa30>
salience        : 3.027157436008565e-05
wikipedia_url   : -
====================
name            : tasks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aad0>
salience        : 3.0259976483648643e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ac60>
salience        : 3.013444074895233e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a030>
salience        : 3.011705666722264e-05
wikipedia_url   : -
====================
name            : meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a210>
salience        : 3.0048409826122224e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a350>
salience        : 2.9976297810208052e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ad50>
salience        : 2.9938901207060553e-05
wikipedia_url   : -
====================
name            : menu glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de81c0>
salience        : 2.9874958272557706e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8120>
salience        : 2.9874958272557706e-05
wikipedia_url   : -
====================
name            : person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8300>
salience        : 2.985994069604203e-05
wikipedia_url   : -
====================
name            : menu glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de83f0>
salience        : 2.985994069604203e-05
wikipedia_url   : -
====================
name            : tales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8490>
salience        : 2.9845517929061316e-05
wikipedia_url   : -
====================
name            : granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de85d0>
salience        : 2.9845517929061316e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de86c0>
salience        : 2.9845517929061316e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8850>
salience        : 2.9778566386085004e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8990>
salience        : 2.977046460728161e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8ad0>
salience        : 2.9766133593511768e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8c60>
salience        : 2.9760074539808556e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8df0>
salience        : 2.9689010261790827e-05
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8ee0>
salience        : 2.9540688046836294e-05
wikipedia_url   : -
====================
name            : cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de80d0>
salience        : 2.9531736799981445e-05
wikipedia_url   : -
====================
name            : interest light cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8170>
salience        : 2.949940062535461e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de84e0>
salience        : 2.94917517749127e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8800>
salience        : 2.94769270112738e-05
wikipedia_url   : -
====================
name            : lumijuu cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de88a0>
salience        : 2.9469736546161585e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8cb0>
salience        : 2.9469736546161585e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8da0>
salience        : 2.940170088550076e-05
wikipedia_url   : -
====================
name            : pa spectacular
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8e90>
salience        : 2.9293261832208373e-05
wikipedia_url   : -
====================
name            : festival showcases
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8080>
salience        : 2.9192615329520777e-05
wikipedia_url   : -
====================
name            : coinstreet lumiere london south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de87b0>
salience        : 2.9091392207192257e-05
wikipedia_url   : -
====================
name            : visit bottle festoon installation south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8e40>
salience        : 2.9066393835819326e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8bc0>
salience        : 2.9066393835819326e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c120>
salience        : 2.904683060478419e-05
wikipedia_url   : -
====================
name            : flick switch london winterinlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3a0>
salience        : 2.9025342882960103e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c670>
salience        : 2.8867292712675408e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca30>
salience        : 2.8867292712675408e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cd50>
salience        : 2.8867292712675408e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c260>
salience        : 2.8867292712675408e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c8a0>
salience        : 2.8860888050985523e-05
wikipedia_url   : -
====================
name            : south bank king cross areas
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cad0>
salience        : 2.8860888050985523e-05
wikipedia_url   : -
====================
name            : festival trail timeoutlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c490>
salience        : 2.882472654164303e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cd00>
salience        : 2.879838939406909e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c5d0>
salience        : 2.8776221370208077e-05
wikipedia_url   : -
====================
name            : westminsterabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cc10>
salience        : 2.8776221370208077e-05
wikipedia_url   : -
====================
name            : pa interactive workshop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c210>
salience        : 2.871706965379417e-05
wikipedia_url   : -
====================
name            : westend
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c850>
salience        : 2.871706965379417e-05
wikipedia_url   : -
====================
name            : pa bottlefestoon chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c940>
salience        : 2.8517759346868843e-05
wikipedia_url   : -
====================
name            : shops restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ce40>
salience        : 2.8508829927886836e-05
wikipedia_url   : -
====================
name            : pa bottlefestoon chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c030>
salience        : 2.8502148779807612e-05
wikipedia_url   : -
====================
name            : pa bottlefestoon chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c3f0>
salience        : 2.8494599973782897e-05
wikipedia_url   : -
====================
name            : pa bottlefestoon chandeliers
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ce90>
salience        : 2.8494599973782897e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c170>
salience        : 2.8488844691310078e-05
wikipedia_url   : -
====================
name            : chandeliers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c2b0>
salience        : 2.8465947252698243e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c1c0>
salience        : 2.8465296054491773e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c0d0>
salience        : 2.8456846848712303e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db80d0>
salience        : 2.8456846848712303e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db81c0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8300>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8440>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db85d0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db86c0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db87b0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88f0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db89e0>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b20>
salience        : 2.8452699552872218e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c10>
salience        : 2.8428916266420856e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d00>
salience        : 2.8419728550943546e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ee0>
salience        : 2.828674223565031e-05
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f80>
salience        : 2.8210772143211216e-05
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8210>
salience        : 2.8139700589235872e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8490>
salience        : 2.805815529427491e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db84e0>
salience        : 2.8016625947202556e-05
wikipedia_url   : -
====================
name            : victoriabid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8850>
salience        : 2.8011023459839635e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8b70>
salience        : 2.7983182008028962e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e40>
salience        : 2.7983182008028962e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db82b0>
salience        : 2.794833380903583e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8760>
salience        : 2.793456587824039e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8580>
salience        : 2.7920123102376238e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21300>
salience        : 2.7920123102376238e-05
wikipedia_url   : -
====================
name            : businesses
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a219e0>
salience        : 2.7920123102376238e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21170>
salience        : 2.7884812880074605e-05
wikipedia_url   : -
====================
name            : project pa dance way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218a0>
salience        : 2.7831825718749315e-05
wikipedia_url   : -
====================
name            : river
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21080>
salience        : 2.7683921871357597e-05
wikipedia_url   : -
====================
name            : river
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21800>
salience        : 2.7675290766637772e-05
wikipedia_url   : -
====================
name            : dance aist
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a210d0>
salience        : 2.7590211175265722e-05
wikipedia_url   : -
====================
name            : inc londonafair aichoketrust havaslondon kings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e40>
salience        : 2.729063453443814e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21bc0>
salience        : 2.7144111300003715e-05
wikipedia_url   : -
====================
name            : sneak preview store
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21580>
salience        : 2.713659887376707e-05
wikipedia_url   : -
====================
name            : lcr wearewaterloouk encounter asalto london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21030>
salience        : 2.7134892661706544e-05
wikipedia_url   : -
====================
name            : lcr wearewaterloouk fonums london
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21120>
salience        : 2.7134892661706544e-05
wikipedia_url   : -
====================
name            : sneak preview store
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21850>
salience        : 2.7122068786411546e-05
wikipedia_url   : -
====================
name            : peek store
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21710>
salience        : 2.7122068786411546e-05
wikipedia_url   : -
====================
name            : peek store
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21760>
salience        : 2.7101405066787265e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21da0>
salience        : 2.710055559873581e-05
wikipedia_url   : -
====================
name            : sta
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21350>
salience        : 2.704074177017901e-05
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f80>
salience        : 2.7004152798326686e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a212b0>
salience        : 2.697031777643133e-05
wikipedia_url   : -
====================
name            : courses cocktail
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a216c0>
salience        : 2.697031777643133e-05
wikipedia_url   : -
====================
name            : city giant desk lamp
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21e90>
salience        : 2.695462535484694e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21490>
salience        : 2.6949852326652035e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d50>
salience        : 2.6938601877191104e-05
wikipedia_url   : -
====================
name            : peek store
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea20d0>
salience        : 2.6917196009890176e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2210>
salience        : 2.6860278012463823e-05
wikipedia_url   : -
====================
name            : facade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2350>
salience        : 2.6851686925510876e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2440>
salience        : 2.6822239306056872e-05
wikipedia_url   : -
====================
name            : lightinstallation kingscrossn1c musicinstallation
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2580>
salience        : 2.6821280698641203e-05
wikipedia_url   : -
====================
name            : lightinstallation kingscrossn1c goldshi9 kingscrossn1c chelvanstanmore
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea26c0>
salience        : 2.6821280698641203e-05
wikipedia_url   : -
====================
name            : simeon nelson
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea28a0>
salience        : 2.676111580512952e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Simeon_Nelson
====================
name            : cavalry bar lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2990>
salience        : 2.674788993317634e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2b20>
salience        : 2.673591188795399e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2d50>
salience        : 2.6720595997176133e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2120>
salience        : 2.6713199986261316e-05
wikipedia_url   : -
====================
name            : colin pearce
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2710>
salience        : 2.6666455596568994e-05
wikipedia_url   : -
====================
name            : embspainuk oppounity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea28f0>
salience        : 2.6666029953048564e-05
wikipedia_url   : -
====================
name            : south bank bid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2ad0>
salience        : 2.6635678295861e-05
wikipedia_url   : -
====================
name            : south bank bid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2bc0>
salience        : 2.6635678295861e-05
wikipedia_url   : -
====================
name            : south bank bid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2da0>
salience        : 2.6635678295861e-05
wikipedia_url   : -
====================
name            : tomcopley londonassembly ldn_gov londonisopen mylocalculture hoy comienza el festival de la luz en londres más de 50 obras transformando la ciudad
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2f80>
salience        : 2.6627796614775434e-05
wikipedia_url   : -
====================
name            : sea containers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2030>
salience        : 2.660752033989411e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea23a0>
salience        : 2.6546909793978557e-05
wikipedia_url   : -
====================
name            : street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea29e0>
salience        : 2.6535206416156143e-05
wikipedia_url   : -
====================
name            : regent street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2080>
salience        : 2.6535206416156143e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2670>
salience        : 2.6530144168646075e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2b70>
salience        : 2.6530144168646075e-05
wikipedia_url   : -
====================
name            : piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2850>
salience        : 2.650906208145898e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a400d0>
salience        : 2.6443616661708802e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40350>
salience        : 2.6411755243316293e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40580>
salience        : 2.6389319828012958e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40710>
salience        : 2.6389319828012958e-05
wikipedia_url   : -
====================
name            : flood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a408a0>
salience        : 2.6389319828012958e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ad0>
salience        : 2.6333798814448528e-05
wikipedia_url   : -
====================
name            : set menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40df0>
salience        : 2.6258539946866222e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40080>
salience        : 2.623698856041301e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40300>
salience        : 2.623698856041301e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403a0>
salience        : 2.6234380129608326e-05
wikipedia_url   : -
====================
name            : town
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40670>
salience        : 2.62237990682479e-05
wikipedia_url   : -
====================
name            : plan trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b20>
salience        : 2.6222187443636358e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c10>
salience        : 2.6186717150267214e-05
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e40>
salience        : 2.6183410227531567e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル southbanklondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40440>
salience        : 2.6158724722336046e-05
wikipedia_url   : -
====================
name            : dot installation king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40850>
salience        : 2.608905197121203e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40530>
salience        : 2.6052643079310656e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40800>
salience        : 2.5977613404393196e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40b70>
salience        : 2.594274155853782e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb2b0>
salience        : 2.5925088266376406e-05
wikipedia_url   : -
====================
name            : light festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb210>
salience        : 2.5925088266376406e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb5d0>
salience        : 2.5906050723278895e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb7b0>
salience        : 2.5895264116115868e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb9e0>
salience        : 2.5892179110087454e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb260>
salience        : 2.5889923563227057e-05
wikipedia_url   : -
====================
name            : streets buildings amp places
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debb70>
salience        : 2.5885465220198967e-05
wikipedia_url   : -
====================
name            : screenings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debbc0>
salience        : 2.587948984000832e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb620>
salience        : 2.58739401033381e-05
wikipedia_url   : -
====================
name            : performance student
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debc10>
salience        : 2.586365008028224e-05
wikipedia_url   : -
====================
name            : performance student
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debe40>
salience        : 2.586365008028224e-05
wikipedia_url   : -
====================
name            : senor ceviche com tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb300>
salience        : 2.5836072381935082e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098030>
salience        : 2.576699262135662e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a30>
salience        : 2.5685705622890964e-05
wikipedia_url   : -
====================
name            : haskell
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098170>
salience        : 2.5657631340436637e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098990>
salience        : 2.5655568606453016e-05
wikipedia_url   : -
====================
name            : pricelesslondon rotundalondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098940>
salience        : 2.563364068919327e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098710>
salience        : 2.554566162871197e-05
wikipedia_url   : -
====================
name            : landscapes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098120>
salience        : 2.5475390430074185e-05
wikipedia_url   : -
====================
name            : gt brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220989e0>
salience        : 2.5445440769544803e-05
wikipedia_url   : -
====================
name            : information
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098bc0>
salience        : 2.5336812541354448e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220982b0>
salience        : 2.5328741685370915e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098a80>
salience        : 2.5286508389399387e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098850>
salience        : 2.5286508389399387e-05
wikipedia_url   : -
====================
name            : tips
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081a80>
salience        : 2.5265029762522317e-05
wikipedia_url   : -
====================
name            : preview performance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081530>
salience        : 2.5238541638827883e-05
wikipedia_url   : -
====================
name            : display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220818f0>
salience        : 2.5226108846254647e-05
wikipedia_url   : -
====================
name            : concerns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081710>
salience        : 2.520323687349446e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220816c0>
salience        : 2.5076944439206272e-05
wikipedia_url   : -
====================
name            : entrance
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081800>
salience        : 2.5060757252504118e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081440>
salience        : 2.5060757252504118e-05
wikipedia_url   : -
====================
name            : face change skull star
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220819e0>
salience        : 2.505666452634614e-05
wikipedia_url   : -
====================
name            : umbrella display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220813a0>
salience        : 2.504204894648865e-05
wikipedia_url   : -
====================
name            : visitlondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081c10>
salience        : 2.5039831598405726e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081670>
salience        : 2.5033110432559624e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081620>
salience        : 2.5033110432559624e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18490>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18760>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a189e0>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18c10>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18df0>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18120>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a183f0>
salience        : 2.5024424758157693e-05
wikipedia_url   : -
====================
name            : waterstonespicc
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18530>
salience        : 2.4964550902950577e-05
wikipedia_url   : -
====================
name            : lomographyuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18a30>
salience        : 2.496072556823492e-05
wikipedia_url   : -
====================
name            : journeys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18f30>
salience        : 2.4951601517386734e-05
wikipedia_url   : -
====================
name            : visitlondon kingscrossn1c
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a185d0>
salience        : 2.4937546186265536e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a183a0>
salience        : 2.493545616744086e-05
wikipedia_url   : -
====================
name            : advice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46080>
salience        : 2.4923007003962994e-05
wikipedia_url   : -
====================
name            : advice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46260>
salience        : 2.4923007003962994e-05
wikipedia_url   : -
====================
name            : come work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46490>
salience        : 2.4861801648512483e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a465d0>
salience        : 2.481313822499942e-05
wikipedia_url   : -
====================
name            : culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a468a0>
salience        : 2.4811944967950694e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46b70>
salience        : 2.4787095753708854e-05
wikipedia_url   : -
====================
name            : story
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46c10>
salience        : 2.4782362743280828e-05
wikipedia_url   : -
====================
name            : astervictoria visitlondnon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46e90>
salience        : 2.475688415870536e-05
wikipedia_url   : -
====================
name            : preview
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a468f0>
salience        : 2.4712131562409922e-05
wikipedia_url   : -
====================
name            : journeys
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46df0>
salience        : 2.4669225240359083e-05
wikipedia_url   : -
====================
name            : show end
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a463f0>
salience        : 2.4616725568193942e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46580>
salience        : 2.4584485800005496e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220ad990>
salience        : 2.4584485800005496e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d620>
salience        : 2.4577524527558126e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206de90>
salience        : 2.4570721507188864e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb70>
salience        : 2.4557564756833017e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bef30>
salience        : 2.4551198293920606e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0440>
salience        : 2.4551198293920606e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0d00>
salience        : 2.4544015104766004e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0da0>
salience        : 2.45389346673619e-05
wikipedia_url   : -
====================
name            : architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0030>
salience        : 2.45389346673619e-05
wikipedia_url   : -
====================
name            : landmarks
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99cb0>
salience        : 2.4538856450817548e-05
wikipedia_url   : -
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a992b0>
salience        : 2.4527003915864043e-05
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99df0>
salience        : 2.4504412067472003e-05
wikipedia_url   : -
====================
name            : granarysquare run volunteer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99490>
salience        : 2.4504412067472003e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2120>
salience        : 2.4412182028754614e-05
wikipedia_url   : -
====================
name            : landscape
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2e90>
salience        : 2.439144554955419e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc7670>
salience        : 2.438159572193399e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa620>
salience        : 2.4328517611138523e-05
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77b20>
salience        : 2.4305167244165204e-05
wikipedia_url   : -
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089d50>
salience        : 2.4305167244165204e-05
wikipedia_url   : -
====================
name            : victoriabid lovelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ee0>
salience        : 2.427240542601794e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089ad0>
salience        : 2.4259768906631507e-05
wikipedia_url   : -
====================
name            : carnaby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a931c0>
salience        : 2.422093712084461e-05
wikipedia_url   : -
====================
name            : works
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a939e0>
salience        : 2.4175755243049935e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf120>
salience        : 2.4158636733773164e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9620>
salience        : 2.4142078473232687e-05
wikipedia_url   : -
====================
name            : scale projection
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220d6d00>
salience        : 2.407068677712232e-05
wikipedia_url   : -
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2209ee90>
salience        : 2.4051179934758693e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220cee40>
salience        : 2.4002554710023105e-05
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095b70>
salience        : 2.4002554710023105e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095df0>
salience        : 2.398374090262223e-05
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220950d0>
salience        : 2.3974056603037752e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095800>
salience        : 2.3965725631569512e-05
wikipedia_url   : -
====================
name            : office
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095170>
salience        : 2.396088166278787e-05
wikipedia_url   : -
====================
name            : 美術館に変えます 英国のホテル oxfordstreetw1
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095e40>
salience        : 2.3957330995472148e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095030>
salience        : 2.3942842744872905e-05
wikipedia_url   : -
====================
name            : hot chocolate loads
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a440>
salience        : 2.39277578657493e-05
wikipedia_url   : -
====================
name            : lovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a710>
salience        : 2.385941297688987e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ac10>
salience        : 2.3852331651141867e-05
wikipedia_url   : -
====================
name            : map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ad00>
salience        : 2.3852331651141867e-05
wikipedia_url   : -
====================
name            : guide help lovecamden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8af30>
salience        : 2.3845419491408393e-05
wikipedia_url   : -
====================
name            : office lovecamden
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a3f0>
salience        : 2.3838669221731834e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d00>
salience        : 2.383206992817577e-05
wikipedia_url   : -
====================
name            : road closures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a409e0>
salience        : 2.3814709493308328e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40120>
salience        : 2.3813132429495454e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40d50>
salience        : 2.3813132429495454e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a403f0>
salience        : 2.3795357265044004e-05
wikipedia_url   : -
====================
name            : pas tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40ee0>
salience        : 2.3690958187216893e-05
wikipedia_url   : -
====================
name            : rambe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40bc0>
salience        : 2.36860378208803e-05
wikipedia_url   : -
====================
name            : taste
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f80>
salience        : 2.364524880249519e-05
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40940>
salience        : 2.3631546355318278e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40170>
salience        : 2.3621736545464955e-05
wikipedia_url   : -
====================
name            : umbrella display waplacemaking
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a170>
salience        : 2.3620452338946052e-05
wikipedia_url   : -
====================
name            : loveshareenjoy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a300>
salience        : 2.3597147446707822e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a5d0>
salience        : 2.3487144062528387e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8f0>
salience        : 2.3473368855775334e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac10>
salience        : 2.3473368855775334e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aee0>
salience        : 2.347002737224102e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3f0>
salience        : 2.3456914277630858e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2abc0>
salience        : 2.3456914277630858e-05
wikipedia_url   : -
====================
name            : bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae40>
salience        : 2.345387838431634e-05
wikipedia_url   : -
====================
name            : bus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a030>
salience        : 2.345387838431634e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa30>
salience        : 2.345027132832911e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a2b0>
salience        : 2.345027132832911e-05
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a9e0>
salience        : 2.343743653909769e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a620>
salience        : 2.3414626411977224e-05
wikipedia_url   : -
====================
name            : visitors installation leakestreet
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2af30>
salience        : 2.3390388378174976e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab20>
salience        : 2.3372382202069275e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a990>
salience        : 2.3363789296126924e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a080>
salience        : 2.3354812583420426e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a530>
salience        : 2.335144927201327e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad00>
salience        : 2.335144927201327e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a850>
salience        : 2.335144927201327e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a0d0>
salience        : 2.3147062165662646e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ae90>
salience        : 2.3120679543353617e-05
wikipedia_url   : -
====================
name            : tube network
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a210>
salience        : 2.3120679543353617e-05
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a7b0>
salience        : 2.308882358192932e-05
wikipedia_url   : -
====================
name            : light displays
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17030>
salience        : 2.3086586224962957e-05
wikipedia_url   : -
====================
name            : performances
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17170>
salience        : 2.3064541892381385e-05
wikipedia_url   : -
====================
name            : photography
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17210>
salience        : 2.3064541892381385e-05
wikipedia_url   : -
====================
name            : camden lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17300>
salience        : 2.3049889932735823e-05
wikipedia_url   : -
====================
name            : builders
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17490>
salience        : 2.3015372789814137e-05
wikipedia_url   : -
====================
name            : theo walcott museumselfieday youtubepanerprogram chenor poetasfood visitthecity
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17580>
salience        : 2.300225241924636e-05
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17760>
salience        : 2.300034429936204e-05
wikipedia_url   : -
====================
name            : work find programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b177b0>
salience        : 2.2980646463111043e-05
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b178a0>
salience        : 2.297083119628951e-05
wikipedia_url   : -
====================
name            : work find programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b178f0>
salience        : 2.297083119628951e-05
wikipedia_url   : -
====================
name            : durham
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17b20>
salience        : 2.2842708858661354e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Durham,_England
====================
name            : festival leakestarches
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17bc0>
salience        : 2.2825779524282552e-05
wikipedia_url   : -
====================
name            : carnaby book dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17c10>
salience        : 2.279231557622552e-05
wikipedia_url   : -
====================
name            : theo walcott museumselfieday youtubepanerprogram chenor poetasfood gt
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17cb0>
salience        : 2.273788777529262e-05
wikipedia_url   : -
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17da0>
salience        : 2.2713455109624192e-05
wikipedia_url   : -
====================
name            : trip thamesclippers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17ee0>
salience        : 2.2712198187946342e-05
wikipedia_url   : -
====================
name            : thamesclippers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17f80>
salience        : 2.2709071345161647e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17080>
salience        : 2.264263639517594e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17350>
salience        : 2.2636073481407948e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17530>
salience        : 2.2636073481407948e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b173f0>
salience        : 2.2636073481407948e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17670>
salience        : 2.2629665181739256e-05
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b176c0>
salience        : 2.2629665181739256e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17800>
salience        : 2.2629665181739256e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b179e0>
salience        : 2.2629665181739256e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17a80>
salience        : 2.2629665181739256e-05
wikipedia_url   : -
====================
name            : thamesriverserv
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17b70>
salience        : 2.261727786390111e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17df0>
salience        : 2.261727786390111e-05
wikipedia_url   : -
====================
name            : experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82030>
salience        : 2.261727786390111e-05
wikipedia_url   : -
====================
name            : soho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e820d0>
salience        : 2.261727786390111e-05
wikipedia_url   : -
====================
name            : panership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e823f0>
salience        : 2.2614069166593254e-05
wikipedia_url   : -
====================
name            : 想像し ロンドンの街を 夜間美術館に変えます 英国のホテル carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e826c0>
salience        : 2.2606345737585798e-05
wikipedia_url   : -
====================
name            : dream
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828a0>
salience        : 2.26054235099582e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82cb0>
salience        : 2.25936764763901e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e90>
salience        : 2.257784944958985e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82120>
salience        : 2.257784944958985e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e825d0>
salience        : 2.257784944958985e-05
wikipedia_url   : -
====================
name            : street plug
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e828f0>
salience        : 2.2570642613573e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル euro_tour 光の祭典 ルミエール ロンドン
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c60>
salience        : 2.253353886771947e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82da0>
salience        : 2.2481255655293353e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e821c0>
salience        : 2.246771146019455e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a30>
salience        : 2.246771146019455e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d00>
salience        : 2.24521427298896e-05
wikipedia_url   : -
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82080>
salience        : 2.2447717128670774e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82170>
salience        : 2.24319810513407e-05
wikipedia_url   : -
====================
name            : city staing
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82940>
salience        : 2.2423733753385022e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82d50>
salience        : 2.2423733753385022e-05
wikipedia_url   : -
====================
name            : tube network aichoketrust experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f30>
salience        : 2.2423733753385022e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82990>
salience        : 2.241573020000942e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82f80>
salience        : 2.241573020000942e-05
wikipedia_url   : -
====================
name            : city staing
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82800>
salience        : 2.2400392481358722e-05
wikipedia_url   : -
====================
name            : city staing
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82530>
salience        : 2.2400392481358722e-05
wikipedia_url   : -
====================
name            : dreams
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e827b0>
salience        : 2.239303466922138e-05
wikipedia_url   : -
====================
name            : umbrella display thamesclippers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82df0>
salience        : 2.2385871488950215e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e829e0>
salience        : 2.2333202650770545e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229dbe40>
salience        : 2.2323436496662907e-05
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229dbdf0>
salience        : 2.2323436496662907e-05
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8030>
salience        : 2.2323436496662907e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd81c0>
salience        : 2.2320258722174913e-05
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd83f0>
salience        : 2.2320258722174913e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd84e0>
salience        : 2.2301930584944785e-05
wikipedia_url   : -
====================
name            : specialities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8620>
salience        : 2.2301930584944785e-05
wikipedia_url   : -
====================
name            : awork
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd86c0>
salience        : 2.222270268248394e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd87b0>
salience        : 2.2214639102458023e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8990>
salience        : 2.2200692910701036e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8b20>
salience        : 2.2187672584550455e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8d00>
salience        : 2.2184512999956496e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8ee0>
salience        : 2.2184512999956496e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd83a0>
salience        : 2.2184512999956496e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8670>
salience        : 2.217525070591364e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8a30>
salience        : 2.217525070591364e-05
wikipedia_url   : -
====================
name            : tube lines stations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8b70>
salience        : 2.217525070591364e-05
wikipedia_url   : -
====================
name            : tube lines stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8cb0>
salience        : 2.217525070591364e-05
wikipedia_url   : -
====================
name            : wave
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8df0>
salience        : 2.2165135305840522e-05
wikipedia_url   : -
====================
name            : highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8300>
salience        : 2.2159621948958375e-05
wikipedia_url   : -
====================
name            : river thames
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8260>
salience        : 2.2131627702037804e-05
wikipedia_url   : https://en.wikipedia.org/wiki/River_Thames
====================
name            : church
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8ad0>
salience        : 2.212012441304978e-05
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18a0>
salience        : 2.210725324403029e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f30>
salience        : 2.2056512534618378e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13a0>
salience        : 2.2056512534618378e-05
wikipedia_url   : -
====================
name            : evening wave
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1bc0>
salience        : 2.203570147685241e-05
wikipedia_url   : -
====================
name            : office desk lamp giant size
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1760>
salience        : 2.203570147685241e-05
wikipedia_url   : -
====================
name            : face change skull star
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d50>
salience        : 2.2014182832208462e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb15d0>
salience        : 2.199256960011553e-05
wikipedia_url   : -
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1260>
salience        : 2.1984718841849826e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1d00>
salience        : 2.1905791072640568e-05
wikipedia_url   : -
====================
name            : show
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1990>
salience        : 2.1904521418036893e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1670>
salience        : 2.180449700972531e-05
wikipedia_url   : -
====================
name            : sky brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1210>
salience        : 2.1790485334349796e-05
wikipedia_url   : -
====================
name            : sky brightnights
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1c60>
salience        : 2.1790485334349796e-05
wikipedia_url   : -
====================
name            : fitzroviachapel map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb16c0>
salience        : 2.1785974240629002e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1300>
salience        : 2.1773865228169598e-05
wikipedia_url   : -
====================
name            : fitzroviachapel map
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1080>
salience        : 2.1760411982540973e-05
wikipedia_url   : -
====================
name            : rose window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1cb0>
salience        : 2.1759433366241865e-05
wikipedia_url   : -
====================
name            : sky brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a30>
salience        : 2.175638292101212e-05
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1850>
salience        : 2.1728614228777587e-05
wikipedia_url   : -
====================
name            : aichoketrust book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1030>
salience        : 2.1728614228777587e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1a80>
salience        : 2.170101652154699e-05
wikipedia_url   : -
====================
name            : window
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1170>
salience        : 2.1550598830799572e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1530>
salience        : 2.150877844542265e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1940>
salience        : 2.142802441085223e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb18f0>
salience        : 2.142117045877967e-05
wikipedia_url   : -
====================
name            : highlight
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb10d0>
salience        : 2.142117045877967e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48a0>
salience        : 2.1345895220292732e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c60>
salience        : 2.1336451027309522e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd48f0>
salience        : 2.133337693521753e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ee0>
salience        : 2.133337693521753e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4710>
salience        : 2.133337693521753e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b70>
salience        : 2.133337693521753e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d00>
salience        : 2.133337693521753e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4300>
salience        : 2.1330339222913608e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4da0>
salience        : 2.1330339222913608e-05
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4580>
salience        : 2.1330339222913608e-05
wikipedia_url   : -
====================
name            : way
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4490>
salience        : 2.126068648067303e-05
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8030>
salience        : 2.1237246983218938e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de83a0>
salience        : 2.121672878274694e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8620>
salience        : 2.121184479619842e-05
wikipedia_url   : -
====================
name            : lumierelondon 7dialslondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de88f0>
salience        : 2.1110276065883227e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8b70>
salience        : 2.108764419972431e-05
wikipedia_url   : -
====================
name            : family
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8f80>
salience        : 2.108571607095655e-05
wikipedia_url   : -
====================
name            : lightuplondon centralline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8350>
salience        : 2.1079653379274532e-05
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8440>
salience        : 2.1067491616122425e-05
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8670>
salience        : 2.1067491616122425e-05
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de89e0>
salience        : 2.105462408508174e-05
wikipedia_url   : -
====================
name            : family
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8a80>
salience        : 2.1046393158030696e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8940>
salience        : 2.1036323232692666e-05
wikipedia_url   : -
====================
name            : route
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8f30>
salience        : 2.101436439261306e-05
wikipedia_url   : -
====================
name            : south bank nationaltheatre
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c300>
salience        : 2.0959867470082827e-05
wikipedia_url   : -
====================
name            : ticket life sho edvaizey glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c4e0>
salience        : 2.0947682060068473e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c7b0>
salience        : 2.078472971334122e-05
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cee0>
salience        : 2.0763231077580713e-05
wikipedia_url   : -
====================
name            : aichoketrust book pricelesslondon festival stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0ca80>
salience        : 2.0760910047101788e-05
wikipedia_url   : -
====================
name            : bottlefestoonproject thisisredbridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c6c0>
salience        : 2.0755291188834235e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c080>
salience        : 2.0739145838888362e-05
wikipedia_url   : -
====================
name            : triptych leakestreet head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c350>
salience        : 2.0733985365950502e-05
wikipedia_url   : -
====================
name            : interest head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cda0>
salience        : 2.0719109670608304e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c9e0>
salience        : 2.06853528652573e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb20>
salience        : 2.0676860003732145e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c760>
salience        : 2.0676860003732145e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c800>
salience        : 2.0672719983849674e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8170>
salience        : 2.0672719983849674e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8260>
salience        : 2.0660691006924026e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83a0>
salience        : 2.0660691006924026e-05
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8530>
salience        : 2.065297849185299e-05
wikipedia_url   : -
====================
name            : installation mayor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8710>
salience        : 2.06094300665427e-05
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a80>
salience        : 2.0607019905583e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8df0>
salience        : 2.057033452729229e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8f30>
salience        : 2.056319863186218e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8120>
salience        : 2.0542935089906678e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8670>
salience        : 2.0342622519819997e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8a30>
salience        : 2.033896635111887e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8da0>
salience        : 2.033896635111887e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db83f0>
salience        : 2.033896635111887e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8c60>
salience        : 2.0335361114121042e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8d50>
salience        : 2.0335361114121042e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21530>
salience        : 2.0331808627815917e-05
wikipedia_url   : -
====================
name            : room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c60>
salience        : 2.0330653569544666e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21d00>
salience        : 2.0321445845183916e-05
wikipedia_url   : -
====================
name            : south bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a30>
salience        : 2.031935036939103e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a217b0>
salience        : 2.031808799074497e-05
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213a0>
salience        : 2.0312114429543726e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ee0>
salience        : 2.031150143011473e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a211c0>
salience        : 2.030508767347783e-05
wikipedia_url   : -
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a218f0>
salience        : 2.0301940821809694e-05
wikipedia_url   : -
====================
name            : pa festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b20>
salience        : 2.0301940821809694e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21a80>
salience        : 2.0283412595745176e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21f30>
salience        : 2.027122536674142e-05
wikipedia_url   : -
====================
name            : pedals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea22b0>
salience        : 2.025870344368741e-05
wikipedia_url   : -
====================
name            : pedal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea23f0>
salience        : 2.025870344368741e-05
wikipedia_url   : -
====================
name            : town dinner amp drinks
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2620>
salience        : 2.0252689864719287e-05
wikipedia_url   : -
====================
name            : cocktails
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2800>
salience        : 2.0249759472790174e-05
wikipedia_url   : -
====================
name            : tales
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2a80>
salience        : 2.0246821804903448e-05
wikipedia_url   : -
====================
name            : tales
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2c60>
salience        : 2.0230008885846473e-05
wikipedia_url   : -
====================
name            : sun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2e40>
salience        : 2.0230008885846473e-05
wikipedia_url   : -
====================
name            : sun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2f30>
salience        : 2.0224650143063627e-05
wikipedia_url   : -
====================
name            : event experience capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2530>
salience        : 2.0218021745677106e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2490>
salience        : 2.0212666640873067e-05
wikipedia_url   : -
====================
name            : gasholderldn beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2cb0>
salience        : 2.0204313841531985e-05
wikipedia_url   : -
====================
name            : spirit installation umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2df0>
salience        : 2.0194742319290526e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2260>
salience        : 2.0190092982375063e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2940>
salience        : 2.0173756638541818e-05
wikipedia_url   : -
====================
name            : lights london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea25d0>
salience        : 2.0166657122899778e-05
wikipedia_url   : -
====================
name            : festival london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb490>
salience        : 2.0143314031884074e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb030>
salience        : 2.013551420532167e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deba80>
salience        : 2.013551420532167e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb3f0>
salience        : 2.013551420532167e-05
wikipedia_url   : -
====================
name            : festival london
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb990>
salience        : 2.0133951693424024e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098b20>
salience        : 2.009622949117329e-05
wikipedia_url   : -
====================
name            : enjoyfitzrovia
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220988f0>
salience        : 2.0071876861038618e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098c10>
salience        : 2.006426984735299e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098da0>
salience        : 2.006426984735299e-05
wikipedia_url   : -
====================
name            : tales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098ad0>
salience        : 2.005689384532161e-05
wikipedia_url   : -
====================
name            : fairy tale
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098800>
salience        : 2.005689384532161e-05
wikipedia_url   : -
====================
name            : town dinner amp drinks
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081030>
salience        : 2.005689384532161e-05
wikipedia_url   : -
====================
name            : glass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081e40>
salience        : 2.0036013665958308e-05
wikipedia_url   : -
====================
name            : installations test
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220810d0>
salience        : 2.001866596401669e-05
wikipedia_url   : -
====================
name            : buckholtz
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081210>
salience        : 2.0008264982607216e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081760>
salience        : 1.9965147657785565e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18620>
salience        : 1.995443381019868e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18bc0>
salience        : 1.99500846065348e-05
wikipedia_url   : -
====================
name            : spirit installation aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18ee0>
salience        : 1.9937198885600083e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a188f0>
salience        : 1.9899402104783803e-05
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18c60>
salience        : 1.9882689230144024e-05
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46120>
salience        : 1.9876779333571903e-05
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46710>
salience        : 1.9872593838954344e-05
wikipedia_url   : -
====================
name            : makeover
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46b20>
salience        : 1.9868481103912927e-05
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46620>
salience        : 1.9868481103912927e-05
wikipedia_url   : -
====================
name            : book
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46f30>
salience        : 1.985269227589015e-05
wikipedia_url   : -
====================
name            : chance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46da0>
salience        : 1.984876325877849e-05
wikipedia_url   : -
====================
name            : perspectives
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d990>
salience        : 1.974307269847486e-05
wikipedia_url   : -
====================
name            : london
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220bee40>
salience        : 1.9650060494313948e-05
wikipedia_url   : -
====================
name            : catch bit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0670>
salience        : 1.9649072783067822e-05
wikipedia_url   : -
====================
name            : monument
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0cb0>
salience        : 1.9644374333438464e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99e40>
salience        : 1.9595641788328066e-05
wikipedia_url   : -
====================
name            : country lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a994e0>
salience        : 1.9595641788328066e-05
wikipedia_url   : -
====================
name            : river lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99760>
salience        : 1.958864595508203e-05
wikipedia_url   : -
====================
name            : river lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a991c0>
salience        : 1.958864595508203e-05
wikipedia_url   : -
====================
name            : festival light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99350>
salience        : 1.9585222617024556e-05
wikipedia_url   : -
====================
name            : country lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2da0>
salience        : 1.9585222617024556e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2710>
salience        : 1.957200584001839e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a2850>
salience        : 1.957200584001839e-05
wikipedia_url   : -
====================
name            : river lights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa2b0>
salience        : 1.956881351361517e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa580>
salience        : 1.956881351361517e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdaa760>
salience        : 1.9565661204978824e-05
wikipedia_url   : -
====================
name            : light
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e77cb0>
salience        : 1.9562552552088164e-05
wikipedia_url   : -
====================
name            : perspectives
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e773f0>
salience        : 1.9561839508241974e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089760>
salience        : 1.9543958842405118e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a93d00>
salience        : 1.9527911717887037e-05
wikipedia_url   : -
====================
name            : bucket list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdcf7b0>
salience        : 1.947899909282569e-05
wikipedia_url   : -
====================
name            : bucket list
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fde7030>
salience        : 1.9472769054118544e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22067b70>
salience        : 1.9459530449239537e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22967cb0>
salience        : 1.9438315575825982e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8aee0>
salience        : 1.9430335669312626e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a300>
salience        : 1.942644485097844e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a580>
salience        : 1.942644485097844e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ab20>
salience        : 1.942644485097844e-05
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a170>
salience        : 1.941149093909189e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40210>
salience        : 1.9297829567221925e-05
wikipedia_url   : -
====================
name            : london bars
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40990>
salience        : 1.929009158629924e-05
wikipedia_url   : -
====================
name            : staing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40f30>
salience        : 1.9281264030723833e-05
wikipedia_url   : -
====================
name            : cruises
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a404e0>
salience        : 1.919531132443808e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40da0>
salience        : 1.9180708477506414e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a30>
salience        : 1.9168332073604688e-05
wikipedia_url   : -
====================
name            : sleeps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40cb0>
salience        : 1.9167360733263195e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4bc0>
salience        : 1.91633625945542e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd46c0>
salience        : 1.91633625945542e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4f30>
salience        : 1.91633625945542e-05
wikipedia_url   : -
====================
name            : offers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4c10>
salience        : 1.915970460686367e-05
wikipedia_url   : -
====================
name            : heritage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4990>
salience        : 1.914553104143124e-05
wikipedia_url   : -
====================
name            : everything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4b20>
salience        : 1.907260957523249e-05
wikipedia_url   : -
====================
name            : roses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4670>
salience        : 1.9058372345170937e-05
wikipedia_url   : -
====================
name            : suppo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd45d0>
salience        : 1.905381395772565e-05
wikipedia_url   : -
====================
name            : capital
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e90>
salience        : 1.9046618035645224e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4760>
salience        : 1.9031049305340275e-05
wikipedia_url   : -
====================
name            : member staff
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd44e0>
salience        : 1.8973942133015953e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4800>
salience        : 1.8970813471241854e-05
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd43a0>
salience        : 1.8964612536365166e-05
wikipedia_url   : -
====================
name            : interest head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1030>
salience        : 1.8959774024551734e-05
wikipedia_url   : -
====================
name            : london sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd10d0>
salience        : 1.8956417989102192e-05
wikipedia_url   : -
====================
name            : sadiqkhan
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd11c0>
salience        : 1.8948503566207364e-05
wikipedia_url   : -
====================
name            : visitlondnon sneak peek
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1210>
salience        : 1.889961822598707e-05
wikipedia_url   : -
====================
name            : impoant question everybody
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd12b0>
salience        : 1.8893410015152767e-05
wikipedia_url   : -
====================
name            : housing sight coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1300>
salience        : 1.8893410015152767e-05
wikipedia_url   : -
====================
name            : lovelondon tflbusales
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1350>
salience        : 1.8893410015152767e-05
wikipedia_url   : -
====================
name            : tflbusales
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1440>
salience        : 1.8875734895118512e-05
wikipedia_url   : -
====================
name            : leake street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1530>
salience        : 1.8850481865229085e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Leake_Street
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd15d0>
salience        : 1.8829516193363816e-05
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1670>
salience        : 1.8818383978214115e-05
wikipedia_url   : -
====================
name            : area business environment lampounette
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1710>
salience        : 1.8777682271320373e-05
wikipedia_url   : -
====================
name            : meal gt tflbusales
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1760>
salience        : 1.864465775724966e-05
wikipedia_url   : -
====================
name            : lumierelondon culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd17b0>
salience        : 1.8617816749610938e-05
wikipedia_url   : -
====================
name            : culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1850>
salience        : 1.8617816749610938e-05
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd18f0>
salience        : 1.8615002773003653e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd19e0>
salience        : 1.8609478502185084e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1ad0>
salience        : 1.8609478502185084e-05
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1bc0>
salience        : 1.8609478502185084e-05
wikipedia_url   : -
====================
name            : culture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1c60>
salience        : 1.8586162696010433e-05
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1d00>
salience        : 1.8547269064583816e-05
wikipedia_url   : -
====================
name            : lcr wearewaterloouk aboutlondon uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1da0>
salience        : 1.852336572483182e-05
wikipedia_url   : -
====================
name            : visitlondon aboutlondon uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1e40>
salience        : 1.852336572483182e-05
wikipedia_url   : -
====================
name            : tube network bbclondonnews festival light returns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1e90>
salience        : 1.8522183381719515e-05
wikipedia_url   : -
====================
name            : book tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1ee0>
salience        : 1.8517997887101956e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1f30>
salience        : 1.8517997887101956e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1f80>
salience        : 1.8517997887101956e-05
wikipedia_url   : -
====================
name            : food drink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac080>
salience        : 1.8517997887101956e-05
wikipedia_url   : -
====================
name            : check
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac0d0>
salience        : 1.8516338968765922e-05
wikipedia_url   : -
====================
name            : tube network switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac120>
salience        : 1.8513888790039346e-05
wikipedia_url   : -
====================
name            : kentishtowner beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac1c0>
salience        : 1.8513888790039346e-05
wikipedia_url   : -
====================
name            : launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac260>
salience        : 1.8498161807656288e-05
wikipedia_url   : -
====================
name            : beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac350>
salience        : 1.8490691218175925e-05
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac3f0>
salience        : 1.8483462554286234e-05
wikipedia_url   : -
====================
name            : box office person
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac490>
salience        : 1.8483462554286234e-05
wikipedia_url   : -
====================
name            : food drink
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac530>
salience        : 1.8483462554286234e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac5d0>
salience        : 1.847993189585395e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac670>
salience        : 1.847993189585395e-05
wikipedia_url   : -
====================
name            : blues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac6c0>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : visitlondon beginners
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac710>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : visitlondon beginners
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac760>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : visitlondon beginners
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac7b0>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : visitlondon beginners
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac800>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : visitlondon beginners
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac850>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : flood granary square
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac8f0>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac9e0>
salience        : 1.847645762609318e-05
wikipedia_url   : -
====================
name            : meal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daca30>
salience        : 1.8473034288035706e-05
wikipedia_url   : -
====================
name            : souvenir map mail mind
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daca80>
salience        : 1.8469998394721188e-05
wikipedia_url   : -
====================
name            : refugees
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacb70>
salience        : 1.8459562852513045e-05
wikipedia_url   : -
====================
name            : aboutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacc10>
salience        : 1.8454453311278485e-05
wikipedia_url   : -
====================
name            : aboutlondon
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacd00>
salience        : 1.8454453311278485e-05
wikipedia_url   : -
====================
name            : bombay sapphire gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacd50>
salience        : 1.843510653998237e-05
wikipedia_url   : -
====================
name            : bombay sapphire gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacda0>
salience        : 1.843051904870663e-05
wikipedia_url   : -
====================
name            : bombay sapphire gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacdf0>
salience        : 1.843051904870663e-05
wikipedia_url   : -
====================
name            : bombay sapphire gin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dace40>
salience        : 1.843051904870663e-05
wikipedia_url   : -
====================
name            : field
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dace90>
salience        : 1.8421616914565675e-05
wikipedia_url   : -
====================
name            : field
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacee0>
salience        : 1.8421616914565675e-05
wikipedia_url   : -
====================
name            : south bank plan visit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacf30>
salience        : 1.8417042156215757e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacf80>
salience        : 1.8400955013930798e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05030>
salience        : 1.8400955013930798e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05080>
salience        : 1.8400955013930798e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e050d0>
salience        : 1.8397870007902384e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05170>
salience        : 1.8394828657619655e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e051c0>
salience        : 1.8392885976936668e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05210>
salience        : 1.8388867829344235e-05
wikipedia_url   : -
====================
name            : sta planning visit visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e052b0>
salience        : 1.8388867829344235e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05300>
salience        : 1.8388867829344235e-05
wikipedia_url   : -
====================
name            : visitors
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e053f0>
salience        : 1.8383059796178713e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05440>
salience        : 1.8383059796178713e-05
wikipedia_url   : -
====================
name            : sta planning visit
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05490>
salience        : 1.8383059796178713e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05530>
salience        : 1.8383059796178713e-05
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05580>
salience        : 1.838303796830587e-05
wikipedia_url   : -
====================
name            : scabblock tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e055d0>
salience        : 1.82999483513413e-05
wikipedia_url   : -
====================
name            : blog post
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e056c0>
salience        : 1.8272538000019267e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05760>
salience        : 1.824774153647013e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05800>
salience        : 1.8197528333985247e-05
wikipedia_url   : -
====================
name            : district line
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e058a0>
salience        : 1.8194936274085194e-05
wikipedia_url   : -
====================
name            : twitter amp c
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05940>
salience        : 1.8160064428229816e-05
wikipedia_url   : -
====================
name            : bloombergservice euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e059e0>
salience        : 1.813585367926862e-05
wikipedia_url   : -
====================
name            : standardnews list highlights
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05a80>
salience        : 1.8057246052194387e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05ad0>
salience        : 1.8027487385552377e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05b20>
salience        : 1.8027487385552377e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05b70>
salience        : 1.8027487385552377e-05
wikipedia_url   : -
====================
name            : ticket
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05c10>
salience        : 1.8023507436737418e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05c60>
salience        : 1.8022607036982663e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05d00>
salience        : 1.7993530491366982e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05da0>
salience        : 1.7993530491366982e-05
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05e40>
salience        : 1.7993530491366982e-05
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05e90>
salience        : 1.7993530491366982e-05
wikipedia_url   : -
====================
name            : input piece
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05f30>
salience        : 1.798877383407671e-05
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05f80>
salience        : 1.7982541976380162e-05
wikipedia_url   : -
====================
name            : haywardgallery
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67080>
salience        : 1.7975511582335457e-05
wikipedia_url   : -
====================
name            : sta planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a670d0>
salience        : 1.7974294678424485e-05
wikipedia_url   : -
====================
name            : sta planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67120>
salience        : 1.797187542251777e-05
wikipedia_url   : -
====================
name            : trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67170>
salience        : 1.797187542251777e-05
wikipedia_url   : -
====================
name            : sta planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a671c0>
salience        : 1.7969481632462703e-05
wikipedia_url   : -
====================
name            : sta planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67210>
salience        : 1.7969481632462703e-05
wikipedia_url   : -
====================
name            : lightuplondon victoriabid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a672b0>
salience        : 1.7943393686437048e-05
wikipedia_url   : -
====================
name            : ttot lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67350>
salience        : 1.7811769794207066e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a673f0>
salience        : 1.7791689970181324e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67490>
salience        : 1.778640944394283e-05
wikipedia_url   : -
====================
name            : festival light oxo_tower
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67530>
salience        : 1.778640944394283e-05
wikipedia_url   : -
====================
name            : amp rambedance
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a675d0>
salience        : 1.77784932020586e-05
wikipedia_url   : -
====================
name            : blaze video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a676c0>
salience        : 1.7776219465304166e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a677b0>
salience        : 1.7776219465304166e-05
wikipedia_url   : -
====================
name            : amp rambedance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67800>
salience        : 1.7763213691068813e-05
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a678a0>
salience        : 1.774070733517874e-05
wikipedia_url   : -
====================
name            : drinks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40620>
salience        : 1.773346411937382e-05
wikipedia_url   : -
====================
name            : exhibition launch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40260>
salience        : 1.7697002476779744e-05
wikipedia_url   : -
====================
name            : cocktailhour lumiere carnabylondon timeoutlondon visitlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a710>
salience        : 1.768949550751131e-05
wikipedia_url   : -
====================
name            : southbank
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ad50>
salience        : 1.765616616467014e-05
wikipedia_url   : -
====================
name            : colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a1c0>
salience        : 1.762761348800268e-05
wikipedia_url   : -
====================
name            : withdrawal bill
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a940>
salience        : 1.7620932339923456e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a760>
salience        : 1.7601196304894984e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ada0>
salience        : 1.7601196304894984e-05
wikipedia_url   : -
====================
name            : cosmoscope installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a4e0>
salience        : 1.7598031263332814e-05
wikipedia_url   : -
====================
name            : info installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a260>
salience        : 1.7598031263332814e-05
wikipedia_url   : -
====================
name            : visitors installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a670>
salience        : 1.7598031263332814e-05
wikipedia_url   : -
====================
name            : festival check sneak peek installation
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2adf0>
salience        : 1.7598031263332814e-05
wikipedia_url   : -
====================
name            : withdrawal bill
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a8a0>
salience        : 1.7596117686480284e-05
wikipedia_url   : -
====================
name            : withdrawal bill
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ab70>
salience        : 1.7596117686480284e-05
wikipedia_url   : -
====================
name            : withdrawal bill
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aa80>
salience        : 1.7596117686480284e-05
wikipedia_url   : -
====================
name            : withdrawal bill
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a3a0>
salience        : 1.7596117686480284e-05
wikipedia_url   : -
====================
name            : info installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a800>
salience        : 1.7594913515495136e-05
wikipedia_url   : -
====================
name            : festival check sneak peek installation
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b170d0>
salience        : 1.7591839423403144e-05
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17260>
salience        : 1.759033875714522e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17440>
salience        : 1.7582873624633066e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b174e0>
salience        : 1.7577098333276808e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17710>
salience        : 1.7574269804754294e-05
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17990>
salience        : 1.7571475837030448e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17a30>
salience        : 1.7571475837030448e-05
wikipedia_url   : -
====================
name            : visitors installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17c60>
salience        : 1.7568718249094673e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17d00>
salience        : 1.7568718249094673e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17e40>
salience        : 1.7568718249094673e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17f30>
salience        : 1.7565997040946968e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b172b0>
salience        : 1.7565997040946968e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b175d0>
salience        : 1.7565997040946968e-05
wikipedia_url   : -
====================
name            : spirit installation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17940>
salience        : 1.756331039359793e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17d50>
salience        : 1.7559199477545917e-05
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17e90>
salience        : 1.755567245709244e-05
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82210>
salience        : 1.755567245709244e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82a80>
salience        : 1.7551430573803373e-05
wikipedia_url   : -
====================
name            : countdown lumiere festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82440>
salience        : 1.7547428797115572e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82710>
salience        : 1.7541491615702398e-05
wikipedia_url   : -
====================
name            : event tflbusales
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ad0>
salience        : 1.7463818949181587e-05
wikipedia_url   : -
====================
name            : tflbusales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82260>
salience        : 1.7445432604290545e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82350>
salience        : 1.731850170472171e-05
wikipedia_url   : -
====================
name            : check lumiere display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82760>
salience        : 1.7313654097961262e-05
wikipedia_url   : -
====================
name            : check lumiere display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82b20>
salience        : 1.7311271221842617e-05
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e822b0>
salience        : 1.7311271221842617e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82c10>
salience        : 1.7308915630565025e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82bc0>
salience        : 1.7308915630565025e-05
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82e40>
salience        : 1.7308915630565025e-05
wikipedia_url   : -
====================
name            : wharf oxotowerwharf miss c amp th guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e823a0>
salience        : 1.7306585505139083e-05
wikipedia_url   : -
====================
name            : motion display
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229db530>
salience        : 1.7306585505139083e-05
wikipedia_url   : -
====================
name            : lumiere launches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a229dbe90>
salience        : 1.724132744129747e-05
wikipedia_url   : -
====================
name            : grammers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd80d0>
salience        : 1.7233433027286083e-05
wikipedia_url   : -
====================
name            : fire sculptures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8120>
salience        : 1.7227463104063645e-05
wikipedia_url   : -
====================
name            : bombay sapphire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd82b0>
salience        : 1.7214337276527658e-05
wikipedia_url   : -
====================
name            : tracks gasholder park pa wait
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8490>
salience        : 1.7164360542665236e-05
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8580>
salience        : 1.7157773982034996e-05
wikipedia_url   : -
====================
name            : westminster
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd88a0>
salience        : 1.7148549886769615e-05
wikipedia_url   : https://en.wikipedia.org/wiki/City_of_Westminster
====================
name            : photographers happeninglondon photographers community volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8a80>
salience        : 1.7130168998846784e-05
wikipedia_url   : -
====================
name            : preview
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8c60>
salience        : 1.7088945241994224e-05
wikipedia_url   : -
====================
name            : choices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8e40>
salience        : 1.7041817045537755e-05
wikipedia_url   : -
====================
name            : choices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8210>
salience        : 1.7041817045537755e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8850>
salience        : 1.7036878489307128e-05
wikipedia_url   : -
====================
name            : scene tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8c10>
salience        : 1.7027339708874933e-05
wikipedia_url   : -
====================
name            : scene tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8940>
salience        : 1.7027339708874933e-05
wikipedia_url   : -
====================
name            : luma bar
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8710>
salience        : 1.7027339708874933e-05
wikipedia_url   : -
====================
name            : wait
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8f80>
salience        : 1.702545523585286e-05
wikipedia_url   : -
====================
name            : scene tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1350>
salience        : 1.7022730389726348e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1f80>
salience        : 1.7018221114994958e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb19e0>
salience        : 1.7018221114994958e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1da0>
salience        : 1.7009488146868534e-05
wikipedia_url   : -
====================
name            : violet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1df0>
salience        : 1.7009488146868534e-05
wikipedia_url   : -
====================
name            : violet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb12b0>
salience        : 1.7005255358526483e-05
wikipedia_url   : -
====================
name            : violet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1e90>
salience        : 1.7005255358526483e-05
wikipedia_url   : -
====================
name            : violet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b20>
salience        : 1.7005255358526483e-05
wikipedia_url   : -
====================
name            : pop
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1b70>
salience        : 1.7005255358526483e-05
wikipedia_url   : -
====================
name            : spaces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220646c0>
salience        : 1.70011080626864e-05
wikipedia_url   : -
====================
name            : violets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8210>
salience        : 1.70011080626864e-05
wikipedia_url   : -
====================
name            : violet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8530>
salience        : 1.70011080626864e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8a30>
salience        : 1.69930553965969e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8b20>
salience        : 1.6989142750389874e-05
wikipedia_url   : -
====================
name            : ron haselden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c710>
salience        : 1.697267362033017e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Ron_Haselden
====================
name            : pit stop
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c530>
salience        : 1.6958603737293743e-05
wikipedia_url   : -
====================
name            : wonder
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c8f0>
salience        : 1.689439159235917e-05
wikipedia_url   : -
====================
name            : choices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c990>
salience        : 1.6877060261322185e-05
wikipedia_url   : -
====================
name            : spaces
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8800>
salience        : 1.6877060261322185e-05
wikipedia_url   : -
====================
name            : choices
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8e90>
salience        : 1.6877060261322185e-05
wikipedia_url   : -
====================
name            : triptych ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8cb0>
salience        : 1.6873525964911096e-05
wikipedia_url   : -
====================
name            : photos ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8ad0>
salience        : 1.6873525964911096e-05
wikipedia_url   : -
====================
name            : triptych ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21210>
salience        : 1.6873525964911096e-05
wikipedia_url   : -
====================
name            : installation imakefings
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a213f0>
salience        : 1.6866599253262393e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21620>
salience        : 1.6866599253262393e-05
wikipedia_url   : -
====================
name            : discount
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a214e0>
salience        : 1.686518226051703e-05
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21c10>
salience        : 1.6856627553352155e-05
wikipedia_url   : -
====================
name            : many
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21670>
salience        : 1.6856627553352155e-05
wikipedia_url   : -
====================
name            : triptych ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21990>
salience        : 1.684711969573982e-05
wikipedia_url   : -
====================
name            : photos ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2170>
salience        : 1.684711969573982e-05
wikipedia_url   : -
====================
name            : triptych ruby
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2760>
salience        : 1.684711969573982e-05
wikipedia_url   : -
====================
name            : venues
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2300>
salience        : 1.6843308912939392e-05
wikipedia_url   : -
====================
name            : reason
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea21c0>
salience        : 1.683594200585503e-05
wikipedia_url   : -
====================
name            : desk lamp front king cross train shed
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2ee0>
salience        : 1.6814070477266796e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098300>
salience        : 1.6807212887215428e-05
wikipedia_url   : -
====================
name            : sohaila87660281
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098d00>
salience        : 1.680625427979976e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081940>
salience        : 1.6798403521534055e-05
wikipedia_url   : -
====================
name            : aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081580>
salience        : 1.6779216821305454e-05
wikipedia_url   : -
====================
name            : londonisopen aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18170>
salience        : 1.6776617485447787e-05
wikipedia_url   : -
====================
name            : vip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a188a0>
salience        : 1.666458229010459e-05
wikipedia_url   : -
====================
name            : aworks set
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18210>
salience        : 1.6659121683915146e-05
wikipedia_url   : -
====================
name            : aichoketrust guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18e90>
salience        : 1.6598012734903023e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a469e0>
salience        : 1.6584312106715515e-05
wikipedia_url   : -
====================
name            : carnabylondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a463a0>
salience        : 1.6584312106715515e-05
wikipedia_url   : -
====================
name            : visitlondon euro_tour 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46ad0>
salience        : 1.656016866036225e-05
wikipedia_url   : -
====================
name            : clip gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206d4e0>
salience        : 1.648672878218349e-05
wikipedia_url   : -
====================
name            : visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220b0490>
salience        : 1.6416703147115186e-05
wikipedia_url   : -
====================
name            : brightnights euro_tour 光の祭典
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99ee0>
salience        : 1.64132725331001e-05
wikipedia_url   : -
====================
name            : stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a21c0>
salience        : 1.641160633880645e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a678f0>
salience        : 1.641156450205017e-05
wikipedia_url   : -
====================
name            : building
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a679e0>
salience        : 1.632940984563902e-05
wikipedia_url   : -
====================
name            : world building
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67a30>
salience        : 1.6322816009051166e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67ad0>
salience        : 1.6320665963576175e-05
wikipedia_url   : -
====================
name            : streets buildings
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67b70>
salience        : 1.6320665963576175e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67c10>
salience        : 1.6320665963576175e-05
wikipedia_url   : -
====================
name            : jra piece view london lazinc_ view check thoughts
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67c60>
salience        : 1.6282667274936102e-05
wikipedia_url   : -
====================
name            : amp
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67d00>
salience        : 1.627992605790496e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67d50>
salience        : 1.625535878702067e-05
wikipedia_url   : -
====================
name            : amp
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67da0>
salience        : 1.6247804524027742e-05
wikipedia_url   : -
====================
name            : rainbow colour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67df0>
salience        : 1.624553078727331e-05
wikipedia_url   : -
====================
name            : housemates
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67ee0>
salience        : 1.6235770090133883e-05
wikipedia_url   : -
====================
name            : mickfusion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67f80>
salience        : 1.6232621419476345e-05
wikipedia_url   : -
====================
name            : festival hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e850d0>
salience        : 1.6226469597313553e-05
wikipedia_url   : -
====================
name            : hot chocolate loads
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85120>
salience        : 1.6220925317611545e-05
wikipedia_url   : -
====================
name            : hot chocolate loads
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85170>
salience        : 1.6220925317611545e-05
wikipedia_url   : -
====================
name            : theatreland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85260>
salience        : 1.621622323000338e-05
wikipedia_url   : -
====================
name            : guide help check theatreland
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85300>
salience        : 1.621622323000338e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e853a0>
salience        : 1.6202759070438333e-05
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e853f0>
salience        : 1.6198466255445965e-05
wikipedia_url   : -
====================
name            : glory
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85440>
salience        : 1.6198466255445965e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e854e0>
salience        : 1.6198466255445965e-05
wikipedia_url   : -
====================
name            : amp maraschino liqueur
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85530>
salience        : 1.619015347387176e-05
wikipedia_url   : -
====================
name            : amp maraschino liqueur
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85580>
salience        : 1.618612623133231e-05
wikipedia_url   : -
====================
name            : amp maraschino liqueur
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e855d0>
salience        : 1.618612623133231e-05
wikipedia_url   : -
====================
name            : amp maraschino liqueur
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85620>
salience        : 1.618612623133231e-05
wikipedia_url   : -
====================
name            : spaincultureuk spanishauk visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e856c0>
salience        : 1.61859679792542e-05
wikipedia_url   : -
====================
name            : amp maraschino liqueur
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85710>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e857b0>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85850>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e858a0>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : human hea order disorder atoms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e858f0>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : read blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85990>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : everything neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e859e0>
salience        : 1.618217720533721e-05
wikipedia_url   : -
====================
name            : neon bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85ad0>
salience        : 1.617078851268161e-05
wikipedia_url   : -
====================
name            : neon bikes
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85bc0>
salience        : 1.617078851268161e-05
wikipedia_url   : -
====================
name            : inspiration study universe blood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85c10>
salience        : 1.6149235307238996e-05
wikipedia_url   : -
====================
name            : inspiration study universe blood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85c60>
salience        : 1.614649227121845e-05
wikipedia_url   : -
====================
name            : inspiration study universe blood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85cb0>
salience        : 1.614649227121845e-05
wikipedia_url   : -
====================
name            : inspiration study universe blood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85d00>
salience        : 1.614649227121845e-05
wikipedia_url   : -
====================
name            : europeforculture senorcevicheldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85d50>
salience        : 1.607866579433903e-05
wikipedia_url   : -
====================
name            : theo walcott
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85e40>
salience        : 1.6070012861746363e-05
wikipedia_url   : -
====================
name            : gary speed
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85f30>
salience        : 1.6070012861746363e-05
wikipedia_url   : -
====================
name            : hea
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85f80>
salience        : 1.6067802789621055e-05
wikipedia_url   : -
====================
name            : pre amp post performance coffee cocktails amp cornbread
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7080>
salience        : 1.6065567251644097e-05
wikipedia_url   : -
====================
name            : stop
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7120>
salience        : 1.6064104784163646e-05
wikipedia_url   : -
====================
name            : pre amp post performance coffee cocktails amp cornbread
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db71c0>
salience        : 1.6061168935266323e-05
wikipedia_url   : -
====================
name            : pre amp post performance coffee cocktails amp cornbread
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7260>
salience        : 1.605900797585491e-05
wikipedia_url   : -
====================
name            : sneak preview
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7350>
salience        : 1.6057567336247303e-05
wikipedia_url   : -
====================
name            : dancers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7440>
salience        : 1.605686884431634e-05
wikipedia_url   : -
====================
name            : speed
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7490>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : speed
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db74e0>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : speed
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7530>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : pint pride
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db75d0>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : pint pride look
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7620>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : speed
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7670>
salience        : 1.6047380995587446e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7760>
salience        : 1.6042111383285373e-05
wikipedia_url   : -
====================
name            : film
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7800>
salience        : 1.6042111383285373e-05
wikipedia_url   : -
====================
name            : cain_int
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db78f0>
salience        : 1.6036978195188567e-05
wikipedia_url   : -
====================
name            : builders
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db79e0>
salience        : 1.5947942301863804e-05
wikipedia_url   : -
====================
name            : testing
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7a80>
salience        : 1.5915684343781322e-05
wikipedia_url   : -
====================
name            : restaurant
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7b70>
salience        : 1.5830590200494044e-05
wikipedia_url   : -
====================
name            : theritzlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7c60>
salience        : 1.5821613487787545e-05
wikipedia_url   : -
====================
name            : lunch dinner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7d00>
salience        : 1.5791976693435572e-05
wikipedia_url   : -
====================
name            : lumiere london kicks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7d50>
salience        : 1.5790068573551252e-05
wikipedia_url   : -
====================
name            : watering lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7da0>
salience        : 1.578461888129823e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7df0>
salience        : 1.5774458006490022e-05
wikipedia_url   : -
====================
name            : investment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7e90>
salience        : 1.574543784954585e-05
wikipedia_url   : -
====================
name            : visit beginners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7f30>
salience        : 1.5742565665277652e-05
wikipedia_url   : -
====================
name            : blog
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7f80>
salience        : 1.562792203912977e-05
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e080>
salience        : 1.5598914615111426e-05
wikipedia_url   : -
====================
name            : tours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e0d0>
salience        : 1.558213261887431e-05
wikipedia_url   : -
====================
name            : tours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e120>
salience        : 1.5553072444163263e-05
wikipedia_url   : -
====================
name            : something
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e1c0>
salience        : 1.5550102034467272e-05
wikipedia_url   : -
====================
name            : etching london thames
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e210>
salience        : 1.5516701751039363e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e260>
salience        : 1.5516701751039363e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e300>
salience        : 1.5516701751039363e-05
wikipedia_url   : -
====================
name            : site
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e350>
salience        : 1.550336673972197e-05
wikipedia_url   : -
====================
name            : collaboration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e3f0>
salience        : 1.550336673972197e-05
wikipedia_url   : -
====================
name            : activity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e490>
salience        : 1.5500052541028708e-05
wikipedia_url   : -
====================
name            : rooftop gin tastic experience
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e4e0>
salience        : 1.5494973922614008e-05
wikipedia_url   : -
====================
name            : cirquebijou
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e5d0>
salience        : 1.53708770085359e-05
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e620>
salience        : 1.5300904124160297e-05
wikipedia_url   : -
====================
name            : street plug
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e710>
salience        : 1.5300904124160297e-05
wikipedia_url   : -
====================
name            : street plug
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e800>
salience        : 1.5300904124160297e-05
wikipedia_url   : -
====================
name            : london type
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e8a0>
salience        : 1.529213841422461e-05
wikipedia_url   : -
====================
name            : london type
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e940>
salience        : 1.5283767424989492e-05
wikipedia_url   : -
====================
name            : london type
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e9e0>
salience        : 1.5279720173566602e-05
wikipedia_url   : -
====================
name            : london type
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ea80>
salience        : 1.5279720173566602e-05
wikipedia_url   : -
====================
name            : rubenshotel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6eb20>
salience        : 1.526435517007485e-05
wikipedia_url   : -
====================
name            : aichoketrust wabbey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6eb70>
salience        : 1.5261895896401256e-05
wikipedia_url   : -
====================
name            : london newnewspage
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ec10>
salience        : 1.5216066458378918e-05
wikipedia_url   : -
====================
name            : video highlights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ec60>
salience        : 1.5213878214126453e-05
wikipedia_url   : -
====================
name            : studio tilt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ed00>
salience        : 1.5207379874482285e-05
wikipedia_url   : -
====================
name            : office desk lamp giant size
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ed50>
salience        : 1.5199055269476958e-05
wikipedia_url   : -
====================
name            : things
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6edf0>
salience        : 1.519502984592691e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ee40>
salience        : 1.5194631487247534e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ee90>
salience        : 1.5189284567895811e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6eee0>
salience        : 1.5184088624664582e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99030>
salience        : 1.5182696188276168e-05
wikipedia_url   : -
====================
name            : parking event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e990d0>
salience        : 1.5181543858489022e-05
wikipedia_url   : -
====================
name            : spirit installation event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99120>
salience        : 1.5179033653112128e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e991c0>
salience        : 1.5179033653112128e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99210>
salience        : 1.5169322068686597e-05
wikipedia_url   : -
====================
name            : event
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99260>
salience        : 1.5164650903898291e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99300>
salience        : 1.5164650903898291e-05
wikipedia_url   : -
====================
name            : thousands
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e993f0>
salience        : 1.51585509229335e-05
wikipedia_url   : -
====================
name            : tube network ladies smoking room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99490>
salience        : 1.51585509229335e-05
wikipedia_url   : -
====================
name            : pisco sour
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99530>
salience        : 1.5122674085432664e-05
wikipedia_url   : -
====================
name            : promotions business contact
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99580>
salience        : 1.5115921996766701e-05
wikipedia_url   : -
====================
name            : congratulations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e995d0>
salience        : 1.5029456335469149e-05
wikipedia_url   : -
====================
name            : 光の祭典 ルミエール ロンドン
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99670>
salience        : 1.501062979514245e-05
wikipedia_url   : -
====================
name            : travel find
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99710>
salience        : 1.4961026863602456e-05
wikipedia_url   : -
====================
name            : granarysquare run
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99760>
salience        : 1.4894209925842006e-05
wikipedia_url   : -
====================
name            : veolia
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99850>
salience        : 1.4835270121693611e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Veolia
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e998f0>
salience        : 1.4824880054220557e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e999e0>
salience        : 1.481566323491279e-05
wikipedia_url   : -
====================
name            : telephone box aquarium
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99a30>
salience        : 1.4809680578764528e-05
wikipedia_url   : -
====================
name            : events
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e778a0>
salience        : 1.4802508303546347e-05
wikipedia_url   : -
====================
name            : champagne
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220a73a0>
salience        : 1.4801070392422844e-05
wikipedia_url   : -
====================
name            : neon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095ee0>
salience        : 1.4798280062677804e-05
wikipedia_url   : -
====================
name            : southbanklondon pay
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22089cb0>
salience        : 1.479553884564666e-05
wikipedia_url   : -
====================
name            : sightseeing quote
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22095530>
salience        : 1.479553884564666e-05
wikipedia_url   : -
====================
name            : champagne
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8ae40>
salience        : 1.4759274563402869e-05
wikipedia_url   : -
====================
name            : bookingoffice stpancrasren
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a6c0>
salience        : 1.4725979781360365e-05
wikipedia_url   : -
====================
name            : room
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8a800>
salience        : 1.4619873581978027e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4940>
salience        : 1.4581252798961941e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4ad0>
salience        : 1.4568721780960914e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4530>
salience        : 1.4508835192827974e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4850>
salience        : 1.4450200978899375e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4d50>
salience        : 1.4450200978899375e-05
wikipedia_url   : -
====================
name            : cocktails menus plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd49e0>
salience        : 1.4440448467212263e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4e40>
salience        : 1.4433473552344367e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4cb0>
salience        : 1.4431208910536952e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4df0>
salience        : 1.4431208910536952e-05
wikipedia_url   : -
====================
name            : plan
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4620>
salience        : 1.4431208910536952e-05
wikipedia_url   : -
====================
name            : guide planner
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1120>
salience        : 1.4428973372559994e-05
wikipedia_url   : -
====================
name            : countdown
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1260>
salience        : 1.4406198715732899e-05
wikipedia_url   : -
====================
name            : chance win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd13f0>
salience        : 1.4241470125853084e-05
wikipedia_url   : -
====================
name            : steps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1490>
salience        : 1.4241470125853084e-05
wikipedia_url   : -
====================
name            : life
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd14e0>
salience        : 1.423925732524367e-05
wikipedia_url   : -
====================
name            : investment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1620>
salience        : 1.4237437426345423e-05
wikipedia_url   : -
====================
name            : cold try gin cocktail speakeasy style
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd16c0>
salience        : 1.423349658580264e-05
wikipedia_url   : -
====================
name            : investment
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd18a0>
salience        : 1.4225875020201784e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1990>
salience        : 1.4218574506230652e-05
wikipedia_url   : -
====================
name            : competition win
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1a30>
salience        : 1.4218574506230652e-05
wikipedia_url   : -
====================
name            : creatures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1b20>
salience        : 1.4218574506230652e-05
wikipedia_url   : -
====================
name            : shot canon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1cb0>
salience        : 1.4218574506230652e-05
wikipedia_url   : -
====================
name            : rehearsal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1df0>
salience        : 1.4215036571840756e-05
wikipedia_url   : -
====================
name            : window stickers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac030>
salience        : 1.4211569578037597e-05
wikipedia_url   : -
====================
name            : window stickers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac170>
salience        : 1.4211569578037597e-05
wikipedia_url   : -
====================
name            : window stickers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac210>
salience        : 1.4211569578037597e-05
wikipedia_url   : -
====================
name            : app
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac300>
salience        : 1.4208170796337072e-05
wikipedia_url   : -
====================
name            : lumiere flyer mention
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac3a0>
salience        : 1.42015678648022e-05
wikipedia_url   : -
====================
name            : glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac4e0>
salience        : 1.419499130861368e-05
wikipedia_url   : -
====================
name            : activity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac620>
salience        : 1.4194973118719645e-05
wikipedia_url   : -
====================
name            : activity
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac940>
salience        : 1.4192130947776604e-05
wikipedia_url   : -
====================
name            : glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacad0>
salience        : 1.4191310583555605e-05
wikipedia_url   : -
====================
name            : edvaizey glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacb20>
salience        : 1.4191310583555605e-05
wikipedia_url   : -
====================
name            : city edvaizey glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacbc0>
salience        : 1.4191310583555605e-05
wikipedia_url   : -
====================
name            : glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19daccb0>
salience        : 1.4191310583555605e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05350>
salience        : 1.4118413673713803e-05
wikipedia_url   : -
====================
name            : cain_int edvaizey glimpse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e053a0>
salience        : 1.4104854926699772e-05
wikipedia_url   : -
====================
name            : revenue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05620>
salience        : 1.4088558600633405e-05
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05710>
salience        : 1.4088558600633405e-05
wikipedia_url   : -
====================
name            : boroughs
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e058f0>
salience        : 1.408405205438612e-05
wikipedia_url   : -
====================
name            : champagne
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05bc0>
salience        : 1.4081962945056148e-05
wikipedia_url   : -
====================
name            : boroughs
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05df0>
salience        : 1.4079660104471259e-05
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル pattiharris
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67030>
salience        : 1.407179115631152e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67260>
salience        : 1.4069678400119301e-05
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67300>
salience        : 1.4063598428037949e-05
wikipedia_url   : -
====================
name            : reservations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67440>
salience        : 1.3972306078358088e-05
wikipedia_url   : -
====================
name            : check plan journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a674e0>
salience        : 1.3951227629149798e-05
wikipedia_url   : -
====================
name            : westminstercath
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67620>
salience        : 1.3903048966312781e-05
wikipedia_url   : -
====================
name            : blues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67670>
salience        : 1.3878880054107867e-05
wikipedia_url   : -
====================
name            : piece sun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67760>
salience        : 1.3878880054107867e-05
wikipedia_url   : -
====================
name            : pedal
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67850>
salience        : 1.3876832781534176e-05
wikipedia_url   : -
====================
name            : video design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a405d0>
salience        : 1.3874810065317433e-05
wikipedia_url   : -
====================
name            : blues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40c60>
salience        : 1.3872811905457638e-05
wikipedia_url   : -
====================
name            : subject availability ba video design
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a407b0>
salience        : 1.3868883797840681e-05
wikipedia_url   : -
====================
name            : video design
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a402b0>
salience        : 1.3868883797840681e-05
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40a80>
salience        : 1.3865044820704497e-05
wikipedia_url   : -
====================
name            : talent
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a406c0>
salience        : 1.3861292245564982e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a440>
salience        : 1.3845687135471962e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2aad0>
salience        : 1.381201309413882e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a120>
salience        : 1.3809999472869094e-05
wikipedia_url   : -
====================
name            : oxotowerwharf
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2acb0>
salience        : 1.3340536497707944e-05
wikipedia_url   : -
====================
name            : redbridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a580>
salience        : 1.3253402357804589e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Redbridge
====================
name            : festival
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b173a0>
salience        : 1.321125546382973e-05
wikipedia_url   : -
====================
name            : aichoke uk com
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17850>
salience        : 1.3136213055986445e-05
wikipedia_url   : -
====================
name            : tfltrafficnews switches
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17ad0>
salience        : 1.3125270015734714e-05
wikipedia_url   : -
====================
name            : aichoketrust anneroselt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82620>
salience        : 1.3119069990352727e-05
wikipedia_url   : -
====================
name            : ig step
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82850>
salience        : 1.311824053118471e-05
wikipedia_url   : -
====================
name            : sights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82ee0>
salience        : 1.311683990934398e-05
wikipedia_url   : -
====================
name            : housing sight coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82580>
salience        : 1.3091692380839959e-05
wikipedia_url   : -
====================
name            : housing sight coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82300>
salience        : 1.3091692380839959e-05
wikipedia_url   : -
====================
name            : coinstreet
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8d50>
salience        : 1.3091692380839959e-05
wikipedia_url   : -
====================
name            : everyman
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8760>
salience        : 1.3087852494209073e-05
wikipedia_url   : -
====================
name            : food
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8800>
salience        : 1.3082262739771977e-05
wikipedia_url   : -
====================
name            : coin
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd89e0>
salience        : 1.3080441931379028e-05
wikipedia_url   : -
====================
name            : openings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8da0>
salience        : 1.3073359696136322e-05
wikipedia_url   : -
====================
name            : piccadilly st james
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8530>
salience        : 1.3022522580286022e-05
wikipedia_url   : https://en.wikipedia.org/wiki/St_James's_Church,_Piccadilly
====================
name            : reasons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd88f0>
salience        : 1.3014153410040308e-05
wikipedia_url   : -
====================
name            : birdcage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8170>
salience        : 1.3011459486733656e-05
wikipedia_url   : -
====================
name            : embankment
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1120>
salience        : 1.3008811038162094e-05
wikipedia_url   : -
====================
name            : sta planning visit lovecamden miss guardian angels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1620>
salience        : 1.3006205335841514e-05
wikipedia_url   : -
====================
name            : fibre optic water grass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb11c0>
salience        : 1.3006205335841514e-05
wikipedia_url   : -
====================
name            : lcr wearewaterloouk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1580>
salience        : 1.3001120350963902e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb17b0>
salience        : 1.2998637430428062e-05
wikipedia_url   : -
====================
name            : guardian angels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb13f0>
salience        : 1.2998637430428062e-05
wikipedia_url   : -
====================
name            : check guide rupe street food drink requirements
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1490>
salience        : 1.2998637430428062e-05
wikipedia_url   : -
====================
name            : fibre optic water grass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb14e0>
salience        : 1.2998637430428062e-05
wikipedia_url   : -
====================
name            : south bank night rehearsal
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21cb0>
salience        : 1.2996193618164398e-05
wikipedia_url   : -
====================
name            : watering cans
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a466c0>
salience        : 1.2996193618164398e-05
wikipedia_url   : -
====================
name            : guardian angels
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8350>
salience        : 1.2996193618164398e-05
wikipedia_url   : -
====================
name            : fibre optic water grass
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8030>
salience        : 1.2996193618164398e-05
wikipedia_url   : -
====================
name            : x7eaven festival pop cirque bijou
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8990>
salience        : 1.2995608813071158e-05
wikipedia_url   : -
====================
name            : camera lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8080>
salience        : 1.2993786185688805e-05
wikipedia_url   : -
====================
name            : lomo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db88a0>
salience        : 1.2993786185688805e-05
wikipedia_url   : -
====================
name            : anything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2d00>
salience        : 1.2993786185688805e-05
wikipedia_url   : -
====================
name            : somewhere
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cf30>
salience        : 1.2984309250896331e-05
wikipedia_url   : -
====================
name            : richardvines
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd92b0>
salience        : 1.2980715837329626e-05
wikipedia_url   : -
====================
name            : pic
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8d50>
salience        : 1.2980715837329626e-05
wikipedia_url   : -
====================
name            : visitlondon tflbusales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8260>
salience        : 1.2977969163330272e-05
wikipedia_url   : -
====================
name            : ilovesoholondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8760>
salience        : 1.2977202459296677e-05
wikipedia_url   : -
====================
name            : thisisredbridge recycle smitf_london ladder lift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8c10>
salience        : 1.2973764569323976e-05
wikipedia_url   : -
====================
name            : tube network smitf_london ladder lift
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8d00>
salience        : 1.2973764569323976e-05
wikipedia_url   : -
====================
name            : check plan visit advance
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de82b0>
salience        : 1.2970400348422118e-05
wikipedia_url   : -
====================
name            : brunch
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8580>
salience        : 1.2967107068106998e-05
wikipedia_url   : -
====================
name            : sculpture light festival av
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99ad0>
salience        : 1.2963880180905107e-05
wikipedia_url   : -
====================
name            : house
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99b70>
salience        : 1.2946613423991948e-05
wikipedia_url   : -
====================
name            : lovelondon monster angle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99bc0>
salience        : 1.289695683226455e-05
wikipedia_url   : -
====================
name            : monster angle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99c60>
salience        : 1.289695683226455e-05
wikipedia_url   : -
====================
name            : embspainuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99d00>
salience        : 1.2886001059086993e-05
wikipedia_url   : -
====================
name            : pop bite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99da0>
salience        : 1.2875761058239732e-05
wikipedia_url   : -
====================
name            : culture vultures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99df0>
salience        : 1.2875761058239732e-05
wikipedia_url   : -
====================
name            : sculpture light festival av
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99e90>
salience        : 1.2875761058239732e-05
wikipedia_url   : -
====================
name            : pics
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99f30>
salience        : 1.287088161916472e-05
wikipedia_url   : -
====================
name            : latter
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0080>
salience        : 1.2866149518231396e-05
wikipedia_url   : -
====================
name            : hatters
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0120>
salience        : 1.2866149518231396e-05
wikipedia_url   : -
====================
name            : surprises
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa01c0>
salience        : 1.2861556569987442e-05
wikipedia_url   : -
====================
name            : koi fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0260>
salience        : 1.2861556569987442e-05
wikipedia_url   : -
====================
name            : culture vultures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa02b0>
salience        : 1.2857094588980544e-05
wikipedia_url   : -
====================
name            : pic
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0350>
salience        : 1.2857094588980544e-05
wikipedia_url   : -
====================
name            : latter
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0440>
salience        : 1.2848534424847458e-05
wikipedia_url   : -
====================
name            : illuminatedriv
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0490>
salience        : 1.2844424418290146e-05
wikipedia_url   : -
====================
name            : umbrellas force
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa04e0>
salience        : 1.2844424418290146e-05
wikipedia_url   : -
====================
name            : afternoon tea cakes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0530>
salience        : 1.2840419003623538e-05
wikipedia_url   : -
====================
name            : hatters
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa05d0>
salience        : 1.2840419003623538e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0620>
salience        : 1.2771608453476802e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0670>
salience        : 1.2771608453476802e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa06c0>
salience        : 1.276653438253561e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0710>
salience        : 1.2764057828462683e-05
wikipedia_url   : -
====================
name            : london architecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0760>
salience        : 1.2764057828462683e-05
wikipedia_url   : -
====================
name            : waltham forest
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0800>
salience        : 1.2755087482219096e-05
wikipedia_url   : https://en.wikipedia.org/wiki/London_Borough_of_Waltham_Forest
====================
name            : bank
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa08a0>
salience        : 1.275112936127698e-05
wikipedia_url   : -
====================
name            : benefits
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0940>
salience        : 1.268392770725768e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0a30>
salience        : 1.2659200365305878e-05
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0a80>
salience        : 1.2655443242692854e-05
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0ad0>
salience        : 1.2655443242692854e-05
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0b20>
salience        : 1.2655443242692854e-05
wikipedia_url   : -
====================
name            : aboutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0bc0>
salience        : 1.2653598787437659e-05
wikipedia_url   : -
====================
name            : sta planning visit aboutlondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0c60>
salience        : 1.2653598787437659e-05
wikipedia_url   : -
====================
name            : action
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0d00>
salience        : 1.2648193660425022e-05
wikipedia_url   : -
====================
name            : footfalls
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0da0>
salience        : 1.264643287868239e-05
wikipedia_url   : -
====================
name            : estate
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0e90>
salience        : 1.2639587112062145e-05
wikipedia_url   : -
====================
name            : happenings
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0f30>
salience        : 1.2639587112062145e-05
wikipedia_url   : -
====================
name            : 英国 いよいよ今週18日 木 から光の祭典 リュミエール ロンドン がスタート ウェストエンド キングス クロス メイフェアなどロンドン各所を舞台に 光を使ったアートが繰り広げられる 画像は2016年のリュミエールから aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24030>
salience        : 1.259844248124864e-05
wikipedia_url   : -
====================
name            : pop bite
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e240d0>
salience        : 1.2544222954602446e-05
wikipedia_url   : -
====================
name            : vous à être hypnotisés pendant le lumiere light festival de londres aichoketrust carnabylondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24170>
salience        : 1.254210110346321e-05
wikipedia_url   : -
====================
name            : préparez vous à être hypnotisés pendant le lumiere light festival de londres aichoketrust carnabylondon
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24210>
salience        : 1.254210110346321e-05
wikipedia_url   : -
====================
name            : sho
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24260>
salience        : 1.2539990166260395e-05
wikipedia_url   : -
====================
name            : sneak peek installation couesy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e242b0>
salience        : 1.2504973710747436e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24350>
salience        : 1.2497580428316724e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e243f0>
salience        : 1.247872114618076e-05
wikipedia_url   : -
====================
name            : travel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24490>
salience        : 1.2472921298467554e-05
wikipedia_url   : -
====================
name            : visitlondon lumiere london nikkis49
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24530>
salience        : 1.247026739292778e-05
wikipedia_url   : -
====================
name            : thing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24580>
salience        : 1.2426680768840015e-05
wikipedia_url   : -
====================
name            : granarysquare kingscross euston
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24620>
salience        : 1.2419833183230367e-05
wikipedia_url   : -
====================
name            : david ward
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24710>
salience        : 1.24063071780256e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24760>
salience        : 1.2366311239020433e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e247b0>
salience        : 1.236264142789878e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24800>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24850>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e248a0>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e248f0>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24940>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24990>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e249e0>
salience        : 1.2360838809399866e-05
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24a30>
salience        : 1.232747581525473e-05
wikipedia_url   : -
====================
name            : lumierelondon lumieremayfair
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24a80>
salience        : 1.2324157978582662e-05
wikipedia_url   : -
====================
name            : kazbrella stas
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24b20>
salience        : 1.2274264918232802e-05
wikipedia_url   : -
====================
name            : david batchelor
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24bc0>
salience        : 1.2227844308654312e-05
wikipedia_url   : -
====================
name            : thing beauty
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24c60>
salience        : 1.2189936569484416e-05
wikipedia_url   : -
====================
name            : city hall
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24d50>
salience        : 1.2186954336357303e-05
wikipedia_url   : -
====================
name            : try mickfusion
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24da0>
salience        : 1.217827775690239e-05
wikipedia_url   : -
====================
name            : visitlondon ooh flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24df0>
salience        : 1.2171684829809237e-05
wikipedia_url   : -
====================
name            : coren
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24e90>
salience        : 1.216676173498854e-05
wikipedia_url   : -
====================
name            : newsdigest 英国 いよいよ今週18日 木 から光の祭典 リュミエール ロンドン がスタート ウェストエンド キングス クロス メイフェアなどロンドン各所を舞台に 光を使ったアートが繰り広げられる 画像は2016年のリュミエールから visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24f30>
salience        : 1.2144320862716995e-05
wikipedia_url   : -
====================
name            : aworks
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23030>
salience        : 1.2130012692068703e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a230d0>
salience        : 1.2115780009480659e-05
wikipedia_url   : -
====================
name            : miss installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23120>
salience        : 1.2113366210542154e-05
wikipedia_url   : -
====================
name            : aworks
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23210>
salience        : 1.2110077477700543e-05
wikipedia_url   : -
====================
name            : planning photoshoot
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23260>
salience        : 1.2103306289645843e-05
wikipedia_url   : -
====================
name            : brightnights nohernline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a232b0>
salience        : 1.2081255590601359e-05
wikipedia_url   : -
====================
name            : camera
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a233a0>
salience        : 1.1983525837422349e-05
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23490>
salience        : 1.1920216820726637e-05
wikipedia_url   : -
====================
name            : decorations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23530>
salience        : 1.185910605272511e-05
wikipedia_url   : -
====================
name            : lightuplondon stjameslondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a235d0>
salience        : 1.1856805940624326e-05
wikipedia_url   : -
====================
name            : rose window front
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23620>
salience        : 1.1856805940624326e-05
wikipedia_url   : -
====================
name            : nationalexpress
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a236c0>
salience        : 1.1831733900180552e-05
wikipedia_url   : https://en.wikipedia.org/wiki/National_Express_Coaches
====================
name            : darkermatters durhamresearch aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23760>
salience        : 1.1796898434113245e-05
wikipedia_url   : -
====================
name            : lumiere
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23800>
salience        : 1.173361306427978e-05
wikipedia_url   : -
====================
name            : check thames pulse pa lumierelondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a238a0>
salience        : 1.1731646736734547e-05
wikipedia_url   : -
====================
name            : menu cocktail senorcevicheldn lumiere
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23940>
salience        : 1.1729707694030367e-05
wikipedia_url   : -
====================
name            : lumierelondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23a30>
salience        : 1.171859275928e-05
wikipedia_url   : -
====================
name            : hotel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23ad0>
salience        : 1.1681997420964763e-05
wikipedia_url   : -
====================
name            : lighting inspiration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23b20>
salience        : 1.1671719221340027e-05
wikipedia_url   : -
====================
name            : river roamer discount
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23b70>
salience        : 1.1668452316371258e-05
wikipedia_url   : -
====================
name            : river roamer discount
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23bc0>
salience        : 1.1666846148727927e-05
wikipedia_url   : -
====================
name            : river roamer discount
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23c10>
salience        : 1.1666846148727927e-05
wikipedia_url   : -
====================
name            : gallery
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23d00>
salience        : 1.1663688383123372e-05
wikipedia_url   : -
====================
name            : print issue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23da0>
salience        : 1.1662134966172744e-05
wikipedia_url   : -
====================
name            : fire pokers mayor gallery
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23e40>
salience        : 1.1662134966172744e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23f30>
salience        : 1.1660293239401653e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f080>
salience        : 1.1658226867439225e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f170>
salience        : 1.1658226867439225e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f260>
salience        : 1.1650249689409975e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f350>
salience        : 1.1650249689409975e-05
wikipedia_url   : -
====================
name            : streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f440>
salience        : 1.1650249689409975e-05
wikipedia_url   : -
====================
name            : architecture streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f4e0>
salience        : 1.164832337963162e-05
wikipedia_url   : -
====================
name            : lights london streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f580>
salience        : 1.164454806712456e-05
wikipedia_url   : -
====================
name            : lights london streets
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f620>
salience        : 1.1642697245406453e-05
wikipedia_url   : -
====================
name            : visitlondon stjameslondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f670>
salience        : 1.1618952157732565e-05
wikipedia_url   : -
====================
name            : german
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f760>
salience        : 1.1604268365772441e-05
wikipedia_url   : https://en.wikipedia.org/wiki/Germany
====================
name            : fish
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f7b0>
salience        : 1.15728007585858e-05
wikipedia_url   : -
====================
name            : theresanappfohat aichoketrust camdenis wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f850>
salience        : 1.1430844097048976e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f8f0>
salience        : 1.1416823326726444e-05
wikipedia_url   : -
====================
name            : map
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f990>
salience        : 1.1416823326726444e-05
wikipedia_url   : -
====================
name            : stuff
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f9e0>
salience        : 1.140634594776202e-05
wikipedia_url   : -
====================
name            : odds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fa30>
salience        : 1.1399960385460872e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fad0>
salience        : 1.1398300557630137e-05
wikipedia_url   : -
====================
name            : spice girls
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fbc0>
salience        : 1.1396874469937757e-05
wikipedia_url   : -
====================
name            : cocktails jazz
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fc10>
salience        : 1.1396874469937757e-05
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fd00>
salience        : 1.1382653610780835e-05
wikipedia_url   : -
====================
name            : visitlondon moments
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fd50>
salience        : 1.1382398042769637e-05
wikipedia_url   : -
====================
name            : leaves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fdf0>
salience        : 1.1381919648556504e-05
wikipedia_url   : -
====================
name            : structures
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fe90>
salience        : 1.137967592512723e-05
wikipedia_url   : -
====================
name            : men
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7ff30>
salience        : 1.137967592512723e-05
wikipedia_url   : -
====================
name            : installation mazerestaurant
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7ff80>
salience        : 1.1377006558177527e-05
wikipedia_url   : -
====================
name            : friedrice
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27080>
salience        : 1.132640136347618e-05
wikipedia_url   : -
====================
name            : reactions
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27120>
salience        : 1.1321506462991238e-05
wikipedia_url   : -
====================
name            : conversation
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27210>
salience        : 1.1316779819026124e-05
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e272b0>
salience        : 1.1304630788799841e-05
wikipedia_url   : -
====================
name            : difference
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27350>
salience        : 1.1303501196380239e-05
wikipedia_url   : -
====================
name            : dail section
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e273f0>
salience        : 1.1303501196380239e-05
wikipedia_url   : -
====================
name            : simon harris
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e274e0>
salience        : 1.1303501196380239e-05
wikipedia_url   : -
====================
name            : parliament
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e275d0>
salience        : 1.1303501196380239e-05
wikipedia_url   : -
====================
name            : hosting amp
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27670>
salience        : 1.128758322010981e-05
wikipedia_url   : -
====================
name            : umbrella display answer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e276c0>
salience        : 1.1283875210210681e-05
wikipedia_url   : -
====================
name            : river health
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27760>
salience        : 1.1283875210210681e-05
wikipedia_url   : -
====================
name            : royalacademy
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27850>
salience        : 1.1283875210210681e-05
wikipedia_url   : -
====================
name            : façade
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e278a0>
salience        : 1.1283875210210681e-05
wikipedia_url   : -
====================
name            : animation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27940>
salience        : 1.1283875210210681e-05
wikipedia_url   : -
====================
name            : pictures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27a30>
salience        : 1.1276748409727588e-05
wikipedia_url   : -
====================
name            : poctech
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27b20>
salience        : 1.1276748409727588e-05
wikipedia_url   : -
====================
name            : locations
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27c10>
salience        : 1.1230678865103982e-05
wikipedia_url   : -
====================
name            : reasons
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27cb0>
salience        : 1.1225908565393183e-05
wikipedia_url   : -
====================
name            : thisissoho
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27da0>
salience        : 1.1210904631298035e-05
wikipedia_url   : -
====================
name            : everymancinema
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2c10>
salience        : 1.1151272701681592e-05
wikipedia_url   : -
====================
name            : festival goers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea27b0>
salience        : 1.1116590940218884e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19deb1c0>
salience        : 1.1115937923023012e-05
wikipedia_url   : -
====================
name            : wind rain help
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098f80>
salience        : 1.1115937923023012e-05
wikipedia_url   : -
====================
name            : book advance quote
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22098490>
salience        : 1.1107930731668603e-05
wikipedia_url   : -
====================
name            : research cosmologists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081ee0>
salience        : 1.1102061762358062e-05
wikipedia_url   : -
====================
name            : lanterncompany
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081990>
salience        : 1.110185075958725e-05
wikipedia_url   : -
====================
name            : pride
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a18d00>
salience        : 1.110185075958725e-05
wikipedia_url   : -
====================
name            : public
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46d50>
salience        : 1.10832033897168e-05
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a220beb20>
salience        : 1.1017205906682648e-05
wikipedia_url   : -
====================
name            : dishes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a99f80>
salience        : 1.1002332939824555e-05
wikipedia_url   : -
====================
name            : visitlondnon culturetrip
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85080>
salience        : 1.0997852768923622e-05
wikipedia_url   : -
====================
name            : victoria street
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85210>
salience        : 1.0956178812193684e-05
wikipedia_url   : -
====================
name            : camden mylocalculture camdenis camdenjonathan
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85350>
salience        : 1.0907456271525007e-05
wikipedia_url   : -
====================
name            : aists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85670>
salience        : 1.0849708814930636e-05
wikipedia_url   : -
====================
name            : transformation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85760>
salience        : 1.0629397365846671e-05
wikipedia_url   : -
====================
name            : eagle project
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85940>
salience        : 1.0571224265731871e-05
wikipedia_url   : -
====================
name            : site amp prep
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85a80>
salience        : 1.0477902833372355e-05
wikipedia_url   : -
====================
name            : site amp prep
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85b70>
salience        : 1.0476444913365413e-05
wikipedia_url   : -
====================
name            : route bakerlooline
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85da0>
salience        : 1.04750024547684e-05
wikipedia_url   : -
====================
name            : air
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85df0>
salience        : 1.0472167559782974e-05
wikipedia_url   : -
====================
name            : road closures
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85ee0>
salience        : 1.0450061381561682e-05
wikipedia_url   : -
====================
name            : southbankbid
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7170>
salience        : 1.0428421774122398e-05
wikipedia_url   : -
====================
name            : citycruises
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db72b0>
salience        : 1.042782241711393e-05
wikipedia_url   : -
====================
name            : ifo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7300>
salience        : 1.042119492922211e-05
wikipedia_url   : -
====================
name            : object jacques
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db73a0>
salience        : 1.042119492922211e-05
wikipedia_url   : -
====================
name            : battle bridge
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db76c0>
salience        : 1.042119492922211e-05
wikipedia_url   : -
====================
name            : alexsobel
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db77b0>
salience        : 1.0419073987577576e-05
wikipedia_url   : -
====================
name            : spirit chapter
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7850>
salience        : 1.0416986697237007e-05
wikipedia_url   : -
====================
name            : work presentation
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db78a0>
salience        : 1.0414933967695106e-05
wikipedia_url   : -
====================
name            : seesaws
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7990>
salience        : 1.0410925824544393e-05
wikipedia_url   : -
====================
name            : trail website htt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7a30>
salience        : 1.0410925824544393e-05
wikipedia_url   : -
====================
name            : tip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7ad0>
salience        : 1.0410925824544393e-05
wikipedia_url   : -
====================
name            : lumierelondon hllns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7b20>
salience        : 1.0410925824544393e-05
wikipedia_url   : -
====================
name            : version
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7cb0>
salience        : 1.0408967682451475e-05
wikipedia_url   : -
====================
name            : stretch riverside roll
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7e40>
salience        : 1.0408967682451475e-05
wikipedia_url   : -
====================
name            : raspberry ripple
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7ee0>
salience        : 1.0408967682451475e-05
wikipedia_url   : -
====================
name            : bubbles
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e170>
salience        : 1.0407039553683717e-05
wikipedia_url   : -
====================
name            : pair
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e2b0>
salience        : 1.0407039553683717e-05
wikipedia_url   : -
====================
name            : umusicuk
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e530>
salience        : 1.0352181561756879e-05
wikipedia_url   : -
====================
name            : guide visitlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e670>
salience        : 1.0305256182618905e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e760>
salience        : 1.0304723218723666e-05
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e7b0>
salience        : 1.0304661373083945e-05
wikipedia_url   : -
====================
name            : circus
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e8f0>
salience        : 1.0302996088284999e-05
wikipedia_url   : -
====================
name            : circus
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ead0>
salience        : 1.029795384965837e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ebc0>
salience        : 1.0252941137878224e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6eda0>
salience        : 1.0252941137878224e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ef30>
salience        : 1.0252941137878224e-05
wikipedia_url   : -
====================
name            : king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99080>
salience        : 1.0252941137878224e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99170>
salience        : 1.0252941137878224e-05
wikipedia_url   : -
====================
name            : circus king cross
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e992b0>
salience        : 1.0239643415843602e-05
wikipedia_url   : -
====================
name            : canvas
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e993a0>
salience        : 1.0238327377010137e-05
wikipedia_url   : -
====================
name            : kingscrossuk trafalgarsquare
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e994e0>
salience        : 1.0234736691927537e-05
wikipedia_url   : -
====================
name            : festival tfltravelales
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99620>
salience        : 1.0202348676102702e-05
wikipedia_url   : -
====================
name            : tfltravelales
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99800>
salience        : 1.0202348676102702e-05
wikipedia_url   : -
====================
name            : tfltph
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99940>
salience        : 1.0195367394771893e-05
wikipedia_url   : -
====================
name            : tfltrafficnews
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99990>
salience        : 1.0185581231780816e-05
wikipedia_url   : -
====================
name            : face change skull star
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdc8da0>
salience        : 1.0147626198886428e-05
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8af80>
salience        : 1.0059456144517753e-05
wikipedia_url   : -
====================
name            : aichoke strangecargoa
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a8adf0>
salience        : 9.999856956710573e-06
wikipedia_url   : -
====================
name            : によって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル benaresofficial benares
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a80>
salience        : 9.993415005737916e-06
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル culturetrip
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd4a30>
salience        : 9.991910701501183e-06
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1080>
salience        : 9.979390597436577e-06
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1170>
salience        : 9.979390597436577e-06
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd13a0>
salience        : 9.979390597436577e-06
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1580>
salience        : 9.977647096093278e-06
wikipedia_url   : -
====================
name            : bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1800>
salience        : 9.962989679479506e-06
wikipedia_url   : -
====================
name            : theo walcott museumselfieday youtubepanerprogram chenor poetasfood benaresofficial benares
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1a80>
salience        : 9.95916525425855e-06
wikipedia_url   : -
====================
name            : veoliauk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1c10>
salience        : 9.955893801816273e-06
wikipedia_url   : -
====================
name            : senorcevicheldn aichoketrust
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac2b0>
salience        : 9.92139302979922e-06
wikipedia_url   : -
====================
name            : visitlondon aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac580>
salience        : 9.908692845783662e-06
wikipedia_url   : -
====================
name            : brightnights
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac990>
salience        : 9.848059562500566e-06
wikipedia_url   : -
====================
name            : visitlondon carnabylondon 3
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05120>
salience        : 9.802035492612049e-06
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e054e0>
salience        : 9.801558007893618e-06
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e057b0>
salience        : 9.801558007893618e-06
wikipedia_url   : -
====================
name            : event spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05990>
salience        : 9.801558007893618e-06
wikipedia_url   : -
====================
name            : spectators
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05d50>
salience        : 9.798251085157972e-06
wikipedia_url   : -
====================
name            : kingscrossn1c carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67940>
salience        : 9.796609447221272e-06
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67b20>
salience        : 9.796509402804077e-06
wikipedia_url   : -
====================
name            : carnabylondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67e40>
salience        : 9.79479773377534e-06
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67f30>
salience        : 9.793455319595523e-06
wikipedia_url   : -
====================
name            : city
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67580>
salience        : 9.79189917416079e-06
wikipedia_url   : -
====================
name            : revenue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40490>
salience        : 9.762265108292922e-06
wikipedia_url   : -
====================
name            : revenue
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40760>
salience        : 9.762265108292922e-06
wikipedia_url   : -
====================
name            : embankment
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a6c0>
salience        : 9.7579959401628e-06
wikipedia_url   : -
====================
name            : embankment
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2a490>
salience        : 9.756606232258491e-06
wikipedia_url   : -
====================
name            : crowds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b171c0>
salience        : 9.749893251864705e-06
wikipedia_url   : -
====================
name            : members
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e824e0>
salience        : 9.74731028691167e-06
wikipedia_url   : -
====================
name            : stations
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8bc0>
salience        : 9.741946087160613e-06
wikipedia_url   : -
====================
name            : commuters
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8f30>
salience        : 9.740291716298088e-06
wikipedia_url   : -
====================
name            : road closures bus diversions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8440>
salience        : 9.722049981064629e-06
wikipedia_url   : -
====================
name            : blues
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1710>
salience        : 9.693829269963317e-06
wikipedia_url   : -
====================
name            : book info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1440>
salience        : 9.688369573268574e-06
wikipedia_url   : -
====================
name            : information
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21260>
salience        : 9.675104593043216e-06
wikipedia_url   : -
====================
name            : wharf oxotowerwharf
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21b70>
salience        : 9.655658686824609e-06
wikipedia_url   : -
====================
name            : shows
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21df0>
salience        : 9.613939255359583e-06
wikipedia_url   : -
====================
name            : shows
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8940>
salience        : 9.60639681579778e-06
wikipedia_url   : -
====================
name            : aist danielcanogar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cb70>
salience        : 9.57645897869952e-06
wikipedia_url   : -
====================
name            : canadaintheuk creativebandd
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0c580>
salience        : 9.556773875374347e-06
wikipedia_url   : -
====================
name            : umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd9210>
salience        : 9.493577636021655e-06
wikipedia_url   : -
====================
name            : south bank area
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27e40>
salience        : 9.489066542300861e-06
wikipedia_url   : -
====================
name            : sound surprise
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27ee0>
salience        : 9.467188647249714e-06
wikipedia_url   : -
====================
name            : pyramids
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c030>
salience        : 9.455503459321335e-06
wikipedia_url   : -
====================
name            : benares
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c120>
salience        : 9.417193723493256e-06
wikipedia_url   : -
====================
name            : reflectors
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c210>
salience        : 9.406692697666585e-06
wikipedia_url   : -
====================
name            : power
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c260>
salience        : 9.393687832925934e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c2b0>
salience        : 9.366841368319001e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c300>
salience        : 9.366841368319001e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c350>
salience        : 9.366841368319001e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c3a0>
salience        : 9.366841368319001e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c3f0>
salience        : 9.366841368319001e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c440>
salience        : 9.365249752590898e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c490>
salience        : 9.363679964735638e-06
wikipedia_url   : -
====================
name            : walk
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c4e0>
salience        : 9.354692338092718e-06
wikipedia_url   : -
====================
name            : defo
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c530>
salience        : 9.282440259994473e-06
wikipedia_url   : -
====================
name            : victoriabid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c5d0>
salience        : 9.239279279427137e-06
wikipedia_url   : -
====================
name            : victoriabid
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c670>
salience        : 9.237642188963946e-06
wikipedia_url   : -
====================
name            : builders
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c760>
salience        : 9.16169119591359e-06
wikipedia_url   : -
====================
name            : businessrates
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c850>
salience        : 9.144006071437616e-06
wikipedia_url   : -
====================
name            : film
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c8f0>
salience        : 9.079163646674715e-06
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c9e0>
salience        : 9.020634934131522e-06
wikipedia_url   : -
====================
name            : photos
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cad0>
salience        : 9.012883310788311e-06
wikipedia_url   : -
====================
name            : firstdatesirl sneachta futureofeurope iq2debate museumselfieday chenor poetasfood bbclondonnews
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cb70>
salience        : 8.954379154602066e-06
wikipedia_url   : -
====================
name            : londonisopen piccadillyline
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cc10>
salience        : 8.94789172889432e-06
wikipedia_url   : -
====================
name            : images
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cd00>
salience        : 8.903018169803545e-06
wikipedia_url   : -
====================
name            : volunteers others
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cda0>
salience        : 8.903018169803545e-06
wikipedia_url   : -
====================
name            : edition
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9ce90>
salience        : 8.900407010514755e-06
wikipedia_url   : -
====================
name            : music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9cf30>
salience        : 8.899124622985255e-06
wikipedia_url   : -
====================
name            : wine bar menu aster
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c030>
salience        : 8.897857696865685e-06
wikipedia_url   : -
====================
name            : children
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c120>
salience        : 8.897857696865685e-06
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c1c0>
salience        : 8.896605322661344e-06
wikipedia_url   : -
====================
name            : sample music
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c2b0>
salience        : 8.896605322661344e-06
wikipedia_url   : -
====================
name            : trial
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c300>
salience        : 8.89536659087753e-06
wikipedia_url   : -
====================
name            : leaves
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c3a0>
salience        : 8.89536659087753e-06
wikipedia_url   : -
====================
name            : energy
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c440>
salience        : 8.894142411008943e-06
wikipedia_url   : -
====================
name            : hand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c490>
salience        : 8.894142411008943e-06
wikipedia_url   : -
====================
name            : sta planning visit look website
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c4e0>
salience        : 8.892931873560883e-06
wikipedia_url   : -
====================
name            : market
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c580>
salience        : 8.89173497853335e-06
wikipedia_url   : -
====================
name            : action format
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c620>
salience        : 8.89173497853335e-06
wikipedia_url   : -
====================
name            : pimlico
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c6c0>
salience        : 8.89173497853335e-06
wikipedia_url   : -
====================
name            : image
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c760>
salience        : 8.89173497853335e-06
wikipedia_url   : -
====================
name            : festival light voyage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c7b0>
salience        : 8.890550816431642e-06
wikipedia_url   : -
====================
name            : round
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c800>
salience        : 8.890550816431642e-06
wikipedia_url   : -
====================
name            : ceainly
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c8a0>
salience        : 8.88938029675046e-06
wikipedia_url   : -
====================
name            : feelings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c940>
salience        : 8.88938029675046e-06
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8c9e0>
salience        : 8.881489520717878e-06
wikipedia_url   : -
====================
name            : capital
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ca80>
salience        : 8.877143045538105e-06
wikipedia_url   : -
====================
name            : eye page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cb20>
salience        : 8.833757419779431e-06
wikipedia_url   : -
====================
name            : eye page
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cbc0>
salience        : 8.832594176055863e-06
wikipedia_url   : -
====================
name            : meals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cc10>
salience        : 8.817236448521726e-06
wikipedia_url   : -
====================
name            : リュミエール ロンドン がスタート ウェストエンド キングス クロス メイフェアなどロンドン各所を舞台に 光を使ったアートが繰り広げられる 画像は2016年のリュミエールから carnabylondon 3
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ccb0>
salience        : 8.795818757789675e-06
wikipedia_url   : -
====================
name            : plasticrecycling bitc bermudae
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cd50>
salience        : 8.769431588007137e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cdf0>
salience        : 8.73446788318688e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8ce90>
salience        : 8.73446788318688e-06
wikipedia_url   : -
====================
name            : piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e8cf30>
salience        : 8.728729881113395e-06
wikipedia_url   : -
====================
name            : piece
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3030>
salience        : 8.727342901693191e-06
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3080>
salience        : 8.725973202672321e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3120>
salience        : 8.725973202672321e-06
wikipedia_url   : -
====================
name            : thinking
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df31c0>
salience        : 8.644895387988072e-06
wikipedia_url   : -
====================
name            : etching london thames
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3260>
salience        : 8.594456630817149e-06
wikipedia_url   : -
====================
name            : preparations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3300>
salience        : 8.564202289562672e-06
wikipedia_url   : -
====================
name            : offer
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3350>
salience        : 8.417413482675329e-06
wikipedia_url   : -
====================
name            : granarysquare kingscross euston
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df33a0>
salience        : 8.410256668867078e-06
wikipedia_url   : -
====================
name            : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル lovecamden
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3440>
salience        : 8.346579306817148e-06
wikipedia_url   : -
====================
name            : cassieldotcom cosmoscope
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df34e0>
salience        : 8.342504770553205e-06
wikipedia_url   : -
====================
name            : nofilter traceyemin
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3580>
salience        : 8.32231125968974e-06
wikipedia_url   : -
====================
name            : ways
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df35d0>
salience        : 8.318018444697373e-06
wikipedia_url   : -
====================
name            : visitlondon visitlondon tfltrafficnews
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3670>
salience        : 8.250473001680803e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3710>
salience        : 8.204761797969695e-06
wikipedia_url   : -
====================
name            : volunteers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3800>
salience        : 8.201877790270373e-06
wikipedia_url   : -
====================
name            : spirit installation culturetrip
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3850>
salience        : 8.160414836311247e-06
wikipedia_url   : -
====================
name            : solomongreyband details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df38a0>
salience        : 8.143812010530382e-06
wikipedia_url   : -
====================
name            : aboutlondon uk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3940>
salience        : 8.134928066283464e-06
wikipedia_url   : -
====================
name            : aichoketrust uk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3990>
salience        : 8.132065886456985e-06
wikipedia_url   : -
====================
name            : miss
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df39e0>
salience        : 8.069774594332557e-06
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3a80>
salience        : 8.045539289014414e-06
wikipedia_url   : -
====================
name            : awork westminster cathedral
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3b20>
salience        : 7.97196389612509e-06
wikipedia_url   : -
====================
name            : aquarium benedetto
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3bc0>
salience        : 7.963035386637785e-06
wikipedia_url   : -
====================
name            : aist grosvenor_gbi
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3c60>
salience        : 7.961975825310219e-06
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3d50>
salience        : 7.960583388921805e-06
wikipedia_url   : -
====================
name            : migrations flamingos
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3da0>
salience        : 7.938031558296643e-06
wikipedia_url   : -
====================
name            : hollywood
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3e90>
salience        : 7.926435500849038e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Hollywood
====================
name            : spire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3ee0>
salience        : 7.901573553681374e-06
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3f30>
salience        : 7.898827789176721e-06
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19df3f80>
salience        : 7.898793228378054e-06
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf030>
salience        : 7.898793228378054e-06
wikipedia_url   : -
====================
name            : spire
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf080>
salience        : 7.898793228378054e-06
wikipedia_url   : -
====================
name            : crowds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf170>
salience        : 7.896554052422289e-06
wikipedia_url   : -
====================
name            : menu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf1c0>
salience        : 7.892174835433252e-06
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf260>
salience        : 7.890903361840174e-06
wikipedia_url   : -
====================
name            : victoriabid lovelondon oxotowerwharf
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf300>
salience        : 7.890672350185923e-06
wikipedia_url   : -
====================
name            : planning trip
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf3a0>
salience        : 7.887189894972835e-06
wikipedia_url   : -
====================
name            : spirit
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf440>
salience        : 7.885982995503582e-06
wikipedia_url   : -
====================
name            : place
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf490>
salience        : 7.885671038820874e-06
wikipedia_url   : -
====================
name            : church
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf580>
salience        : 7.842991180950776e-06
wikipedia_url   : -
====================
name            : catch flamingo flyway
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf620>
salience        : 7.821174222044647e-06
wikipedia_url   : -
====================
name            : rackowe
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf6c0>
salience        : 7.816532161086798e-06
wikipedia_url   : -
====================
name            : accommodation
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf760>
salience        : 7.813192496541888e-06
wikipedia_url   : -
====================
name            : dip steller
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf800>
salience        : 7.812105650373269e-06
wikipedia_url   : -
====================
name            : demand
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf8a0>
salience        : 7.808916052454151e-06
wikipedia_url   : -
====================
name            : tunnel
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbf990>
salience        : 7.808916052454151e-06
wikipedia_url   : -
====================
name            : home
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfa30>
salience        : 7.808916052454151e-06
wikipedia_url   : -
====================
name            : hope
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfa80>
salience        : 7.808916052454151e-06
wikipedia_url   : -
====================
name            : physics
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfb20>
salience        : 7.807875590515323e-06
wikipedia_url   : -
====================
name            : projection castle fool paradise voyage smash hit
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfbc0>
salience        : 7.807875590515323e-06
wikipedia_url   : -
====================
name            : cuisine
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfc60>
salience        : 7.807875590515323e-06
wikipedia_url   : -
====================
name            : aichoketrust wave construction
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfcb0>
salience        : 7.80684786150232e-06
wikipedia_url   : -
====================
name            : daniel canogar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfd50>
salience        : 7.681428542127833e-06
wikipedia_url   : https://ca.wikipedia.org/wiki/Daniel_Canogar
====================
name            : ramibebawi _kanva entre les rangs
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfdf0>
salience        : 7.661791642021853e-06
wikipedia_url   : -
====================
name            : createvictoria victoriabid mickfusion
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfe90>
salience        : 7.659846232854761e-06
wikipedia_url   : -
====================
name            : altheaefunshile
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbfee0>
salience        : 7.6241335591475945e-06
wikipedia_url   : -
====================
name            : soltnews guide
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dbff30>
salience        : 7.610432476212736e-06
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82030>
salience        : 7.603783615195425e-06
wikipedia_url   : -
====================
name            : photo
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a820d0>
salience        : 7.602509413118241e-06
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82170>
salience        : 7.602509413118241e-06
wikipedia_url   : -
====================
name            : light bulbs
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82210>
salience        : 7.601252491440391e-06
wikipedia_url   : -
====================
name            : tips
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82260>
salience        : 7.600012850161875e-06
wikipedia_url   : -
====================
name            : traffic
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82300>
salience        : 7.600012850161875e-06
wikipedia_url   : -
====================
name            : journey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a823a0>
salience        : 7.497124443034409e-06
wikipedia_url   : -
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82490>
salience        : 7.401282346108928e-06
wikipedia_url   : -
====================
name            : groups
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82580>
salience        : 7.401282346108928e-06
wikipedia_url   : -
====================
name            : redbridgeumbrellaproject group
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82620>
salience        : 7.387625373667106e-06
wikipedia_url   : -
====================
name            : restaurants
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82710>
salience        : 7.386480774584925e-06
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a827b0>
salience        : 7.286697837116662e-06
wikipedia_url   : -
====================
name            : soundtrack
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a828a0>
salience        : 7.286697837116662e-06
wikipedia_url   : -
====================
name            : pre amp post performance coffee cocktails amp cornbread carnabylondon
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82940>
salience        : 7.283034847205272e-06
wikipedia_url   : -
====================
name            : research cosmologists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a829e0>
salience        : 7.125560387066798e-06
wikipedia_url   : -
====================
name            : cruise sightseeing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82a30>
salience        : 7.0592877818853594e-06
wikipedia_url   : -
====================
name            : cruise sightseeing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82a80>
salience        : 7.0592877818853594e-06
wikipedia_url   : -
====================
name            : paners
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82b70>
salience        : 7.053308763715904e-06
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82c60>
salience        : 7.05329102856922e-06
wikipedia_url   : -
====================
name            : corner
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82d50>
salience        : 7.052140517771477e-06
wikipedia_url   : -
====================
name            : cruise sightseeing
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82da0>
salience        : 7.052140517771477e-06
wikipedia_url   : -
====================
name            : coat
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82df0>
salience        : 6.987621418375056e-06
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a82ee0>
salience        : 6.940580533409957e-06
wikipedia_url   : -
====================
name            : families
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30030>
salience        : 6.940580533409957e-06
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30080>
salience        : 6.931078132765833e-06
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a300d0>
salience        : 6.931078132765833e-06
wikipedia_url   : -
====================
name            : programme
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30170>
salience        : 6.8775461841141805e-06
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de8710>
salience        : 6.836178727098741e-06
wikipedia_url   : -
====================
name            : newsletter
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0210>
salience        : 6.818523161200574e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0300>
salience        : 6.8146828198223375e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa03a0>
salience        : 6.813457730459049e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa03f0>
salience        : 6.813457730459049e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0580>
salience        : 6.812249921495095e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa07b0>
salience        : 6.811059847677825e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0850>
salience        : 6.809886599512538e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa08f0>
salience        : 6.809886599512538e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0990>
salience        : 6.809886599512538e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa09e0>
salience        : 6.808729722251883e-06
wikipedia_url   : -
====================
name            : lightbulbs pulse amp flash response
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0b70>
salience        : 6.808729722251883e-06
wikipedia_url   : -
====================
name            : colleagues
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0d50>
salience        : 6.802108146075625e-06
wikipedia_url   : -
====================
name            : spa access mudpack massage cocktails amp dinner
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0df0>
salience        : 6.7635146479005925e-06
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon ivysohobrass
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22aa0ee0>
salience        : 6.73787417326821e-06
wikipedia_url   : -
====================
name            : carnabylondon lumierelondon ginlovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24080>
salience        : 6.73787417326821e-06
wikipedia_url   : -
====================
name            : aists aichoketrust festivaloflights edvaizey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e241c0>
salience        : 6.728750577167375e-06
wikipedia_url   : -
====================
name            : rangs kanvaarchitecture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24300>
salience        : 6.722119451296749e-06
wikipedia_url   : -
====================
name            : david batchelor 60minutespectrum
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24440>
salience        : 6.718995336996159e-06
wikipedia_url   : -
====================
name            : streetfood kottu
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e244e0>
salience        : 6.690649115626002e-06
wikipedia_url   : -
====================
name            : sri lankan
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e246c0>
salience        : 6.690649115626002e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Sri_Lankan_cuisine
====================
name            : brightlights southbanklondon wearewaterloouk canonukandie
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24b70>
salience        : 6.687757377221715e-06
wikipedia_url   : -
====================
name            : daniel cadogar
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24cb0>
salience        : 6.684965228487272e-06
wikipedia_url   : -
====================
name            : google
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24e40>
salience        : 6.679652869934216e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Google
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e24f80>
salience        : 6.6766874624590855e-06
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23170>
salience        : 6.673420102742966e-06
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23300>
salience        : 6.673420102742966e-06
wikipedia_url   : -
====================
name            : sta planning visit countdown
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23350>
salience        : 6.673420102742966e-06
wikipedia_url   : -
====================
name            : exhibition
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23440>
salience        : 6.672359631920699e-06
wikipedia_url   : -
====================
name            : asian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23580>
salience        : 6.667718025710201e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Asia
====================
name            : design architecture studio catch giant
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23710>
salience        : 6.639745606662473e-06
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a238f0>
salience        : 6.544578809553059e-06
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23a80>
salience        : 6.54343557471293e-06
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23d50>
salience        : 6.54343557471293e-06
wikipedia_url   : -
====================
name            : makeovers
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a23ee0>
salience        : 6.54343557471293e-06
wikipedia_url   : -
====================
name            : makeovers
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f030>
salience        : 6.541196853504516e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f120>
salience        : 6.540100457641529e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f210>
salience        : 6.540100457641529e-06
wikipedia_url   : -
====================
name            : makeover
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f300>
salience        : 6.539019068441121e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f3f0>
salience        : 6.537952685903292e-06
wikipedia_url   : -
====================
name            : research cosmologists
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f530>
salience        : 6.537952685903292e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f6c0>
salience        : 6.53689994578599e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f800>
salience        : 6.53689994578599e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7f940>
salience        : 6.535860848089214e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fb20>
salience        : 6.535860848089214e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fc60>
salience        : 6.535860848089214e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fda0>
salience        : 6.535860848089214e-06
wikipedia_url   : -
====================
name            : flash beam
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e7fee0>
salience        : 6.535860848089214e-06
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19ea2e90>
salience        : 6.480264801211888e-06
wikipedia_url   : -
====================
name            : 英国 いよいよ今週18日 木 から光の祭典 リュミエール ロンドン がスタート ウェストエンド キングス クロス メイフェアなどロンドン各所を舞台に 光を使ったアートが繰り広げられる 画像は2016年のリュミエールから newsdigest 英国 いよいよ今週18日 木 から光の祭典 リュミエール ロンドン がスタート ウェストエンド キングス クロス メイフェアなどロンドン各所を舞台に 光を使ったアートが繰り広げられる 画像は2016年のリュミエールから 英国 いよいよ今週18日 木 から光の祭典
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19debdf0>
salience        : 6.4633240981493145e-06
wikipedia_url   : -
====================
name            : suppo
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22081cb0>
salience        : 6.414933977794135e-06
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a46350>
salience        : 6.401555310731055e-06
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a2206df80>
salience        : 6.397175184247317e-06
wikipedia_url   : -
====================
name            : texture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85030>
salience        : 6.397175184247317e-06
wikipedia_url   : -
====================
name            : promotions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e852b0>
salience        : 6.246097200346412e-06
wikipedia_url   : -
====================
name            : launch head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85800>
salience        : 6.246097200346412e-06
wikipedia_url   : -
====================
name            : launch head
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e85b20>
salience        : 6.246097200346412e-06
wikipedia_url   : -
====================
name            : promotions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7030>
salience        : 6.246097200346412e-06
wikipedia_url   : -
====================
name            : promotions
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7210>
salience        : 6.246097200346412e-06
wikipedia_url   : -
====================
name            : durhamresearch
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db73f0>
salience        : 6.244072665140266e-06
wikipedia_url   : -
====================
name            : gardens
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7940>
salience        : 6.239450613065856e-06
wikipedia_url   : -
====================
name            : fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db7bc0>
salience        : 6.2371650528803e-06
wikipedia_url   : -
====================
name            : board
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e030>
salience        : 6.225045126484474e-06
wikipedia_url   : -
====================
name            : board
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e440>
salience        : 6.224188382475404e-06
wikipedia_url   : -
====================
name            : board
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e6c0>
salience        : 6.224188382475404e-06
wikipedia_url   : -
====================
name            : feelings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6e990>
salience        : 6.218372618604917e-06
wikipedia_url   : -
====================
name            : ceainly
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a6ef80>
salience        : 6.218372618604917e-06
wikipedia_url   : -
====================
name            : oppounities
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99b20>
salience        : 6.218372618604917e-06
wikipedia_url   : -
====================
name            : roundabout
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99d50>
salience        : 6.218372618604917e-06
wikipedia_url   : -
====================
name            : aichoketrust visitlondon welcomebreak
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99ee0>
salience        : 6.1572018239530735e-06
wikipedia_url   : -
====================
name            : aichoketrust fayechughes
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99f80>
salience        : 6.155927167128539e-06
wikipedia_url   : -
====================
name            : jsheappey
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e99440>
salience        : 6.155927167128539e-06
wikipedia_url   : -
====================
name            : italian
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e998a0>
salience        : 6.152228706923779e-06
wikipedia_url   : -
====================
name            : american
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdd42b0>
salience        : 6.151035449875053e-06
wikipedia_url   : https://en.wikipedia.org/wiki/United_States
====================
name            : daan roosegaarde viually
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1940>
salience        : 6.148704414954409e-06
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd1d50>
salience        : 6.131441296020057e-06
wikipedia_url   : -
====================
name            : river cruises meals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dac440>
salience        : 6.093190222600242e-06
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dacc60>
salience        : 6.093190222600242e-06
wikipedia_url   : -
====================
name            : fitzpanership
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05670>
salience        : 6.090041097195353e-06
wikipedia_url   : -
====================
name            : route stjameslondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05850>
salience        : 6.089020644139964e-06
wikipedia_url   : -
====================
name            : meals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05a30>
salience        : 6.0870206652907655e-06
wikipedia_url   : -
====================
name            : tickets
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e05ee0>
salience        : 6.0870206652907655e-06
wikipedia_url   : -
====================
name            : installation paner
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67a80>
salience        : 6.086040684749605e-06
wikipedia_url   : -
====================
name            : stories
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a67e90>
salience        : 6.081039373384556e-06
wikipedia_url   : -
====================
name            : leakestarches timeoutlondon aichoketrust imakefings
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a673a0>
salience        : 5.997965217829915e-06
wikipedia_url   : -
====================
name            : river cruises
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a401c0>
salience        : 5.925736786593916e-06
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40030>
salience        : 5.924701326875947e-06
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a40e90>
salience        : 5.920702733419603e-06
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a2ac60>
salience        : 5.920702733419603e-06
wikipedia_url   : -
====================
name            : river cruises
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22b17620>
salience        : 5.91973685004632e-06
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e82490>
salience        : 5.91973685004632e-06
wikipedia_url   : -
====================
name            : treat
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19dd8080>
salience        : 5.91973685004632e-06
wikipedia_url   : -
====================
name            : bbcradiolondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a1fdb1ee0>
salience        : 5.809550657431828e-06
wikipedia_url   : -
====================
name            : gt
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21ad0>
salience        : 5.802508894703351e-06
wikipedia_url   : -
====================
name            : spa mondrianldn
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a21940>
salience        : 5.775680619990453e-06
wikipedia_url   : -
====================
name            : event merchandising
type            : CONSUMER_GOOD
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19db8bc0>
salience        : 5.721291472582379e-06
wikipedia_url   : -
====================
name            : world
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e0cbc0>
salience        : 5.552160018851282e-06
wikipedia_url   : -
====================
name            : festival aboutlondon
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27030>
salience        : 5.549478373723105e-06
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e270d0>
salience        : 5.548607987293508e-06
wikipedia_url   : -
====================
name            : installation aboutlondon
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27170>
salience        : 5.5468990467488766e-06
wikipedia_url   : -
====================
name            : fitzpanership suppoed wellcometrust aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27260>
salience        : 5.532162049348699e-06
wikipedia_url   : -
====================
name            : eventmerch aichoketrust visitlondon victoriabid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e273a0>
salience        : 5.45214652447612e-06
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27440>
salience        : 5.429274096968584e-06
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27530>
salience        : 5.422693902801257e-06
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27580>
salience        : 5.421081368695013e-06
wikipedia_url   : -
====================
name            : info
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27620>
salience        : 5.418561613623751e-06
wikipedia_url   : -
====================
name            : saltyardldn visitlondon saltyardgroup timeouteatdrink aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e277b0>
salience        : 5.3948606364429e-06
wikipedia_url   : -
====================
name            : spirit installation watch video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e278f0>
salience        : 5.352117113943677e-06
wikipedia_url   : -
====================
name            : caravanresto
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e279e0>
salience        : 5.346622856450267e-06
wikipedia_url   : -
====================
name            : sampling colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27a80>
salience        : 5.344889814296039e-06
wikipedia_url   : -
====================
name            : sampling colours
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27ad0>
salience        : 5.344040346244583e-06
wikipedia_url   : -
====================
name            : rami bebawi
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27c60>
salience        : 5.253871222521411e-06
wikipedia_url   : -
====================
name            : baring_found aichoketrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27df0>
salience        : 5.158078693057178e-06
wikipedia_url   : -
====================
name            : computer simulation universe
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19e27f80>
salience        : 5.1280553634569515e-06
wikipedia_url   : -
====================
name            : space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c080>
salience        : 5.121130925545003e-06
wikipedia_url   : -
====================
name            : exhibition space
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c0d0>
salience        : 5.121130925545003e-06
wikipedia_url   : -
====================
name            : sample
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a9c1c0>
salience        : 5.118720309837954e-06
wikipedia_url   : -
====================
name            : heritage
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30210>
salience        : 5.056583177065477e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a302b0>
salience        : 4.892376182397129e-06
wikipedia_url   : -
====================
name            : check pieces
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30350>
salience        : 4.892376182397129e-06
wikipedia_url   : -
====================
name            : paper lanterns
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a303a0>
salience        : 4.8819124458532315e-06
wikipedia_url   : -
====================
name            : south bank night tflriver fun
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a303f0>
salience        : 4.880169399257284e-06
wikipedia_url   : -
====================
name            : human hea order disorder atoms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30440>
salience        : 4.878476374869933e-06
wikipedia_url   : -
====================
name            : human hea order disorder atoms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30490>
salience        : 4.877647825196618e-06
wikipedia_url   : -
====================
name            : human hea order disorder atoms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a304e0>
salience        : 4.877647825196618e-06
wikipedia_url   : -
====================
name            : human hea order disorder atoms
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30530>
salience        : 4.877647825196618e-06
wikipedia_url   : -
====================
name            : loads
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30580>
salience        : 4.876023922406603e-06
wikipedia_url   : -
====================
name            : anyone
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30670>
salience        : 4.875228569289902e-06
wikipedia_url   : -
====================
name            : sculpture
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30710>
salience        : 4.873668785876362e-06
wikipedia_url   : -
====================
name            : solomongreyband
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30760>
salience        : 4.790053480974166e-06
wikipedia_url   : -
====================
name            : lcr wearewaterloouk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a307b0>
salience        : 4.7812145567149855e-06
wikipedia_url   : -
====================
name            : sculptures
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a308a0>
salience        : 4.755068403028417e-06
wikipedia_url   : -
====================
name            : living canvasses
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a308f0>
salience        : 4.735469246952562e-06
wikipedia_url   : -
====================
name            : richard russell
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30990>
salience        : 4.614059889718192e-06
wikipedia_url   : -
====================
name            : lumiere_london visitlondon ldn_gov mondaymotivation
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30a30>
salience        : 4.6115892473608255e-06
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30b20>
salience        : 4.6050126911723055e-06
wikipedia_url   : -
====================
name            : people
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30c10>
salience        : 4.602564786182484e-06
wikipedia_url   : -
====================
name            : food vagabond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30cb0>
salience        : 4.599458407028578e-06
wikipedia_url   : -
====================
name            : food vagabond
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30d50>
salience        : 4.597967745212372e-06
wikipedia_url   : -
====================
name            : work
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30da0>
salience        : 4.540996542345965e-06
wikipedia_url   : -
====================
name            : coast
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30e40>
salience        : 4.37624203186715e-06
wikipedia_url   : -
====================
name            : hampstead heath
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a30ee0>
salience        : 4.3663399083015975e-06
wikipedia_url   : https://en.wikipedia.org/wiki/Hampstead_Heath
====================
name            : night birds
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0030>
salience        : 4.286626335670007e-06
wikipedia_url   : -
====================
name            : birds
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0080>
salience        : 4.286626335670007e-06
wikipedia_url   : -
====================
name            : impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0120>
salience        : 4.28222620030283e-06
wikipedia_url   : -
====================
name            : impulse
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de01c0>
salience        : 4.28222620030283e-06
wikipedia_url   : -
====================
name            : diary
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0260>
salience        : 4.2815272536245175e-06
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de02b0>
salience        : 4.260430614522193e-06
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0300>
salience        : 4.2590495468175504e-06
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0350>
salience        : 4.258372882759431e-06
wikipedia_url   : -
====================
name            : half price entry
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de03a0>
salience        : 4.257704404153628e-06
wikipedia_url   : -
====================
name            : anything
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0440>
salience        : 4.174698005954269e-06
wikipedia_url   : -
====================
name            : details
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de04e0>
salience        : 4.084124157088809e-06
wikipedia_url   : -
====================
name            : prizes tag amp follow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0530>
salience        : 3.909325641870964e-06
wikipedia_url   : -
====================
name            : snaps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0580>
salience        : 3.909325641870964e-06
wikipedia_url   : -
====================
name            : skies
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de05d0>
salience        : 3.909325641870964e-06
wikipedia_url   : -
====================
name            : snaps
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0620>
salience        : 3.908632606908213e-06
wikipedia_url   : -
====================
name            : prizes tag amp follow
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0670>
salience        : 3.908632606908213e-06
wikipedia_url   : -
====================
name            : merchandising
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0710>
salience        : 3.905312496499391e-06
wikipedia_url   : -
====================
name            : children
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0800>
salience        : 3.904675395460799e-06
wikipedia_url   : -
====================
name            : guys
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de08a0>
salience        : 3.904675395460799e-06
wikipedia_url   : -
====================
name            : decoration
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0940>
salience        : 3.904046479874523e-06
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0990>
salience        : 3.870899490721058e-06
wikipedia_url   : -
====================
name            : dials
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de09e0>
salience        : 3.870899490721058e-06
wikipedia_url   : -
====================
name            : lumierelondon carnabylondon oxotowerwharf
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0a80>
salience        : 3.775442337428103e-06
wikipedia_url   : -
====================
name            : 18th westminstercathedral createvictoria victoriabid victoriabid
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0b20>
salience        : 3.709229076775955e-06
wikipedia_url   : -
====================
name            : installation imakefings inpaddington
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0bc0>
salience        : 3.6452695439948e-06
wikipedia_url   : -
====================
name            : workspace servicedoffices coworking umusicuk
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0c10>
salience        : 3.5986788589070784e-06
wikipedia_url   : -
====================
name            : visitlondon anews lumierelondon aichoketrust mayoroflondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0cb0>
salience        : 3.5962500533059938e-06
wikipedia_url   : -
====================
name            : chinatown
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0da0>
salience        : 3.5010111787414644e-06
wikipedia_url   : -
====================
name            : chinolatino co
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0e40>
salience        : 3.4338679597567534e-06
wikipedia_url   : -
====================
name            : attention flamingo fans
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0ee0>
salience        : 3.4332504128542496e-06
wikipedia_url   : -
====================
name            : telegraph aicle
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0f30>
salience        : 3.430293190831435e-06
wikipedia_url   : -
====================
name            : power alter mood
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a19de0f80>
salience        : 3.430293190831435e-06
wikipedia_url   : -
====================
name            : rituals
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d080>
salience        : 3.430293190831435e-06
wikipedia_url   : -
====================
name            : teaser
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d120>
salience        : 3.4291665542696137e-06
wikipedia_url   : -
====================
name            : gem
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d170>
salience        : 3.4286144909856375e-06
wikipedia_url   : -
====================
name            : steen
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d210>
salience        : 3.2259279123536544e-06
wikipedia_url   : -
====================
name            : watch video
type            : WORK_OF_ART
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d300>
salience        : 2.9943437311885646e-06
wikipedia_url   : -
====================
name            : 18th westminstercathedral createvictoria victoriabid offers_london
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d3a0>
salience        : 2.9700581762881484e-06
wikipedia_url   : -
====================
name            : vagabondwines visitlondnon wabbey
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d440>
salience        : 2.6058701223519165e-06
wikipedia_url   : -
====================
name            : lcr wearewaterloouk umusicuk
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d4e0>
salience        : 2.532148528189282e-06
wikipedia_url   : -
====================
name            : original_tour
type            : EVENT
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d580>
salience        : 2.3072836938808905e-06
wikipedia_url   : -
====================
name            : nuttyhaze_photos ig durham_uni
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d5d0>
salience        : 2.3061545562086394e-06
wikipedia_url   : -
====================
name            : se1
type            : LOCATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d670>
salience        : 2.028414883170626e-06
wikipedia_url   : -
====================
name            : suppoed wellcometrust
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d710>
salience        : 2.026642960117897e-06
wikipedia_url   : -
====================
name            : visitlondon anews lumierelondon aichoketrust mayoroflondon 7dialslondon
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d7b0>
salience        : 1.9766662262554746e-06
wikipedia_url   : -
====================
name            : baring_found wabbey
type            : ORGANIZATION
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d850>
salience        : 1.8705673028307501e-06
wikipedia_url   : -
====================
name            : kingscrossn1c kxquaerly
type            : PERSON
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d8f0>
salience        : 1.5263788100128295e-06
wikipedia_url   : -
====================
name            : installations
type            : OTHER
metadata        : <google.protobuf.pyext._message.ScalarMapContainer object at 0x1a22a4d990>
salience        : 4.138320974789167e-08
wikipedia_url   : -

Syntax analysis

In [108]:
language_client = language.LanguageServiceClient()

# The text to analyze
text = sentence_tokenized1 #(sentence_tokenized1[:100])
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

tokens = language_client.analyze_syntax(document).tokens

# part-of-speech tags from enums.PartOfSpeech.Tag

pos_tag = ('UNKNOWN', 'ADJ', 'ADP', 'ADV', 'CONJ', 'DET', 'NOUN', 'NUM',
               'PRON', 'PRT', 'PUNCT', 'VERB', 'X', 'AFFIX')

for token in tokens:
    print(u'{}: {}'.format(pos_tag[token.part_of_speech.tag],
                               token.text.content))
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: _designjunction
NOUN: visit
NOUN: year
ADJ: many
NOUN: installations
NOUN: favourites
VERB: loved
NOUN: installation
ADJ: dutch
X: aist
X: daan
X: roosegaarde
VERB: granary
ADJ: square
ADJ: kingscrossn1c
NOUN: fish
NOUN: phone
NOUN: booth
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: nofilters
VERB: aichoketrust
ADV: ever
VERB: wondered
NOUN: people
ADV: behind
VERB: read
NOUN: interview
NOUN: harry
NOUN: qedproductions
NOUN: pa
NOUN: panership
NOUN: technicians_mih
NOUN: techniciansmakeithappen
VERB: see
NOUN: selection
NOUN: favourite
NOUN: installations
NOUN: year
X: aichoketrust
X: visitlondon
X: ldn_gov
X: bye
X: bye
NOUN: case
VERB: missed
NOUN: weekend
NOUN: hotelcaferoyal
VERB: looked
ADP: kingscrossn1c
VERB: visiting
NOUN: kingscrossn1c
NOUN: weekend
VERB: indulge
DET: a
NOUN: pay
NOUN: illustrationhq
NOUN: visit
NOUN: exhibitions
NOUN: gerald
VERB: scarfe
ADJ: ready
VERB: perused
VERB: bit
NOUN: peace
ADJ: middle
ADJ: central
ADJ: london
NOUN: shitshow
NOUN: trumpshutdown
NOUN: thank
VERB: dazzled
VERB: inspired
ADJ: delicious
NOUN: escape
ADJ: colourful
NOUN: wonderland
NOUN: aichoketrust
NOUN: mayoroflondon
NOUN: visitlondon
VERB: see
ADJ: lumierelondon2018
NOUN: weekend
ADV: absolutely
VERB: loved
NOUN: wildlife
NOUN: theme
NOUN: leicester
NOUN: square
ADV: paicularly
ADV: incredibly
ADJ: detailed
NOUN: frogs
NOUN: amp
NOUN: toad
ADJ: middle
ADJ: beautiful
ADV: well
VERB: done
VERB: involved
NOUN: visitlondon
NOUN: deeeeelicious
NOUN: meal
NOUN: thelightermankx
NOUN: pa
NOUN: bihday
NOUN: weekend
NOUN: london
NOUN: town
VERB: visiting
ADV: equally
ADJ: awesome
NUM: 2018
VERB: comes
ADV: close
NOUN: tomorrow
VERB: read
NOUN: ceo
NOUN: pattiharris
NUM: 2016
NOUN: op
NOUN: ed
ADJ: first
NOUN: festival
NOUN: public
DET: a
ADJ: positive
NOUN: impact
NOUN: cities
NOUN: communities
VERB: aichoketrust
NOUN: love
NOUN: video
NOUN: electricpedals
NOUN: cirquebijou
NOUN: dancing
NOUN: front
VERB: rose
NOUN: mickfusion
NOUN: highlights
VERB: victoriabid
VERB: released
NOUN: photos
NOUN: flickr
NOUN: pity
NOUN: uk
NOUN: freedom
NOUN: panorama
VERB: lightshows
ADJ: messy
NOUN: wikicommons
NOUN: album
PUNCT: engcathedrals
X: wow
ADV: wabbey
ADJ: westminsterabbey
NOUN: find
NOUN: cosmoscope
NOUN: simeon
NOUN: nelson
ADJ: interdisciplinary
NOUN: installation
VERB: looks
ADJ: human
NOUN: biology
ADJ: wider
NOUN: context
ADP: via
NOUN: illumni_blog
NOUN: lighting
NOUN: wearewaterloouk
VERB: repurposed
NOUN: christmas
NOUN: decorations
VERB: make
ADJ: nice
ADJ: new
NOUN: entrance
NOUN: leakestreet
VERB: switched
ADJ: light
NOUN: dot
NOUN: lumiere
NOUN: lumierelondon
NOUN: latergram
VERB: spent
NOUN: pa
NOUN: weekend
VERB: checking
ADV: pretty
ADJ: cool
NOUN: guys
VERB: get
DET: lumiere
NOUN: london
NUM: 2018
NOUN: king
NOUN: cross
ADJ: incl
NOUN: battle
NOUN: bridge
NOUN: place
NOUN: granary
ADJ: square
ADJ: light
NOUN: festival
NOUN: walk
VERB: see
NOUN: sights
VERB: hear
NOUN: sounds
VERB: fcbstudios
ADJ: great
NOUN: pa
NOUN: festival
NOUN: david
X: batchelor
X: 60minutespectrum
NOUN: lighting
NOUN: installation
VERB: redesigned
NOUN: hayward
NOUN: gallery
NOUN: pyramids
VERB: aichoketrust
NOUN: love
NOUN: video
NOUN: electricpedals
NOUN: cirquebijou
NOUN: dancing
NOUN: front
VERB: rose
NOUN: mickfusion
NOUN: highlights
VERB: victoriabid
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
VERB: lumiere
NOUN: london
NOUN: oxford
NOUN: circus
NOUN: visit
NOUN: website
VERB: see
NOUN: order
NOUN: prints
NOUN: originoftheworldbubble
NOUN: canon
NOUN: lightinstallation
NOUN: landscape
NOUN: longexposure
ADJ: oxfordcircus
ADJ: blue
NOUN: sky
NOUN: night
ADV: normally
VERB: means
VERB: watch
ADJ: broken
ADJ: top
NOUN: jokes
ADP: like
NUM: one
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: aichoketrust
NOUN: love
NOUN: video
NOUN: electricpedals
NOUN: cirquebijou
NOUN: dancing
NOUN: front
VERB: rose
NOUN: mickfusion
VERB: highlights
NOUN: victoriabid
VERB: zacdenman
DET: another
ADJ: fantastic
NOUN: installation
NOUN: lumiere
NUM: 2018
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: sessions
VERB: filming
X: videoproduction
X: zacvideo
X: studiosession
X: londontown
NOUN: videographer
NOUN: videography
NOUN: musicvideo
NOUN: zacdenman
NOUN: carla_ibigroup
ADJ: fun
NOUN: graham
NOUN: mariana
NOUN: checking
NOUN: lights
DET: lumiere
NOUN: london
X: ibipeople
X: ibisocial
X: lumierelondon
X: lumiere
X: lumierelondon2018
DET: a
NOUN: installation
NOUN: london
NOUN: festivaloflights
NOUN: aichoketrust
NOUN: love
NOUN: video
NOUN: electricpedals
NOUN: cirquebijou
NOUN: dancing
NOUN: front
VERB: rose
NOUN: mickfusion
NOUN: highlights
VERB: victoriabid
NOUN: love
NOUN: video
NOUN: electricpedals
NOUN: cirquebijou
NOUN: dancing
NOUN: front
VERB: rose
NOUN: mickfusion
NOUN: highlights
X: victoriabid
X: greypointe
X: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
VERB: celebrating
ADJ: brilliant
NOUN: winter
NOUN: light
NOUN: festival
DET: lumiere
VERB: showcased
NUM: 58
ADJ: magical
NOUN: installations
ADP: across
ADJ: wonderful
NOUN: capital
NOUN: city
X: londonlightfestival
X: digitaltech
X: projectionmapping
X: lightshow
X: bihday
VERB: enjoyed
NOUN: weekend
NOUN: london
NOUN: shame
NOUN: weather
VERB: saw
ADJ: lovely
NOUN: visit
NOUN: year
ADJ: many
NOUN: installations
NOUN: favourites
VERB: loved
NOUN: installation
ADJ: dutch
NOUN: aist
NOUN: daan
NOUN: roosegaarde
NOUN: granary
NOUN: square
NOUN: kingscrossn1c
NOUN: hope
VERB: enjoyed
NOUN: year
VERB: feel
ADJ: inspired
NOUN: light
ADP: like
VERB: consider
VERB: visiting
NOUN: eluminate2018
ADV: apparently
NUM: one
ADJ: top
NUM: 53
NOUN: things
NOUN: cambridge
NOUN: lighting
NOUN: inspiration
NOUN: tuesdaythoughts
ADP: postcardslond1
NOUN: westminster
NOUN: abbey
VERB: pleased
VERB: see
ADV: back
ADJ: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: aichoketrust
NOUN: team
ADJ: busy
VERB: dismantling
NOUN: thousands
VERB: illuminated
NOUN: flower
ADP: like
X: reflectors
X: awork
X: entre
X: les
X: rangs
X: _kanva
X: behindthescenes
X: jmrobes343jmr
VERB: loads
NOUN: sunday
ADV: especially
NOUN: closures
VERB: toevho
VERB: showing
ADJ: transformative
NOUN: power
DET: a
NOUN: placemaking
VERB: create
ADJ: memorable
NOUN: visitor
NOUN: experiences
VERB: aichoketrust
ADV: visitlondon
ADJ: inspiring
NOUN: case
NOUN: study
NOUN: events
NOUN: management
NOUN: students
ADV: cccu
VERB: stand
ADJ: london
NOUN: eye
NOUN: travel
X: londonislovinit
X: thelondoneye
X: lovelondon
X: visitlondon
X: londoneye
X: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
ADP: thegl0betrotter
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
PRT: lumiere
NOUN: london
NOUN: westminster
NOUN: abbey
VERB: used
ADJ: giant
NOUN: projector
NOUN: screen
NOUN: pa
NOUN: lumiere
NOUN: festival
NOUN: london
NOUN: patrice
NOUN: warrener
ADJ: light
NOUN: spirit
NOUN: chapter
NUM: 2
NOUN: london
NOUN: davekirwinphotography
NOUN: canon
NOUN: photography
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
NOUN: kingscrossn1c
NOUN: pa
NOUN: noordinarypark
NOUN: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: come
NOUN: check
NOUN: promenade
NOUN: south
NOUN: park
NOUN: year
NOUN: park
ADJ: free
NOUN: enter
NUM: 24
NUM: 7
X: ispane0
X: mattcooperphoto
X: letsyogalondon
X: regram
X: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
PRT: aichoketrust
NOUN: team
ADJ: busy
VERB: dismantling
NOUN: thousands
VERB: illuminated
NOUN: flower
ADP: like
X: reflectors
X: awork
X: entre
X: les
X: rangs
X: _kanva
X: behindthescenes
X: grosvenor_gbi
X: mayfair
ADJ: london
NOUN: estate
VERB: played
NOUN: host
ADJ: last
NOUN: weekend
ADJ: spectacular
NOUN: light
NOUN: installations
VERB: westend
ADJ: london
NOUN: appeal
ADJ: open
ADJ: diverse
ADJ: inclusive
NOUN: city
VERB: reaffirmed
ADJ: fabulous
NOUN: festival
NOUN: light
VERB: get
NOUN: chance
NOUN: see
VERB: may
VERB: come
VERB: enjoy
ADJ: new
NOUN: floodlights
NOUN: king
NOUN: georges
NOUN: park
DET: every
NOUN: evening
NOUN: book
NOUN: cou
NOUN: january
VERB: receive
ADJ: free
NOUN: cou
NOUN: use
NUM: 2018
NOUN: gohitit
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: binita_dave
VERB: delayed
VERB: tweeting
ADJ: great
NOUN: time
NOUN: friday
NOUN: drinksthing
NOUN: lot
VERB: checking
VERB: exploring
ADJ: tiny
NOUN: pubs
X: mayfair
X: londonlife
X: socialinmind
ADJ: stunning
NOUN: light
NOUN: show
NOUN: hotelcaferoyal
NOUN: piccadilly
NOUN: lumierelondon
NOUN: arrival
NOUN: oxford
NOUN: circus
NOUN: oxford
NOUN: street
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
VERB: binita_dave
VERB: delayed
VERB: tweeting
ADJ: great
NOUN: time
NOUN: friday
NOUN: drinksthing
NOUN: lot
VERB: checking
VERB: exploring
ADJ: tiny
NOUN: pubs
X: mayfair
X: londonlife
X: dslr
X: nightmoves
NUM: 2
NOUN: bankside
NOUN: london
NOUN: photography
NOUN: night
NOUN: light
X: dslr
X: bankside
X: lumiere
NOUN: neon
DET: a
NOUN: installation
NOUN: dslrphotography
NOUN: city
NOUN: atnight
NOUN: streetsoflondon
NOUN: southbank
NOUN: instagood
NOUN: canon
NOUN: 25mmpancake
ADJ: colourful
NOUN: streetlight
VERB: delayed
VERB: tweeting
ADJ: great
NOUN: time
NOUN: friday
NOUN: drinksthing
NOUN: lot
VERB: checking
VERB: exploring
ADJ: tiny
NOUN: pubs
X: mayfair
X: londonlife
X: faves
X: aichoketrust
X: timeouta
X: londongramer
X: timeoutlondon
VERB: missed
NOUN: worry
NOUN: head
VERB: see
PRON: winterlights
ADJ: yourcanarywharf
ADJ: london
ADJ: free
NOUN: event
ADP: till
NUM: 27
NOUN: jan
NOUN: btpvolunteers
VERB: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: join
PRON: us
NOUN: monday
NOUN: 5th
NOUN: february
NUM: 18
NUM: 00
NOUN: lighting
NOUN: millennium
NOUN: bridge
NOUN: london
VERB: shine
ADJ: light
ADJ: sexual
NOUN: abuse
NOUN: amp
ADJ: sexual
NOUN: violence
NOUN: solidarity
NOUN: survivors
VERB: grosvenor_gbi
ADJ: mayfair
ADJ: london
NOUN: estate
VERB: played
NOUN: host
ADJ: last
NOUN: weekend
ADJ: spectacular
NOUN: light
NOUN: installations
VERB: westend
ADJ: london
NOUN: appeal
ADJ: open
ADJ: diverse
ADJ: inclusive
NOUN: city
VERB: reaffirmed
ADJ: fabulous
NOUN: festival
NOUN: light
NUM: 2
NOUN: penny
NOUN: photo
NOUN: stream
NOUN: canon5dmarkiv
NOUN: photography
NOUN: professionalphotographer
NOUN: london
X: lumierelondon
X: lumiere
X: westminsterabbey
NOUN: westminster
NOUN: church
NOUN: abbey
NOUN: tfl
NOUN: timeoutlondon
NOUN: gin
ADJ: facial
ADJ: steaming
ADJ: hot
NOUN: gin
NOUN: cocktails
NOUN: ward
NOUN: january
NOUN: nights
ADJ: open
NOUN: air
NOUN: terrace
NOUN: ham_yard
NOUN: couesy
VERB: sipsmith
ADJ: better
NOUN: way
VERB: wrap
NOUN: teacupheaven
ADV: ginuary
ADJ: celebratory
X: itsawrap
X: happynewyear
X: spiritedstuff
X: hotpoke
NOUN: couple
NOUN: pics
ADJ: fantastic
NOUN: display
NOUN: visitlondon
VERB: wish
NOUN: weather
ADV: better
VERB: could
VERB: seen
ADV: grosvenor_gbi
ADJ: mayfair
ADJ: london
NOUN: estate
VERB: played
NOUN: host
ADJ: last
NOUN: weekend
ADJ: spectacular
NOUN: light
NOUN: installations
VERB: westend
ADJ: london
NOUN: appeal
ADJ: open
ADJ: diverse
ADJ: inclusive
NOUN: city
VERB: reaffirmed
ADJ: fabulous
NOUN: festival
NOUN: light
NOUN: kings
VERB: cross
NOUN: spell
NOUN: stpancrasint
NOUN: planning
VERB: visiting
NOUN: pop
NOUN: dinner
NOUN: champagne
NOUN: searcystpancras
ADV: perhaps
VERB: grab
ADJ: nice
NOUN: pint
NOUN: st
NOUN: pancras
NOUN: ipa
NOUN: thebetjemanarms
NOUN: suzystories
VERB: wish
VERB: could
NOUN: year
NOUN: round
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
ADV: theladytravels
ADJ: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
NUM: three
NOUN: photos
ADV: somewhat
ADJ: accidental
ADV: quite
ADP: like
NOUN: carnaby
NOUN: street
NOUN: joinin247
NOUN: london
VERB: lumiere
ADJ: light
NOUN: festival
NUM: 2018
X: leciestersquare
X: carnabystreet
X: oxfordcircus
X: londonisopen
VERB: see
NOUN: installations
NOUN: weekend
ADJ: amazing
NOUN: computingdawn
NOUN: colour
VERB: changing
NOUN: umbrellas
ADJ: last
NOUN: night
ADJ: beautiful
VERB: tried
NOUN: peek
ADV: underneath
VERB: passed
VERB: see
VERB: made
VERB: failed
NOUN: ideas
X: caschat
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: robbingham
ADJ: giant
NOUN: nightingale
NOUN: berkeley
NOUN: square
NOUN: lightfestival
NOUN: brightlightsbigcity
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: staed
VERB: go
NOUN: canon
NOUN: photos
VERB: noticed
NOUN: someone
ADV: clearly
VERB: spotted
NOUN: projector
VERB: decided
NOUN: shadow
NOUN: puppets
NOUN: westminster
NOUN: abbey
NOUN: bottom
VERB: left
ADV: slightly
VERB: spoils
NOUN: image
NOUN: joinin247
NOUN: nightlife
NOUN: leicestersquare
NOUN: lightfestival
NOUN: brightlightsbigcity
NOUN: london
ADJ: united
NOUN: lightfestival
NOUN: brightlightsbigcity
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: lightfestival
NOUN: brightlightsbigcity
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: altheaefunshile
NOUN: lots
VERB: walking
NOUN: tonight
NOUN: experience
ADJ: great
NOUN: evening
NOUN: aichoketrust
NOUN: londonlife
NOUN: archdeaconluke
NOUN: lumierefestival
NOUN: jacob
NOUN: ladder
NOUN: spire
NOUN: smitf_london
VERB: doublemacbex
ADJ: many
ADJ: awesome
NOUN: light
NOUN: installations
DET: kingscrossn1c
NOUN: year
NOUN: london
VERB: lit
NOUN: tinyplanet
NOUN: 360video
VERB: made
DET: a
NOUN: installations
X: miguel_chevalier
X: obscuraveigo
X: zumtobel_light
X: victoriabid
X: ricohthetauk
X: aichoketrust
X: ldn_gov
X: regentstreetw1
X: oxfordstreetw1
X: timeoutlondon
X: visitlondon
X: littleplanet
X: zuleikagallery
ADJ: fantastic
ADJ: london
NOUN: amp
NOUN: community
ADJ: brilliant
NOUN: aists
NOUN: amp
NOUN: employment
NOUN: oppounities
NOUN: tourism
NOUN: amp
NOUN: fitness
DET: fitbit
VERB: says
VERB: walked
NUM: 25k
NOUN: steps
NOUN: yesterday
VERB: think
NOUN: record
NOUN: aiseverywhere
NOUN: aichoketrust
ADJ: menswearstyle
ADJ: stunning
NOUN: streets
NOUN: 7dialslondon
NOUN: shopping
NOUN: guide
VERB: coming
ADV: soon
VERB: mikebloomberg
NOUN: today
ADJ: best
NOUN: bloomberg
NOUN: volunteers
VERB: joined
NOUN: cirquebijou
NOUN: amp
NOUN: lambethacademy
NOUN: students
VERB: kick
ADP: outside
ADJ: new
ADJ: european
NOUN: hq
VERB: running
NOUN: jan
NUM: 21
NOUN: londoners
VERB: view
NUM: 50
ADJ: stunning
NOUN: aworks
NOUN: night
NUM: 5
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: bloombergservice
NUM: 2018
VERB: comes
ADV: close
NOUN: tomorrow
VERB: read
NOUN: ceo
NOUN: pattiharris
NUM: 2016
NOUN: op
NOUN: ed
ADJ: first
NOUN: festival
NOUN: public
DET: a
ADJ: positive
NOUN: impact
NOUN: cities
NOUN: communities
DET: nationalgallery
VERB: celebrate
NOUN: return
NOUN: today
PRT: pissarro
VERB: lit
ADJ: nocturnal
NOUN: scene
NOUN: boulevard
NOUN: montmare
NOUN: night
VERB: painted
NUM: 1897
NOUN: view
NOUN: work
NOUN: room
NUM: 43
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: vishkumarlondon
VERB: follow
NOUN: instagram
NOUN: story
ADJ: next
NUM: four
NOUN: days
VERB: see
DET: lumiere
ADJ: light
NOUN: festival
NOUN: london
NOUN: lumierelondon
NOUN: london
NOUN: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
X: aists
X: edgillwhl
X: woundfull
NOUN: images
NOUN: wildlife
NOUN: leicestersquare
NOUN: london
NOUN: lumierefestival
NOUN: lights
DET: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
ADV: still
ADJ: sick
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: thewave
NOUN: veigo
NOUN: eatsleepshootuk
VERB: captured
VERB: using
ADV: so
ADJ: twisted
NOUN: zoomburst
NOUN: promise
VERB: get
ADV: back
NOUN: japan
NOUN: photos
ADV: soon
VERB: interrupt
NOUN: period
VERB: failing
VERB: upload
NOUN: japan
NOUN: photos
ADJ: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: meetup
NOUN: eatsleepshootuk
VERB: looking
NOUN: shots
NOUN: people
VERB: experiencing
DET: a
ADV: rather
ADJ: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: youtube
X: felipetweeters
X: iamgabrielluna
X: yosoycordova
X: lumierelondon
X: lumierelondon2018
ADJ: light
NOUN: show
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: antonio
X: ubeda
X: en
X: supercube
X: de
NOUN: stéphane
NOUN: masson
NOUN: lumierelondon
VERB: stephanemasson
ADV: well
ADP: woh
VERB: braving
NOUN: weather
NOUN: cold
VERB: see
NOUN: visitlondon
NUM: two
NOUN: sleeps
PRT: lumiere
NOUN: plan
NOUN: visit
NOUN: aichoketrust
NOUN: visitlondon
X: wow
VERB: tap
NOUN: love
ADJ: incredible
NOUN: voyage
NOUN: installation
NOUN: aichoketrust
NOUN: piece
VERB: explores
NOUN: journey
NOUN: time
NOUN: amp
NOUN: space
VERB: see
NOUN: weekend
NOUN: piccadilly
NOUN: circus
NOUN: facebook
NOUN: page
DET: chaterfranks
NOUN: year
ADJ: wonderful
NOUN: event
ADP: along
ADJ: winterlights
NOUN: canarywharf
VERB: wish
NOUN: bit
ADJ: longer
NOUN: night
VERB: could
ADV: least
NOUN: midnight
VERB: might
VERB: given
PRON: us
ADJ: better
NOUN: chance
VERB: seeing
NOUN: mayoroflondon
NOUN: visitlondon
DET: every
NOUN: day
VERB: see
NOUN: flamingos
DET: chinatownlondon
VERB: enjoy
ADJ: first
NOUN: evening
NOUN: lots
VERB: see
ADJ: next
NUM: 3
NOUN: nights
VERB: make
ADJ: sure
NOUN: plan
ADV: ahead
X: travellousworld
X: aichoketrust
X: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
ADJ: waterstonespicc
NOUN: benefits
VERB: working
ADJ: central
NOUN: london
NOUN: preview
NOUN: leicester
ADJ: square
NOUN: tonight
NOUN: timeoutlondon
VERB: get
ADJ: ready
NOUN: lumierelondon
NOUN: launches
NOUN: tonight
VERB: find
ADJ: best
NOUN: installations
ADP: across
NOUN: city
NOUN: bbclondonnews
NOUN: festival
NOUN: light
VERB: returns
ADJ: london
NOUN: avweekjuliet
VERB: loving
NOUN: southbank
NOUN: tonight
ADV: even
VERB: spied
NOUN: sadiqkhan
NOUN: lovelondon
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
X: aichoketrust
X: ukinargentina
X: es
NOUN: un
NOUN: festival
X: de
X: luces
X: en
X: londres
X: con
NUM: 50
X: obras
X: de
NOUN: ae
X: en
X: exhibición
NOUN: ayer
X: fue
X: la
NOUN: primera
X: de
X: las
NUM: 4
X: noches
X: cultureisgreat
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
X: que
X: tengo
X: que
X: hacer
X: para
X: estar
X: en
ADP: r e 
NOUN: btpvolunteers
VERB: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: join
PRON: us
NOUN: monday
NOUN: 5th
NOUN: february
NUM: 18
NUM: 00
NOUN: lighting
NOUN: millennium
NOUN: bridge
NOUN: london
VERB: shine
ADJ: light
ADJ: sexual
NOUN: abuse
NOUN: amp
ADJ: sexual
NOUN: violence
NOUN: solidarity
NOUN: survivors
NOUN: btpvolunteers
VERB: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: join
PRON: us
NOUN: monday
NOUN: 5th
NOUN: february
NUM: 18
NUM: 00
NOUN: lighting
NOUN: millennium
NOUN: bridge
NOUN: london
VERB: shine
ADJ: light
ADJ: sexual
NOUN: abuse
NOUN: amp
ADJ: sexual
NOUN: violence
NOUN: solidarity
NOUN: survivors
NOUN: year
ADJ: wonderful
NOUN: event
ADP: along
ADJ: winterlights
NOUN: canarywharf
VERB: wish
NOUN: bit
ADJ: longer
NOUN: night
VERB: could
ADV: least
NOUN: midnight
VERB: might
VERB: given
PRON: us
ADJ: better
NOUN: chance
VERB: seeing
NOUN: mayoroflondon
NOUN: secret_ldn
NOUN: video
NUM: ten
ADJ: loveliest
NOUN: sights
NOUN: lumierelondon
NOUN: festival
ADJ: first
NOUN: night
NOUN: sunday
NOUN: evening
VERB: discover
NUM: 40
VERB: illuminated
NOUN: installations
ADJ: full
NOUN: guide
NOUN: londontheinside
ADJ: bloody
ADJ: brilliant
NOUN: get
VERB: ends
NOUN: tomorrow
NOUN: visitlondon
DET: every
NOUN: day
VERB: see
NOUN: flamingos
DET: chinatownlondon
VERB: enjoy
ADJ: first
NOUN: evening
NOUN: lots
VERB: see
ADJ: next
NUM: 3
NOUN: nights
VERB: make
ADJ: sure
NOUN: plan
ADV: ahead
X: travellousworld
X: aichoketrust
X: saikocat
NUM: one
NOUN: installations
VERB: forgot
NOUN: post
NOUN: saturday
ADV: thenohbankbid
ADJ: sad
VERB: see
NOUN: end
NUM: two
NOUN: installations
VERB: nohbank
ADJ: fantastic
NOUN: jacob
NOUN: ladder
NOUN: top
NOUN: smitf_london
VERB: sounds
NOUN: amp
NOUN: light
NOUN: trafalgarsquare
NOUN: archdeaconluke
NOUN: lumierefestival
NOUN: jacob
NOUN: ladder
NOUN: spire
NOUN: smitf_london
NOUN: archdeaconluke
NOUN: lumierefestival
NOUN: jacob
NOUN: ladder
NOUN: spire
NOUN: smitf_london
NOUN: kids
VERB: loved
X: kingscross
X: raindropskeepfallingonmyhead
X: dslr
X: nightmoves
NUM: 1
NOUN: oxo
NOUN: london
NOUN: nightlights
VERB: dslr
NOUN: neon
NOUN: lumiere
NOUN: oxotowerwharf
NOUN: london
NOUN: night
NOUN: citylights
VERB: illuminated
X: ldn
X: citystreets
X: foundtype
NOUN: windows
VERB: shadows
NOUN: buildings
DET: nightmoves
NOUN: photography
NOUN: ilovephotography
NOUN: photoatn
VERB: transforms
ADJ: london
NOUN: streets
NOUN: buildings
VERB: amp
ADJ: public
NOUN: spaces
ADJ: extraordinary
ADJ: immersive
ADV: nightly
DET: a
NOUN: exhibition
ADJ: light
NOUN: sound
NOUN: bloombergdotorg
NOUN: bloomberg
NOUN: nofilter
NOUN: kings
VERB: cross
ADJ: last
NOUN: night
NOUN: way
NOUN: rain
VERB: would
VERB: stop
VERB: play
NUM: 21012018
NOUN: stop
VERB: staring
NOUN: uv
NOUN: lights
VERB: lumierelondon2018
ADV: granarysquare
ADJ: glad
VERB: managed
NOUN: catch
NOUN: shots
ADJ: last
NOUN: evening
NOUN: granary
NOUN: square
NOUN: kings
VERB: cross
ADJ: last
NOUN: night
NOUN: train
NOUN: home
NOUN: sinoradiouk
NOUN: festival
NOUN: chinatownlondon
VERB: looking
ADJ: amazing
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
VERB: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
ADJ: favourite
NOUN: shots
ADJ: last
NOUN: night
VERB: featuring
ADJ: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: wave
NOUN: veigo
VERB: snaps
NOUN: instagram
CONJ: plus
NOUN: photos
VERB: follow
NOUN: tomorrow
VERB: see
NOUN: weekend
NOUN: photos
VERB: carnabylondon
VERB: guessing
NOUN: shaida
VERB: walked
ADV: twice
ADP: around
NOUN: world
NUM: 2
NOUN: year
NOUN: marathon
NUM: 126
NUM: 316
NUM: 800
NOUN: steps
VERB: counting
NOUN: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
NOUN: noordinarypark
NOUN: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: come
NOUN: check
NOUN: promenade
ADV: south
NOUN: park
NOUN: year
NOUN: park
ADJ: free
NOUN: enter
NUM: 24
NUM: 7
X: ispane0
X: mattcooperphoto
X: letsyogalondon
X: regram
X: theladytravels
VERB: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
X: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: barkingsideac
VERB: seeing
NOUN: chandeliers
VERB: displayed
NOUN: king
NOUN: cross
NOUN: london
NOUN: thanks
VERB: took
NOUN: pa
ADV: well
VERB: done
NOUN: redbridge
NOUN: cultureteam
ADJ: wonderful
NOUN: oppounity
ADJ: amazing
NOUN: installations
DET: aichoketrust
VERB: thank
X: silhouette_profile
X: profilepic
X: ig_profileshot
X: blackandwhitephotography
X: onlocation
X: unlimitedlondon
X: darkpicture
X: ig_captures
X: igers
X: profile_photo
X: londonlumiere2018
X: bwphotography
X: shadesofme
X: loveblackandwhite
X: cheekychops
ADV: even
ADJ: better
NOUN: rain
VERB: caught
ADJ: final
NOUN: day
ADJ: kingscross
NOUN: pictures
VERB: experience
NOUN: justice
NOUN: kind
DET: a
NOUN: lights
NOUN: urbana
X: lovemesomelights
X: postcardslond1
NOUN: westminster
NOUN: abbey
NOUN: postcardslond1
NOUN: piccadillycircus
ADJ: fantastic
NOUN: time
VERB: wondering
NOUN: streets
NOUN: london
NOUN: carnabylondon
NOUN: think
VERB: walked
NUM: 2
NUM: 46
NOUN: times
ADP: around
NOUN: world
NUM: two
NOUN: years
ADV: carnabylondon
ADJ: rare
NOUN: bear
ADJ: rare
NOUN: rarebear
DET: a
NOUN: lumiere
NOUN: lumierelondon
NOUN: nohernlyexpo
NOUN: wavelength
NOUN: pa
NOUN: exhibition
VERB: took
NOUN: place
NOUN: london
ADJ: last
NUM: four
NOUN: days
ADJ: last
NOUN: picture
NOUN: year
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
DET: a
NOUN: visitlondon
NOUN: barker_langham
ADJ: spectacular
ADJ: light
NOUN: displays
NOUN: year
NOUN: london
PRT: lumiere
NOUN: festival
NOUN: wavelength
NOUN: pa
NOUN: exhibition
VERB: took
NOUN: place
NOUN: london
ADJ: last
NUM: four
NOUN: days
ADJ: last
NOUN: picture
NOUN: year
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
NOUN: westminster
NOUN: abbey
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: westminsterabbey
NOUN: london
NOUN: westminster
NOUN: abbey
NOUN: pt
NUM: 1
NUM: 2
NOUN: january
NUM: 2018
NOUN: westminster
NOUN: abbey
VERB: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: local_dreaming
ADJ: new
NOUN: blog
NOUN: post
NOUN: saturday
VERB: went
ADJ: lumiere_london
NOUN: festival
NOUN: photos
VERB: took
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: new
NOUN: blog
NOUN: post
NOUN: saturday
VERB: went
ADJ: lumiere_london
NOUN: festival
NOUN: photos
VERB: took
NOUN: westminster
NOUN: abbey
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: westminsterabbey
NOUN: london
ADV: definitely
NUM: one
ADJ: coolest
NOUN: installations
ADJ: light
NOUN: festival
ADJ: red
NOUN: telephone
NOUN: box
VERB: transformed
NOUN: aquarium
NUM: seven
NOUN: dials
NOUN: covent
NOUN: garden
PRT: lumiere
ADJ: london
ADJ: central
ADJ: london
NOUN: night
NOUN: ii
NOUN: w
NOUN: filipa
NOUN: meneses
NOUN: lumierelondon
NOUN: fun
ADV: even
NOUN: rain
ADP: although
NOUN: areas
VERB: woh
ADJ: effo
NOUN: others
VERB: southbank
NOUN: waterloo
ADJ: complete
NOUN: waste
NOUN: time
NOUN: kings
VERB: cross
X: wow
ADJ: clever
VERB: guiding
NOUN: people
ADP: around
NOUN: redevelopment
NOUN: kings
VERB: cross
ADV: fair
ADJ: incredible
ADP: though
ADJ: favourite
ADJ: great
NOUN: weekend
NOUN: london
VERB: united
NOUN: kingdom
NOUN: jenny__wong
ADV: beautifully
VERB: lit
NOUN: westminsterabbey
NOUN: light
NOUN: festival
PRT: lumiere
NOUN: london
NOUN: photography
ADV: pretty
ADJ: awesome
NOUN: yesterday
NOUN: london
NOUN: trafalgarsquare
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: leicestersquare
NOUN: london
NOUN: leicester
ADJ: square
NOUN: thesavoylondon
ADJ: excited
VERB: explore
ADJ: next
NOUN: nights
NOUN: london
VERB: lit
ADJ: incredible
VERB: illuminated
DET: a
NOUN: installations
DET: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
VERB: went
VERB: checked
NOUN: light
VERB: based
DET: a
NOUN: installations
VERB: called
VERB: filmed
VERB: put
X: la
X: la
NOUN: land
VERB: cover
ADJ: top
ADJ: sound
ADJ: good
NOUN: watch
NOUN: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
ADJ: long
NOUN: time
ADP: since
ADJ: last
VERB: tweeted
ADV: anyway
VERB: went
ADJ: lumiere
NOUN: festival
ADJ: brilliant
NOUN: time
NOUN: video
NOUN: website
NOUN: lumierelondon
NOUN: london
DET: a
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
ADP: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: crowe_photo
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: photo
NOUN: julian
NOUN: crowe
NOUN: crowe_photo
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
X: lighta
X: streetphotography
X: streetphoto
X: nightphotography
X: londonlumiere
X: lumierelondon
X: lumierelondon2018
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: fantastic
NOUN: fun
NOUN: installationa
NOUN: hotelcaferoyal
NOUN: picadillycircus
NOUN: gantonstreet
NOUN: chinatown
X: leicestersquaregardens
X: visitlondon
X: aichoketrust
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: nteresting
NOUN: night
NOUN: kings
VERB: cross
NOUN: installations
NOUN: aether
NOUN: dot
NOUN: waterlicht
NOUN: mystery
NOUN: entry
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: chrisschorah
X: kingscrossn1c
VERB: looking
ADJ: awesome
NOUN: christinegolds4
VERB: discussing
ADJ: favourite
NOUN: lumiere
NOUN: installations
VERB: mine
NOUN: westminster
NOUN: abbey
NOUN: approach
NOUN: heritage
ADJ: popular
NOUN: festival
NOUN: sho
VERB: want
VERB: see
ADP: becky_traveller
DET: another
NUM: one
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: kingscross
NOUN: london
NOUN: granary
ADJ: square
ADJ: nice
NOUN: experience
ADV: daanroosegaarde
ADJ: eerie
NOUN: waterlicht
NOUN: installation
ADJ: first
NOUN: hand
NOUN: year
NOUN: lighting
X: climatechangeisreal
X: wedesignfoheenvironment
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: la
X: seconda
X: edizione
X: di
X: lumiere
NOUN: london
X: si
X: è
X: conclusa
VERB: ed
X: è
X: stata
X: semplicemente
X: meravigliosa
X: ecco
X: alcune
X: foto
X: di
NOUN: leicester
ADJ: square
NOUN: temporaneamente
NOUN: trasformata
NOUN: casa
X: per
X: dei
X: paicolari
X: ospiti
X: luminosi
X: londra
X: lumierelondon
X: lumierelondon2018
X: leicestersquare
ADJ: great
NOUN: night
VERB: walking
ADP: around
NOUN: saturday
NOUN: spectacular
ADJ: last
NOUN: night
VERB: taken
ADJ: many
NOUN: poraits
ADV: probably
ADJ: favourite
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: kingscross
NOUN: london
NOUN: granary
NOUN: square
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
X: visitlondon
X: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
NOUN: lumierelondon
NOUN: london
NOUN: seth_gus
ADJ: old
X: wabbey
X: reimagined
X: ken
X: kesey
X: merrypranksters
X: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: mvpicsss
VERB: thank
DET: another
ADJ: stunning
NOUN: extravaganza
NOUN: magic
ADV: everywhere
ADV: truly
VERB: illuminating
NOUN: light
DET: a
NOUN: amp
NOUN: witchcraft
NOUN: visitlondon
NOUN: visitlondon
NOUN: lumierelondon
NOUN: london
NOUN: kingscrossn1c
VERB: thank
NOUN: everyone
VERB: visited
DET: kingscrossn1c
ADJ: last
NUM: four
NOUN: days
NOUN: hope
VERB: enjoyed
ADJ: much
NOUN: london
PRT: lumiere
ADJ: last
NOUN: night
NOUN: lumierelondon2018
NOUN: london
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
ADJ: red
NOUN: telephone
NOUN: box
NOUN: london
NOUN: londonlife
NOUN: thisislondon
NOUN: lumierelondon
NOUN: travel
X: culturetrip
X: londonphotography
X: stillnojob
X: hireme
X: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
NOUN: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
VERB: snapping
ADJ: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: croydoncollege
ADJ: wonderful
NOUN: festival
NOUN: lights
VERB: heading
NOUN: croydon
NOUN: weekend
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: aichoketrust
VERB: coming
NUM: 2018
NOUN: plan
NOUN: visit
NUM: 50
NOUN: aworks
NUM: 4
NOUN: nights
NUM: 6
NOUN: destinations
ADV: visitlondon
ADJ: beautiful
NOUN: name
NOUN: installation
ADJ: appropriate
ADJ: gorgeous
ADJ: vivid
ADJ: full
NOUN: spectrum
NOUN: palette
NOUN: lighta
NOUN: colouryourcity
NOUN: trafalgar
ADJ: square
NOUN: lumière
NOUN: festival
NUM: 2018
NOUN: lumierelondonfestival
NOUN: london
NOUN: visitlondon
NUM: 5
ADJ: gorgeous
NOUN: aworks
VERB: discover
VERB: explore
ADJ: beautiful
NOUN: fitzrovia
NOUN: area
VERB: let
PRON: us
VERB: know
ADJ: favourite
ADJ: incredible
NOUN: hats
VERB: aichoketrust
VERB: producing
ADV: marvellously
ADJ: creative
NOUN: amp
ADJ: impactful
NOUN: festival
NOUN: lighta
NOUN: colouryourcity
NOUN: colouryourcity
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: barkingsideac
VERB: seeing
NOUN: chandeliers
VERB: displayed
NOUN: king
NOUN: cross
NOUN: london
NOUN: thanks
VERB: took
NOUN: pa
ADV: well
VERB: done
NOUN: redbridge
NOUN: cultureteam
ADJ: wonderful
NOUN: oppounity
ADJ: amazing
NOUN: installations
DET: aichoketrust
VERB: thank
VERB: discussing
ADJ: favourite
NOUN: lumiere
NOUN: installations
VERB: mine
NOUN: westminster
NOUN: abbey
NOUN: approach
NOUN: heritage
ADJ: popular
NOUN: festival
NOUN: sho
VERB: want
VERB: see
NOUN: photos
VERB: went
NOUN: installations
NOUN: kings
VERB: cross
NUM: 18
NUM: 01
NUM: 2018
NOUN: aurora
NOUN: borealis
NOUN: kings
VERB: cross
NOUN: lumiere
NOUN: lumierelondon
NOUN: kingscross
NOUN: london
NOUN: fletcherpriest
NOUN: anyone
VERB: manage
VERB: get
NOUN: trafalgar
ADJ: square
NOUN: weekend
VERB: see
NOUN: lights
VERB: loved
NOUN: festival
NOUN: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
VERB: went
ADJ: london
NOUN: saturday
VERB: see
NOUN: installations
ADV: absolutely
ADJ: breathtaking
VERB: going
NOUN: post
NOUN: photos
NOUN: blog
ADJ: later
NOUN: week
NOUN: london
NOUN: lumierelondon
NOUN: rain
VERB: stop
PRON: us
VERB: getting
NOUN: weekend
ADJ: armed
NOUN: umbrellas
VERB: checked
ADJ: beautiful
NOUN: light
NOUN: show
VERB: make
ADJ: sure
VERB: watch
ADJ: full
NOUN: video
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: visitlondon
NOUN: anyone
VERB: manage
VERB: get
NOUN: trafalgar
ADJ: square
NOUN: weekend
VERB: see
NOUN: lights
DET: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: waterlicht
X: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
NOUN: wearewaterloouk
VERB: repurposed
NOUN: christmas
NOUN: decorations
VERB: make
ADJ: nice
ADJ: new
NOUN: entrance
NOUN: leakestreet
VERB: switched
ADJ: light
NOUN: kingscrossn1c
ADJ: excited
ADJ: full
NOUN: programme
NOUN: installations
VERB: released
NOUN: check
NOUN: pieces
DET: kingscrossn1c
NOUN: sta
NOUN: planning
NOUN: visit
NOUN: lightinstallation
NOUN: awork
NOUN: london
NOUN: trafalgarsquare
NOUN: trafalgar
ADJ: square
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
NOUN: cube
NOUN: pa
NOUN: exhibition
VERB: took
NOUN: place
NOUN: london
ADJ: last
NUM: four
NOUN: days
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
X: btpvolunteers
NOUN: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: join
PRON: us
NOUN: monday
NOUN: 5th
NOUN: february
NUM: 18
NUM: 00
NOUN: lighting
NOUN: millennium
NOUN: bridge
NOUN: london
VERB: shine
ADJ: light
ADJ: sexual
NOUN: abuse
NOUN: amp
ADJ: sexual
NOUN: violence
NOUN: solidarity
NOUN: survivors
PRT: carnabylondon
VERB: win
NOUN: carnaby
NOUN: think
VERB: walked
ADJ: round
NOUN: world
NUM: 2
NUM: 3
NOUN: times
PRT: zebraprodunique
VERB: loved
NUM: one
NOUN: lamps
NOUN: office
X: please
X: lovelondon
X: beinspired
X: oversizedobjects
X: discoverlondon
X: lumiere
X: uniquebynature
X: de
X: londres
NOUN: al
X: cielo
X: lumierelondon
X: stmaininthefields
ADJ: london
ADJ: trafalgarsquare
ADJ: creative
NOUN: break
NOUN: london
NOUN: besties
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: mayoroflondon
X: aichoketrust
NOUN: nights
ADP: like
ADJ: please
ADJ: wonderful
NOUN: event
NOUN: lumierelondon2018
NOUN: lights
ADV: recently
VERB: built
NOUN: marquee
NOUN: lumiere
NOUN: installations
NOUN: london
VERB: noticed
ADJ: incredible
NOUN: installations
ADP: around
NOUN: london
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
ADJ: great
VERB: seeing
ADJ: many
NOUN: people
VERB: enjoying
ADP: across
ADJ: london
ADJ: quick
NOUN: time
NOUN: lapse
NOUN: wabbey
NOUN: yesterday
VERB: missed
NOUN: fear
NOUN: bealocaltourist
NOUN: year
NOUN: round
NOUN: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
NOUN: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: join
PRON: us
NOUN: monday
NOUN: 5th
NOUN: february
NUM: 18
NUM: 00
NOUN: lighting
NOUN: millennium
NOUN: bridge
NOUN: london
VERB: shine
ADJ: light
ADJ: sexual
NOUN: abuse
NOUN: amp
ADJ: sexual
NOUN: violence
NOUN: solidarity
NOUN: survivors
VERB: aichoketrust
VERB: explored
ADJ: south
NOUN: bank
NOUN: amp
NOUN: waterloo
ADV: yet
NOUN: lots
VERB: see
NUM: 17
NUM: 30
NOUN: evening
NOUN: cantwait
NOUN: barker_langham
ADJ: spectacular
ADJ: light
NOUN: displays
NOUN: year
NOUN: london
NOUN: lumiere
NOUN: festival
NOUN: mvpicsss
VERB: thank
DET: another
ADJ: stunning
NOUN: extravaganza
NOUN: magic
ADV: everywhere
ADV: truly
VERB: illuminating
NOUN: light
DET: a
NOUN: amp
NOUN: witchcraft
NOUN: visitlondon
NOUN: visitlondon
NOUN: lumierelondon
NOUN: london
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: egondesign
ADJ: fantastic
NOUN: light
NOUN: installations
NOUN: kingscross
NOUN: thebroadwaysw1
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
NOUN: lm_westminster
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
NOUN: atransformslives
NOUN: aichoketrust
NOUN: visitlondon
X: justin_venn
X: lumierelondon2018
NOUN: lumierelondon
NOUN: thanks
NOUN: aichoketrust
NOUN: visitlondon
ADJ: amazing
NOUN: experience
VERB: walking
ADP: around
NOUN: london
NOUN: evenings
VERB: searching
ADJ: fascinating
NOUN: light
NOUN: installations
VERB: put
ADV: together
ADJ: little
NOUN: montage
NOUN: enjoy
NOUN: lumierelondon
NOUN: visitlondon
NOUN: tflbusales
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
NOUN: nights
ADV: ago
ADJ: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: playlondongame
VERB: seen
NOUN: uk
ADJ: largest
ADJ: light
NOUN: festival
VERB: happening
NOUN: london
ADV: right
ADV: quick
VERB: look
ADJ: dazzling
NOUN: installations
ADP: around
ADJ: london
ADJ: right
NOUN: hurry
ADP: around
NOUN: sunday
ADJ: harmonic
NOUN: poal
NOUN: pa
NUM: two
NOUN: sroosegaarde
NOUN: design
NOUN: innovation
NOUN: medal
NOUN: l_d_f
NUM: 2016
NOUN: catch
NOUN: waterlicht
NOUN: granary
ADJ: square
NOUN: weekend
NOUN: londonwestend
VERB: stay
ADJ: thebeaumontldn
NOUN: duration
NOUN: addition
ADJ: exclusive
NOUN: rates
VERB: offered
ADJ: special
ADJ: lumiere
ADJ: light
NOUN: amp
NOUN: day
NOUN: cocktail
NOUN: privacy
NOUN: cub
NOUN: room
ADJ: american
NOUN: bar
VERB: venturing
ADJ: foh
NOUN: light
VERB: deals
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
NOUN: lights
ADJ: last
NOUN: night
NOUN: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
X: lumierelondon
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: someone
VERB: capturing
NOUN: duration
NOUN: dot
NOUN: installation
VERB: soundtracked
X: solomongreyband
X: kingscrossn1c
X: lumierelondon
X: misslondon_city
ADJ: fantastic
NOUN: southbank
NOUN: misslondon_city
ADJ: fantastic
NOUN: southbank
ADJ: barbararich_law
NOUN: pictures
ADV: lumierelondon
ADJ: last
NOUN: night
NOUN: waterlicht
NOUN: granary
ADJ: square
NOUN: king
NOUN: cross
NOUN: barbararich_law
NOUN: lumierelondon
NOUN: waterlicht
NOUN: granary
ADJ: square
NOUN: king
NOUN: cross
NOUN: barbararich_law
NOUN: lumierelondon
NOUN: king
NOUN: cross
NOUN: smithyshere
ADJ: dazzling
ADJ: multicoloured
NOUN: doorways
VERB: bring
ADJ: sculpted
NOUN: saints
ADJ: vivid
NOUN: life
NOUN: wabbey
NOUN: lumierelondon2018
NOUN: visitlondon
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
ADJ: bablu121
NOUN: people
VERB: force
NOUN: yesterday
NOUN: night
ADJ: central
ADJ: london
NOUN: sight
NOUN: props
NOUN: aichoketrust
NOUN: visitlondon
ADJ: impressive
NOUN: work
VERB: putting
NOUN: year
NOUN: event
PRON: us
VERB: enjoy
NOUN: trappedinzoneone
NOUN: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: toevho
VERB: showing
ADJ: transformative
NOUN: power
DET: a
NOUN: placemaking
VERB: create
ADJ: memorable
NOUN: visitor
NOUN: experiences
VERB: aichoketrust
ADV: visitlondon
ADJ: inspiring
NOUN: case
NOUN: study
NOUN: events
NOUN: management
NOUN: students
X: cccu
X: winkball
X: londonlumiere
ADJ: big
NOUN: hit
NOUN: londoners
ADJ: suppoed
NOUN: mayoroflondon
NOUN: festival
NOUN: weekend
NOUN: lumierelondon2018
NOUN: festivaloflights
VERB: lights
NOUN: ldn_culture
NOUN: loveldnlovecul
NOUN: aichoketrust
VERB: thank
ADV: victoriabid
ADJ: terrific
NOUN: lights
NOUN: january
NOUN: lumierelondon2018
NOUN: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: si
X: tuviste
X: tiempo
X: de
X: visitar
NOUN: el
NOUN: festival
X: de
X: luces
X: en
X: londres
X: aqui
X: te
X: compaimos
NOUN: un
X: poquito
X: experiencias
X: londres2018
X: alloaconnecting
X: rbs_sculptors
ADJ: great
NOUN: see
NOUN: markbeattie_a
NOUN: mrbs
VERB: taking
NOUN: pa
NOUN: neon
NOUN: sculpture
NOUN: aichoketrust
NOUN: london
ADV: west
VERB: end
ADV: alight
NUM: 16
ADJ: stunning
NOUN: installations
ADJ: open
NUM: 17
NUM: 30
NUM: 22
NUM: 30
NOUN: evening
NOUN: sunday
NUM: 21
NOUN: january
NOUN: favourite
NOUN: vickyecaer
NOUN: repo
NOUN: lumierelondon2018
VERB: check
NOUN: london
ADJ: biggest
ADP: as
NOUN: festival
X: repoing
X: winkball
X: vickywinkball
X: aichoketrust
X: visitlondon
X: creativeas
DET: a
NOUN: london
NOUN: ldn
NOUN: repoer
NOUN: presenter
NOUN: freelancer
VERB: repurposed
NOUN: christmas
NOUN: decorations
VERB: make
ADJ: nice
ADJ: new
NOUN: entrance
NOUN: leakestreet
VERB: switched
ADJ: light
NOUN: vickyecaer
NOUN: repo
NOUN: lumierelondon2018
VERB: check
NOUN: london
ADJ: biggest
ADP: as
NOUN: festival
X: repoing
X: winkball
X: vickywinkball
X: aichoketrust
X: visitlondon
X: creativeas
DET: a
NOUN: london
NOUN: ldn
NOUN: repoer
NOUN: presenter
NOUN: freelancer
NOUN: repo
NOUN: lumierelondon2018
VERB: check
NOUN: london
ADJ: biggest
ADP: as
NOUN: festival
X: repoing
X: winkball
X: vickywinkball
X: aichoketrust
X: visitlondon
X: creativeas
DET: a
NOUN: london
NOUN: ldn
NOUN: repoer
NOUN: presenter
NOUN: freelancer
NOUN: miss
NOUN: weekend
VERB: enjoy
ADV: much
VERB: looking
NOUN: others
VERB: come
NOUN: check
NOUN: promenade
NOUN: south
NOUN: park
NOUN: year
NOUN: park
ADJ: free
NOUN: enter
NUM: 24
NUM: 7
X: ispane0
X: mattcooperphoto
X: letsyogalondon
X: regram
X: londonlumiere
ADJ: big
NOUN: hit
NOUN: londoners
ADJ: suppoed
NOUN: mayoroflondon
NOUN: festival
NOUN: weekend
NOUN: lumierelondon2018
NOUN: festivaloflights
VERB: lights
X: ldn_culture
X: loveldnlovecul
X: aichoketrust
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: ilyasayub_photo
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: electricpedals
VERB: rose
NOUN: mickfusion
ADJ: human
NOUN: interaction
X: electricpedals
X: victoriabid
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
X: electricpedals
VERB: rose
NOUN: mickfusion
ADJ: human
NOUN: interaction
X: electricpedals
X: victoriabid
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
VERB: went
ADJ: favourite
NOUN: installation
X: londonisopen
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: mayoroflondon
X: nikonownermag
X: eddierobson
VERB: bit
ADJ: late
ADV: sadly
ADV: anyway
NOUN: london
ADV: always
VERB: closes
NOUN: mondays
PRT: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: postcardslond1
NOUN: westminster
NOUN: abbey
NOUN: fouhstreetdan
NOUN: benjamingammon
VERB: blown
PRT: away
NOUN: year
NOUN: aichoketrust
NOUN: outdone
NOUN: electricpedals
VERB: rose
NOUN: mickfusion
ADJ: human
NOUN: interaction
X: electricpedals
X: victoriabid
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
X: rbs_sculptors
ADJ: great
NOUN: see
NOUN: markbeattie_a
NOUN: mrbs
VERB: taking
NOUN: pa
NOUN: neon
NOUN: sculpture
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
ADJ: great
NOUN: see
NOUN: markbeattie_a
NOUN: mrbs
VERB: taking
NOUN: pa
NOUN: neon
NOUN: sculpture
VERB: rose
NOUN: mickfusion
ADJ: human
NOUN: interaction
X: electricpedals
X: victoriabid
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
X: aichoketrust
NOUN: team
ADJ: busy
VERB: dismantling
NOUN: thousands
VERB: illuminated
NOUN: flower
ADP: like
X: reflectors
X: awork
X: entre
X: les
X: rangs
X: _kanva
X: behindthescenes
VERB: thank
VERB: letting
NOUN: broadway
NOUN: team
NOUN: pa
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: projection
ADV: well
VERB: done
ADJ: incredible
NOUN: weekend
NOUN: event
NOUN: visitlondon
NOUN: dot
DET: lumiere
NOUN: london
NUM: 2018
ADP: via
NOUN: youtube
NOUN: markpinneyassoc
NOUN: couple
DET: a
NOUN: installations
NOUN: weekend
NOUN: izzy2503
ADJ: good
NOUN: year
NOUN: totastemaker
NOUN: hennasam
NOUN: wave
ADV: veigo
ADJ: markpinneyassoc
NOUN: couple
DET: a
NOUN: installations
NOUN: weekend
NOUN: helenebaos
ADJ: brilliant
NOUN: year
NOUN: care
VERB: take
NOUN: look
VERB: put
NOUN: selection
NOUN: photos
NOUN: flickr
VERB: account
X: mayoroflondon
X: visitlondon
X: aichoketrust
X: guardianwitness
X: timeoutlondon
X: thedroidlife
NOUN: ray
NOUN: catcher
NOUN: 50mm
NOUN: barker_langham
ADJ: spectacular
ADJ: light
NOUN: displays
NOUN: year
NOUN: london
NOUN: lumiere
NOUN: festival
NOUN: zebraprodunique
VERB: loved
NUM: one
NOUN: lamps
NOUN: office
X: please
X: lovelondon
X: beinspired
X: oversizedobjects
X: discoverlondon
X: lumiere
X: uniquebynature
X: fouhstreetdan
X: benjamingammon
VERB: blown
PRT: away
NOUN: year
NOUN: aichoketrust
VERB: outdone
NOUN: weekend
NOUN: light
VERB: displays
ADJ: pure
NOUN: creativity
NOUN: amp
NOUN: inspiration
DET: lumiere
ADJ: light
NOUN: festival
VERB: dot
NOUN: philippe
VERB: morvan
VERB: seeing
NUM: 175
NOUN: light
NOUN: bulbs
VERB: flash
ADJ: front
ADJ: exciting
NOUN: london
VERB: filled
ADJ: exhilarating
NOUN: light
NOUN: transformations
ADV: totastemaker
ADJ: trudyakelly
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: team
ADJ: busy
VERB: dismantling
NOUN: thousands
VERB: illuminated
NOUN: flower
ADP: like
X: reflectors
X: awork
X: entre
X: les
X: rangs
X: _kanva
X: behindthescenes
ADJ: abstract
NOUN: pa
NOUN: exhibition
VERB: took
NOUN: place
NOUN: london
ADJ: last
NUM: four
NOUN: days
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
X: zebraprodunique
VERB: loved
NUM: one
NOUN: lamps
NOUN: office
X: please
X: lovelondon
X: beinspired
X: oversizedobjects
X: discoverlondon
X: lumiere
X: uniquebynature
X: westminsterabbey
NOUN: london
NOUN: londonlife
NOUN: lovelondon
NOUN: londoners
ADP: londonnights
DET: lumiere
ADJ: london
ADJ: light
NOUN: festival
NOUN: year
ADJ: giant
NOUN: birdcage
VERB: illuminates
NOUN: colours
NOUN: rainbow
NOUN: amp
VERB: releases
NOUN: energy
VERB: accumulated
NOUN: day
NOUN: ifo
VERB: identified
VERB: flying
NOUN: object
NOUN: jacques
ADJ: rival
NOUN: love
NOUN: md
NOUN: totastemaker
NOUN: lumiere
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: bye
NOUN: london
NOUN: thisislondon
NOUN: toplondonphoto
NOUN: lumiere2018
NOUN: oxfordstreet
NOUN: travel
X: londonlife
X: hireme
X: lookingforajob
X: londonphotographer
X: simon_burgess
X: lumiere
NOUN: london
NOUN: wave
ADV: veigo
ADJ: south
NOUN: bank
PRT: thewave
VERB: look
ADJ: lovely
NOUN: lights
X: lumierelondon2018
X: lumierelondon
X: mesmerising
VERB: see
ADJ: london
ADJ: iconic
NOUN: streets
NOUN: buildings
VERB: transformed
ADJ: light
NOUN: world
ADJ: talented
NOUN: light
NOUN: aists
ADJ: light
NOUN: display
VERB: called
X: waterlicht
X: daan
X: roosegaarde
NOUN: love
NOUN: md
X: lumierelondon
X: totastemaker
X: kingscross
X: lumiere
X: simon_burgess
X: lumiere
NOUN: london
NOUN: wave
ADV: veigo
ADJ: south
NOUN: bank
NOUN: thewave
ADJ: lumire
ADJ: london
ADJ: great
NOUN: wildlife
VERB: related
NOUN: installations
NOUN: leicester
ADJ: square
NOUN: chinatown
ADJ: last
NOUN: weekends
NOUN: event
X: londonnpc
X: wildlondon
X: ramblers_london
X: entre
X: les
X: rangs
NOUN: rami
X: bebawi
X: lumiere
NOUN: london
NUM: 2018
NOUN: field
NOUN: flower
ADP: like
NOUN: reflectors
VERB: went
ADJ: low
NOUN: angle
VERB: pointing
VERB: eliminate
NOUN: background
NOUN: distractions
VERB: isolate
NOUN: night
NOUN: sky
NOUN: olympus
NOUN: omd
NOUN: em1
NUM: 7
NOUN: 14mm
X: pro
X: aichoketrust
X: olympusuk
X: visitlondon
NUM: 2
NOUN: weeks
VERB: arrives
NOUN: capital
VERB: keep
NOUN: eye
NOUN: updates
X: aichoketrust
X: kingscrossn1c
X: mcandsonslondon
NOUN: roses
ADJ: red
NOUN: violets
ADJ: blue
NOUN: gin
NOUN: costs
ADJ: less
NOUN: dinner
NUM: two
X: mondaymotivation
X: ginoclock
X: ginuary
X: grosvenor_gbi
X: mayfair
ADJ: london
NOUN: estate
VERB: played
NOUN: host
ADJ: last
NOUN: weekend
ADJ: spectacular
NOUN: light
NOUN: installations
VERB: westend
ADJ: london
NOUN: appeal
ADJ: open
ADJ: diverse
ADJ: inclusive
NOUN: city
VERB: reaffirmed
ADJ: fabulous
NOUN: festival
NOUN: light
NOUN: exitmagazine
NOUN: maxcoopermax
NOUN: exitmagazine
NOUN: maxcoopermax
NOUN: 2nickjones
NOUN: music
VERB: light
ADJ: fantastic
X: mayfair
X: grosvenor_ldn
X: grosvenor_gbi
X: justin_venn
X: lumierelondon2018
X: lumierelondon
NOUN: success
NOUN: aichoketrust
VERB: moves
NOUN: processions2018
VERB: celebrate
ADJ: centenary
NOUN: women
VERB: gaining
NOUN: vote
NOUN: 1418now
NOUN: processions2018
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: staing
NOUN: jan
NUM: 18
NOUN: transform
NOUN: capital
NOUN: streets
NOUN: buildings
ADJ: public
NOUN: spaces
ADJ: extraordinary
ADJ: immersive
ADV: nightly
DET: a
NOUN: exhibition
ADJ: light
NOUN: sound
NOUN: today
NOUN: bloomberg
ADJ: new
ADJ: european
NOUN: hq
VERB: got
NOUN: fun
VERB: kicking
NUM: four
NOUN: benjamingammon
VERB: blown
PRT: away
NOUN: year
NOUN: aichoketrust
VERB: outdone
ADP: tgjenkins
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: magical
NOUN: evening
X: lumierelondon
X: visitbritain
X: visitlondon
X: loveuk
X: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: zebraprodunique
VERB: loved
NUM: one
NOUN: lamps
NOUN: office
X: please
X: lovelondon
X: beinspired
X: oversizedobjects
X: discoverlondon
X: lumiere
X: uniquebynature
VERB: loved
NUM: one
NOUN: lamps
NOUN: office
X: please
X: lovelondon
X: beinspired
X: oversizedobjects
X: discoverlondon
X: lumiere
X: uniquebynature
X: clouddancefest
X: rambedance
NOUN: pic
NOUN: foot
NOUN: rambe
NOUN: aist
NOUN: david
NOUN: ward
VERB: feel
ADJ: free
ADV: forward
ADJ: friendly
ADV: kindly
VERB: explained
NOUN: work
NOUN: collaboration
NOUN: owners
NOUN: feet
ADV: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: forgather
ADJ: luminous
NOUN: lumiere
NOUN: aichoketrust
ADJ: spectacular
ADJ: light
NOUN: displays
NOUN: year
NOUN: london
NOUN: lumiere
NOUN: festival
NOUN: postcardslond1
NOUN: piccadillycircus
ADJ: harmonic
NOUN: poal
NOUN: pa
NUM: one
NOUN: ray
NOUN: catcher
NOUN: 50mm
NOUN: anyone
VERB: see
NOUN: london
VERB: lit
NOUN: weekend
NOUN: festival
VERB: transformed
ADJ: favourite
NOUN: buildings
ADJ: spectacular
NOUN: light
NOUN: show
VERB: see
NOUN: photos
NOUN: festival
X: biggsytravels
X: pinks
X: flamingos
X: flamingoflyway
X: lumierelondon2018
X: lanterncompany
X: jopocock
NOUN: nightlife
X: chinatownlondon
X: lanterncompany
X: lumiere
X: londonafterdark
X: streeta
ADJ: urban
X: londonlife
X: lovelondon
X: metrouk
X: visitlondon
X: eveningstandard
X: mayoroflondon
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
X: aists
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
ADJ: brilliant
NOUN: year
NOUN: care
VERB: take
NOUN: look
VERB: put
NOUN: selection
NOUN: photos
NOUN: flickr
VERB: account
X: mayoroflondon
X: visitlondon
X: aichoketrust
X: guardianwitness
X: timeoutlondon
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: paul_mcq
VERB: walked
NOUN: miles
ADP: around
NOUN: london
NOUN: rain
ADJ: last
NOUN: night
VERB: trying
VERB: hit
ADJ: many
NUM: 50
NOUN: locations
ADJ: possible
VERB: cycled
NOUN: phone
NOUN: box
NOUN: favourite
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: londontheinside
VERB: missed
NOUN: fear
ADV: still
VERB: get
VERB: lit
X: winterlights
X: yourcanarywharf
X: londontheinside
VERB: missed
NOUN: fear
ADV: still
VERB: get
VERB: lit
X: winterlights
X: yourcanarywharf
X: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
NOUN: mariontravers
NOUN: ohlala
NOUN: j
X: aurais
X: tellement
X: aimé
X: pouvoir
X: assister
X: aux
X: décidément
NOUN: notre
NOUN: timing
X: était
X: mauvais
X: peut
X: être
VERB: pour
NOUN: l
PRT: édition
NUM: 2019
NOUN: lt
NUM: 3
ADV: teamldn
ADJ: magical
ADV: even
ADJ: innovative
NOUN: use
VERB: light
DET: a
NOUN: architecture
VERB: volunteers
ADJ: wonderful
ADV: ever
ADJ: cheerful
ADJ: enthusiastic
NOUN: thanks
ADP: carnabylondon
VERB: missing
NOUN: fear
VERB: giving
NOUN: chance
NOUN: win
VERB: lomo
ADJ: instant
NOUN: camera
X: lomo
X: lightpainter
X: lomographyuk
X: londontheinside
VERB: missed
NOUN: fear
ADV: still
VERB: get
ADJ: lit
NOUN: winterlights
VERB: yourcanarywharf
NOUN: roses
ADJ: red
NOUN: violets
ADJ: blue
NOUN: gin
NOUN: costs
ADJ: less
NOUN: dinner
NUM: two
X: mondaymotivation
X: ginoclock
X: ginuary
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: weekendaswa
NOUN: bravo
NUM: 2018
ADJ: next
NOUN: year
NOUN: couple
DET: a
NOUN: installations
NOUN: weekend
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
VERB: missed
NOUN: fear
ADV: still
VERB: get
VERB: lit
X: winterlights
X: yourcanarywharf
X: thegl0betrotter
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
NOUN: lumiere
NOUN: london
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: carnabylondon
VERB: missing
NOUN: fear
VERB: giving
NOUN: chance
NOUN: win
VERB: lomo
ADJ: instant
NOUN: camera
NOUN: lomo
NOUN: lightpainter
NOUN: lomographyuk
NOUN: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
ADJ: great
NOUN: yes
VERB: think
NOUN: video
VERB: highlights
NOUN: thanks
NOUN: aichoketrust
NOUN: amp
X: mayoroflondon
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: amazing
NOUN: work
NOUN: sroosegaarde
NOUN: lumiere
NOUN: london
NOUN: lighta
VERB: missing
NOUN: fear
VERB: giving
NOUN: chance
NOUN: win
VERB: lomo
ADJ: instant
NOUN: camera
NOUN: lomo
NOUN: lightpainter
NOUN: lomographyuk
VERB: showing
ADJ: mum
NOUN: pictures
ADJ: favourite
NOUN: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
NOUN: wave
NOUN: veigo
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: fletcherpriest
ADJ: happy
NOUN: friday
NOUN: everyone
NOUN: weekend
ADJ: sure
NOUN: head
NOUN: piccadilly
NOUN: circus
NOUN: check
NOUN: lights
X: fridayfeeling
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
X: lumiere
X: kingscrossn1c
X: beauty_blah
X: visitlondon
X: kingscrossn1c
X: matthewgeorgewh
NOUN: nightingale
NOUN: berkeley
ADJ: square
NOUN: lights
VERB: including
NOUN: king
NOUN: cross
NOUN: sunday
ADJ: final
NOUN: day
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
X: aists
X: spectral
X: lumiere
NOUN: london
X: metroldn
X: timeoutlondon
X: lumierelondon
X: lightfestival
X: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: cultureteam
ADJ: amazing
NOUN: night
VERB: representing
ADJ: london
NOUN: borough
NOUN: redbridge
NOUN: regents
NOUN: st
VERB: thank
NOUN: cirquebijou
NOUN: amp
NOUN: aichoketrust
ADJ: incredible
NOUN: oppounity
ADV: well
VERB: done
X: redbridgelive
X: umbrellaproject
X: thisisredbridge
X: mylocalculture
X: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: working
ADJ: big
NOUN: city
ADP: like
NOUN: london
VERB: get
VERB: see
ADJ: bizarre
NOUN: sights
ADJ: last
NOUN: night
VERB: found
NOUN: fish
NOUN: swimming
ADV: happily
X: phonebox
X: aichoketrust
X: lumierelondon2018
X: lumiere
X: eventprofs
NOUN: aquarium
NOUN: fish
ADJ: bizarre
DET: a
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
NOUN: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: today
ADJ: best
NOUN: bloomberg
NOUN: volunteers
VERB: joined
NOUN: cirquebijou
NOUN: amp
NOUN: lambethacademy
NOUN: students
VERB: kick
ADP: outside
ADJ: new
ADJ: european
NOUN: hq
VERB: running
NOUN: jan
NUM: 21
NOUN: londoners
VERB: view
NUM: 50
ADJ: stunning
NOUN: aworks
NOUN: night
NUM: 5
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: bloombergservice
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADJ: good
NOUN: year
NOUN: totastemaker
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: flamingos
NOUN: london
NOUN: lumierelondon
NOUN: london
NOUN: chinatown
NOUN: flamingo
NOUN: animatronics
NOUN: soho
X: panasonicfz2500
X: fz2500
X: misslondon_city
ADJ: fantastic
NOUN: southbank
VERB: lit
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: fantastic
NOUN: southbank
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
ADJ: chinese
NOUN: lantern
NOUN: festival
PRT: lumiere
NOUN: london
NOUN: lighting
NOUN: moment
NOUN: age
VERB: spend
ADJ: much
NOUN: time
VERB: staring
NOUN: screens
VERB: standing
NOUN: crowd
NOUN: sharing
NOUN: moment
ADV: really
ADJ: impoant
ADJ: lumiere
NOUN: lighting
NOUN: festival
NOUN: london
ADJ: outdoor
NOUN: performance
NOUN: event
NOUN: qpark_uk
NOUN: light
NOUN: festival
NOUN: find
VERB: get
NUM: 15
NOUN: parking
NOUN: event
NOUN: visitlondon
NOUN: lumiere
NOUN: london
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
DET: aishmv
NOUN: year
NOUN: year
VERB: keeps
VERB: surpassing
NOUN: treat
VERB: watch
ADJ: happy
ADV: finally
VERB: getting
VERB: using
NOUN: camera
VERB: feeling
ADJ: proud
NOUN: shots
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: lm_westminster
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
X: atransformslives
X: aichoketrust
X: visitlondon
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: theresidentmag
X: farewell
X: hello
X: winterlights
X: yourcanarywharf
NUM: one
NOUN: top
NUM: 15
NOUN: thingstodo
NOUN: london
NOUN: weekend
NOUN: gt
NOUN: gt
NOUN: gt
NOUN: mondaymotivation
NOUN: aichoketrust
ADV: ever
VERB: wondered
NOUN: people
ADV: behind
VERB: read
NOUN: interview
NOUN: harry
NOUN: qedproductions
NOUN: pa
NOUN: panership
NOUN: technicians_mih
NOUN: techniciansmakeithappen
NOUN: instagram
VERB: captured
NOUN: beauty
PRT: lumiere
NOUN: london
NOUN: uk
ADJ: largest
NOUN: light
NOUN: festival
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: toevho
VERB: showing
ADJ: transformative
NOUN: power
DET: a
NOUN: placemaking
VERB: create
ADJ: memorable
NOUN: visitor
NOUN: experiences
VERB: aichoketrust
ADV: visitlondon
ADJ: inspiring
NOUN: case
NOUN: study
NOUN: events
NOUN: management
NOUN: students
ADV: cccu
ADJ: kaybuxton
NOUN: opening
NOUN: night
NOUN: lumierelondon
ADJ: sore
NOUN: feet
ADJ: definite
NOUN: favourites
ADV: far
ADJ: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: amazing
NOUN: umbrellaproject
ADJ: cirquebijou
NOUN: weekend
NOUN: performance
VERB: combined
NOUN: kathak
NOUN: dance
NOUN: styles
VERB: led
NOUN: umbrellas
NOUN: photos
ADP: via
NOUN: instagram
NOUN: valeria_amodeo
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: justin_venn
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: city
VERB: exist
VERB: invent
ADJ: london
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: mayfair
NOUN: london
NOUN: estate
VERB: played
NOUN: host
ADJ: last
NOUN: weekend
ADJ: spectacular
NOUN: light
NOUN: installations
VERB: westend
ADJ: london
NOUN: appeal
ADJ: open
ADJ: diverse
ADJ: inclusive
NOUN: city
VERB: reaffirmed
ADJ: fabulous
NOUN: festival
NOUN: light
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: trafalgar
NOUN: square
VERB: lumiere
ADJ: light
NOUN: festival
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
DET: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
VERB: toevho
VERB: showing
ADJ: transformative
NOUN: power
DET: a
NOUN: placemaking
VERB: create
ADJ: memorable
NOUN: visitor
NOUN: experiences
VERB: aichoketrust
ADV: visitlondon
ADJ: inspiring
NOUN: case
NOUN: study
NOUN: events
NOUN: management
NOUN: students
VERB: cccu
NUM: 2018
VERB: comes
ADV: close
NOUN: tomorrow
VERB: read
NOUN: ceo
NOUN: pattiharris
NUM: 2016
NOUN: op
NOUN: ed
ADJ: first
NOUN: festival
NOUN: public
DET: a
ADJ: positive
NOUN: impact
NOUN: cities
NOUN: communities
NOUN: fun
VERB: wondering
ADV: around
NOUN: yesterday
ADJ: next
NOUN: stop
ADJ: winterlights
NOUN: canary
NOUN: wharf
NOUN: adamscottg
ADJ: huge
NOUN: thanks
ADJ: lovely
ADJ: london
NOUN: walkers
VERB: eschewed
NOUN: pleasures
VERB: walk
ADJ: dark
NOUN: side
NOUN: londonwalks
NOUN: ghosts
ADJ: old
NOUN: city
NOUN: tour
NOUN: tonight
NOUN: expectations
ADP: vs
NOUN: reality
NOUN: thanks
ADP: lumierelondon2018
VERB: walking
ADJ: thro
ADJ: central
ADJ: london
NOUN: amp
ADV: still
VERB: musing
NOUN: sights
NOUN: amp
NOUN: sounds
ADJ: last
NOUN: night
ADJ: great
NOUN: night
NOUN: amp
ADJ: lovely
NOUN: bump
NOUN: illumaphonium
NOUN: cirquebijou
NOUN: streets
X: spectral
X: lumierelondon
X: stjamessquare
X: oxfordstreet
X: regentstreet
X: westend
X: cultureteam
ADJ: amazing
NOUN: night
VERB: representing
ADJ: london
NOUN: borough
NOUN: redbridge
NOUN: regents
NOUN: st
VERB: thank
NOUN: cirquebijou
NOUN: amp
NOUN: aichoketrust
ADJ: incredible
NOUN: oppounity
ADV: well
VERB: done
X: redbridgelive
X: umbrellaproject
X: thisisredbridge
X: mylocalculture
X: farewell
X: hello
X: winterlights
X: yourcanarywharf
NUM: one
NOUN: top
NUM: 15
NOUN: thingstodo
NOUN: london
NOUN: weekend
NOUN: gt
NOUN: gt
NOUN: gt
NOUN: mondaymotivation
NOUN: thinkingcity
NOUN: addition
ADJ: fun
NOUN: amp
ADJ: sensory
NOUN: delight
VERB: brings
NOUN: city
NOUN: streets
ADJ: central
NOUN: roads
VERB: pedestrianised
ADJ: joyful
NOUN: experience
NOUN: zumtobelgroup
ADJ: creative
NOUN: light
DET: a
NOUN: installation
NOUN: trafalgarsquare
NOUN: london
NOUN: collectifcoin
ADJ: suppoed
NOUN: brand
NOUN: zumtobel_light
NOUN: bduchesne1
NOUN: weekend
NOUN: festival
NOUN: lights
VERB: saw
ADJ: spectacular
NOUN: installations
ADJ: many
NOUN: pas
ADJ: great
NOUN: city
VERB: included
NOUN: canadian
NOUN: aists
VERB: thank
ADP: londonisopen
VERB: making
ADJ: accessible
NOUN: tracyemin
VERB: designed
NOUN: neon
NOUN: sign
NOUN: befaithfultoyourdreams
PRT: stjamesschurch
ADJ: latest
NOUN: camden
ADJ: daily
NOUN: thanks
NOUN: lovecamden
NOUN: sundayreads
VERB: loving
NOUN: photos
NOUN: amp
NOUN: vids
DET: lumierelondon
VERB: go
ADV: lumierelondon2018
ADJ: lumiere
NOUN: catch
NOUN: weekend
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADV: really
VERB: loved
ADJ: light
NOUN: installation
NOUN: trees
VERB: mount
NOUN: street
NOUN: gardens
VERB: atsara
ADP: like
NOUN: fireflies
ADJ: tiny
ADJ: glowing
NOUN: animals
VERB: climbing
NOUN: branches
DET: bakerlooline
NOUN: oxford
NOUN: circus
NOUN: piccadilly
NOUN: circus
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADV: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
NOUN: lumiere
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: dewdropbook
ADJ: glad
VERB: see
ADJ: fab
NOUN: time
ADV: marlo
NOUN: photos
ADP: around
NOUN: waterloo
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
X: cheriecity
X: mesmerising
X: waterlicht
X: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
ADV: lumierelondon
ADJ: best
NOUN: today
NOUN: homesweethome
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
VERB: rose
NOUN: lumiere
ADP: lumierelondon
NOUN: westminster
NOUN: cathedral
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: nigelblakephoto
NOUN: hare
ADJ: square
ADJ: london
X: lumiere
X: aichoketrust
X: sliceofthecity
X: visitlondon
X: londonlumiere
NOUN: flickr
X: hea
X: aichoketrust
ADJ: compact
NOUN: powerhouse
ADJ: creative
NOUN: minds
ADJ: open
NOUN: world
ADP: as
NOUN: street
NOUN: level
NOUN: level
NOUN: playing
NOUN: field
ADP: as
NOUN: need
NOUN: suppo
VERB: loved
NOUN: think
NOUN: take
NOUN: peek
NOUN: lm_westminster
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
NOUN: atransformslives
NOUN: aichoketrust
NOUN: visitlondon
NOUN: action
NOUN: weekend
NOUN: westminsterabbey
NOUN: london
VERB: looking
VERB: lit
NOUN: weekend
NOUN: lumierelondon2018
NOUN: eyelovelondon
NOUN: visitlondon
NOUN: timeoutlondon
NOUN: londonist
NOUN: london
NOUN: ldn
NOUN: londoneye
NOUN: thelondoneye
NOUN: westminsterabbey
NOUN: instagram
NOUN: sneequaye
NOUN: london
VERB: looking
VERB: lit
NOUN: weekend
NOUN: lumierelondon2018
NOUN: eyelovelondon
NOUN: visitlondon
NOUN: timeoutlondon
NOUN: londonist
NOUN: london
NOUN: ldn
NOUN: londoneye
NOUN: thelondoneye
NOUN: westminsterabbey
NOUN: instagram
NOUN: sneequaye
NOUN: london
VERB: looking
VERB: lit
NOUN: weekend
NOUN: lumierelondon2018
NOUN: eyelovelondon
NOUN: visitlondon
NOUN: timeoutlondon
NOUN: londonist
NOUN: london
NOUN: ldn
NOUN: londoneye
NOUN: westminsterabbey
NOUN: wabbey
NOUN: instagram
NOUN: sneequaye
NOUN: london
VERB: looking
VERB: lit
NOUN: weekend
NOUN: eyelovelondon
NOUN: lumierelondon2018
NOUN: visitlondon
NOUN: timeoutlondon
NOUN: londonist
NOUN: london
NOUN: ldn
NOUN: londoneye
NOUN: westminsterabbey
NOUN: wabbey
NOUN: instagram
NOUN: sneequaye
NOUN: couple
NOUN: london
ADJ: last
NOUN: night
NOUN: lights
NOUN: london
ADJ: beautiful
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: lumiere
NOUN: london
NOUN: nofilters
NOUN: westminster
VERB: westminsterabbey
ADJ: light
ADJ: london
NOUN: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: menswearstyle
ADJ: stunning
NOUN: streets
NOUN: 7dialslondon
NOUN: shopping
NOUN: guide
VERB: coming
ADV: soon
NOUN: hare
ADJ: square
ADJ: london
X: lumiere
X: aichoketrust
X: sliceofthecity
X: visitlondon
X: londonlumiere
NOUN: flickr
NOUN: hare
ADJ: square
ADJ: london
X: lumiere
X: aichoketrust
X: sliceofthecity
X: visitlondon
X: londonlumiere
NOUN: flickr
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
X: visitlondon
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: westminster
NOUN: abbey
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: pics
VERB: going
X: flichr
X: aichoketrust
X: visitlondon
X: lovelondon
X: paulhdigiman
X: physicusuk
NOUN: flickr
NOUN: installation
NOUN: oxotower
NOUN: weekend
NOUN: lumierelondon
NOUN: londonlife
NOUN: londontown
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
X: aists
X: dewdropbook
X: dewdrop
X: ay
NOUN: abi
VERB: loved
DET: every
NOUN: moment
NOUN: mayoroflondon
VERB: thank
PRON: aists
NOUN: stewards
VERB: loved
NOUN: therose
NOUN: pedalpower
NOUN: petalpower
ADJ: great
NOUN: weekend
NOUN: lumierelondon
NOUN: photos
VERB: highlights
NOUN: thanks
ADJ: aichoketrust
NOUN: events
ADP: like
NUM: one
NOUN: reasons
VERB: lovelondon
ADJ: much
NOUN: lumierelondon2018
NOUN: alovers
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
X: aists
X: couauldgall
X: aichoketrust
VERB: got
PRON: us
NOUN: sofas
VERB: walking
NOUN: amp
VERB: interacting
NOUN: city
NOUN: streets
VERB: laughed
NOUN: lots
VERB: looked
NOUN: places
ADV: never
VERB: seen
VERB: engaged
DET: a
ADJ: different
NOUN: perspective
VERB: enjoyed
NOUN: winter
VERB: fuelled
NOUN: thought
VERB: revelled
NOUN: pleasure
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: nickede
VERB: wait
NOUN: go
NOUN: aichoketrust
NOUN: lumierelondon2018
NOUN: visitlondon
NOUN: livonshoestring
ADJ: last
NOUN: minute
NOUN: decision
NOUN: check
NOUN: kingscross
NOUN: woh
ADV: really
VERB: wish
ADP: so
NOUN: installation
NOUN: year
ADV: round
ADJ: perfect
NOUN: way
NOUN: end
NOUN: ace
NOUN: weekend
NOUN: lovecamden
VERB: kicking
NOUN: tomorrow
ADJ: dutch
NOUN: aist
NOUN: innovator
NOUN: daan
NOUN: roosegaarde
VERB: transform
ADJ: granary
ADJ: square
ADJ: ethereal
NOUN: dream
ADP: like
NOUN: landscape
PRT: aichoketrust
VERB: check
ADJ: full
NOUN: programme
NOUN: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: bduchesne1
NOUN: weekend
NOUN: festival
NOUN: lights
VERB: saw
ADJ: spectacular
NOUN: installations
ADJ: many
NOUN: pas
ADJ: great
NOUN: city
VERB: included
NOUN: canadian
NOUN: aists
VERB: thank
ADP: londonisopen
VERB: making
ADJ: accessible
NOUN: bloombergdotorg
NUM: 2018
VERB: comes
ADV: close
NOUN: tomorrow
VERB: read
NOUN: ceo
NOUN: pattiharris
NUM: 2016
NOUN: op
NOUN: ed
ADJ: first
NOUN: festival
NOUN: public
DET: a
ADJ: positive
NOUN: impact
NOUN: cities
NOUN: communities
DET: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
VERB: enjoyed
VERB: exploring
DET: lumiere
ADJ: london
NOUN: sights
NOUN: lumierelondon
NOUN: visitlondon
NOUN: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
ADV: biuk
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
VERB: get
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: display
VERB: featured
ADJ: dazzling
NOUN: work
NUM: 50
NOUN: aists
PRT: lumiere
NOUN: festival
NOUN: light
ADV: lm_westminster
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
X: atransformslives
X: aichoketrust
X: visitlondon
X: lumiere
ADJ: light
NOUN: festival
VERB: returns
NOUN: london
X: lumierelightfestival
X: lumierelightfestival2018
X: exitmagazine
X: maxcoopermax
VERB: led
NOUN: ballerinas
VERB: illuminated
ADJ: international
NOUN: venues
NOUN: kensington
NOUN: palace
NOUN: henley
NOUN: festival
NOUN: savoy
NOUN: amp
NOUN: ductack
NOUN: theatre
NOUN: dubai
NOUN: lumierelondon2018
NOUN: flamingo
NOUN: flyway
NOUN: lumierelondon2018
NOUN: lanterncompany
NOUN: jopocock
NOUN: nightlife
X: chinatownlondon
X: lanterncompany
X: lumiere
X: londonafterdark
X: streeta
ADJ: urban
X: londonlife
X: lovelondon
X: metrouk
X: visitlondon
X: eveningstandard
X: mayoroflondon
NUM: 21012018
NOUN: lumiere
NOUN: london
NUM: 2018
X: lumierelondon
X: lumierelondon2018
X: meizu
X: meizumx6
VERB: showing
ADJ: transformative
NOUN: power
DET: a
NOUN: placemaking
VERB: create
ADJ: memorable
NOUN: visitor
NOUN: experiences
VERB: aichoketrust
ADV: visitlondon
ADJ: inspiring
NOUN: case
NOUN: study
NOUN: events
NOUN: management
NOUN: students
X: cccu
X: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: greatbritain
ADJ: london
NOUN: lights
ADV: back
NUM: 50
NOUN: aworks
VERB: display
ADP: across
NOUN: capital
VERB: got
NUM: 3
NOUN: nights
VERB: left
NOUN: visit
NOUN: paul_mcq
NOUN: charsuibuns
NOUN: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: westminster
NOUN: abbey
NOUN: lumierelondon2018
NOUN: hooverit
NOUN: omg
NUM: one
ADJ: incredible
NOUN: weekend
NOUN: london
VERB: thank
X: rambedance
X: couauldgall
X: davidward
X: aichoketrust
VERB: rocked
VERB: walked
NOUN: amp
VERB: embraced
NOUN: january
ADJ: incredible
NOUN: city
DET: a
NOUN: amp
NOUN: culture
ADJ: much
NOUN: magnificence
NOUN: deva
NOUN: premal
NOUN: kellybushdesign
VERB: lighten
NOUN: lights
X: justin_venn
X: lumierelondon2018
X: lumierelondon
X: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
ADV: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
PRT: lm_westminster
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
X: atransformslives
X: aichoketrust
X: visitlondon
X: openyoureyesldn
VERB: show
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
X: lumiere
X: dewdropbook
X: dewdrop
X: ay
NOUN: abi
VERB: loved
DET: every
NOUN: moment
NOUN: mayoroflondon
VERB: thank
PRON: aists
NOUN: stewards
VERB: loved
X: therose
X: pedalpower
X: petalpower
X: zumtobelgroup
ADJ: creative
NOUN: light
DET: a
NOUN: installation
NOUN: trafalgarsquare
NOUN: london
NOUN: collectifcoin
ADJ: suppoed
NOUN: brand
NOUN: zumtobel_light
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
DET: thelondoneye
VERB: thank
NOUN: everyone
VERB: visited
DET: kingscrossn1c
ADJ: last
NUM: four
NOUN: days
NOUN: hope
VERB: enjoyed
ADJ: much
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: fletcherpriest
ADJ: happy
NOUN: friday
NOUN: everyone
NOUN: weekend
ADJ: sure
NOUN: head
NOUN: piccadilly
NOUN: circus
NOUN: check
NOUN: lights
VERB: fridayfeeling
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: aichoketrust
ADV: ever
VERB: wondered
NOUN: people
ADV: behind
VERB: read
NOUN: interview
NOUN: harry
NOUN: qedproductions
NOUN: pa
NOUN: panership
NOUN: technicians_mih
NOUN: techniciansmakeithappen
ADJ: luminous
NOUN: lumiere
NOUN: aichoketrust
NOUN: asturn
VERB: enjoyed
VERB: wandering
ADV: paicularly
ADJ: giant
NOUN: chill
NOUN: zone
NOUN: trafalgar
NOUN: sq
VERB: suspended
ADJ: arabelladorman
NOUN: st
NOUN: james
ADJ: creative
NOUN: light
DET: a
NOUN: installation
NOUN: trafalgarsquare
NOUN: london
NOUN: collectifcoin
ADJ: suppoed
NOUN: brand
NOUN: zumtobel_light
NOUN: newwestend
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: facltd
NOUN: teams
ADJ: busy
NOUN: lumierelondon
NOUN: lumiere
NOUN: date
ADJ: critical
NOUN: care
NOUN: amp
ADJ: medical
NOUN: response
NOUN: teams
VERB: dealt
NOUN: calls
VERB: ranging
NOUN: breathing
NOUN: difficulties
NOUN: chest
NOUN: pain
NOUN: diabetic
VERB: collapses
NOUN: drug
NOUN: overdoses
VERB: keeping
NOUN: londoners
ADJ: safe
NOUN: eventprofs
NOUN: firstaid
NOUN: leakestarches
VERB: walk
NOUN: rainbow
NOUN: tunnel
VERB: see
NOUN: progress
VERB: made
ADJ: leakestreetarches
NOUN: development
ADV: really
VERB: wanted
NOUN: go
NOUN: year
X: herroyalj
X: visitlondon
X: thelondoneye
X: kingscrossn1c
X: wabbey
X: yes
VERB: loved
X: lumierelondon
X: lumierelondon2018
X: treniq
X: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
NOUN: london
ADJ: amazing
NOUN: weekend
NOUN: visit
NOUN: jackiemcnerney
ADJ: favourite
NOUN: installation
NOUN: today
NOUN: cycling
VERB: keep
VERB: lit
NOUN: fun
VERB: give
ADJ: light
NOUN: people
VERB: find
NOUN: way
ADJ: regentstreet
ADJ: london
NOUN: city
NOUN: citycentre
NOUN: csm_live
ADJ: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
VERB: striking
NOUN: work
NOUN: icon_retail
NOUN: team
NOUN: nkirkwoodlondon
NOUN: celebration
ADJ: incredible
NOUN: days
VERB: seeing
NOUN: victoria
VERB: illuminated
VERB: let
PRON: us
VERB: know
ADJ: favourite
NOUN: installation
VERB: forget
VERB: tag
PRON: us
NOUN: victoria
VERB: snaps
NOUN: thanks
NOUN: aichoketrust
NOUN: visitlondon
NOUN: london
VERB: lit
NOUN: weekend
ADJ: annual
ADJ: light
NOUN: festival
VERB: lumiere
NUM: 50
NOUN: works
VERB: created
NOUN: uk
ADJ: international
NOUN: aists
VERB: illuminating
ADJ: inspirational
NOUN: festival
VERB: popped
NOUN: kings
VERB: cross
ADJ: ethereal
NOUN: experience
ADJ: wonderful
NOUN: jubileeline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: jubilee
NOUN: line
NOUN: baker
NOUN: street
NOUN: waterloo
ADJ: busy
NOUN: find
NOUN: lumierelondon2018
NOUN: londonlights
ADV: mayoroflondon
ADJ: wonderful
NOUN: time
ADJ: interactive
ADJ: fun
ADJ: brilliant
NOUN: stewards
ADJ: exceptional
NOUN: aists
PRT: ay
NOUN: city
VERB: thenohbankbid
ADJ: sad
VERB: see
NOUN: end
NUM: two
NOUN: installations
VERB: nohbank
ADJ: fantastic
NOUN: jacob
NOUN: ladder
NOUN: top
NOUN: smitf_london
VERB: sounds
NOUN: amp
NOUN: light
X: trafalgarsquare
X: dewdrop
X: ay
NOUN: abi
VERB: loved
DET: every
NOUN: moment
NOUN: mayoroflondon
VERB: thank
PRON: aists
NOUN: stewards
VERB: loved
X: therose
X: pedalpower
X: petalpower
X: lumiere
ADV: back
ADP: across
NOUN: london
ADJ: last
NOUN: weekend
NUM: 50
NOUN: installations
VERB: spread
ADP: across
PRON: noh
ADJ: south
NOUN: city
VERB: felt
ADP: like
ADJ: long
NOUN: time
ADP: since
ADJ: last
NUM: one
NUM: 2016
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: london
NUM: one
NOUN: installations
VERB: forgot
NOUN: post
NOUN: saturday
NOUN: esquarehotel
ADJ: beautiful
NOUN: photograph
X: levanterman
X: lumierelondon
X: aichoketrust
X: southbanklondon
X: postcardslond1
X: lumiere
NOUN: london
NOUN: royalacademy
NOUN: love
NOUN: motion
NOUN: lumierelondon2018
NOUN: londonlumiere
NOUN: lumierelondon
NOUN: cccutourres
VERB: power
DET: a
NOUN: transform
NOUN: experience
NOUN: place
NOUN: creativeplacemaking
NOUN: croydoncollege
ADJ: wonderful
NOUN: festival
NOUN: lights
VERB: heading
NOUN: croydon
NOUN: weekend
ADV: thenohbankbid
ADJ: sad
VERB: see
NOUN: end
NUM: two
NOUN: installations
VERB: nohbank
ADJ: fantastic
NOUN: jacob
NOUN: ladder
NOUN: top
NOUN: smitf_london
VERB: sounds
NOUN: amp
NOUN: light
NOUN: trafalgarsquare
ADJ: wonderful
NOUN: festival
NOUN: lights
VERB: heading
NOUN: croydon
NOUN: weekend
NOUN: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
ADJ: beautiful
NOUN: photograph
NOUN: levanterman
NOUN: lumierelondon
NOUN: aichoketrust
NOUN: southbanklondon
VERB: come
NOUN: end
VERB: relive
ADJ: magic
ADJ: dazzling
NOUN: lights
X: westend
X: aichoketrust
X: thewpa
X: regentst_assoc
X: lumierelondon
X: grosvenor_gbi
X: thecrownestate
X: oxfordstreetw1
X: regentstreetw1
X: archdeaconluke
X: trafalgarsquare
NOUN: tonight
NOUN: sound
NOUN: amp
NOUN: light
NOUN: lumierefestival
NOUN: smitf_london
ADJ: wonderful
NOUN: westminster
VERB: hosted
ADJ: much
NOUN: weekend
ADJ: amazing
NOUN: chris
VERB: looking
ADV: forward
ADJ: next
NOUN: time
X: atransformslives
X: aichoketrust
X: visitlondon
X: thenohbankbid
ADJ: sad
VERB: see
NOUN: end
NUM: two
NOUN: installations
VERB: nohbank
ADJ: fantastic
NOUN: jacob
NOUN: ladder
NOUN: top
NOUN: smitf_london
VERB: sounds
NOUN: amp
NOUN: light
ADV: trafalgarsquare
ADJ: sad
VERB: see
NOUN: end
NUM: two
NOUN: installations
VERB: nohbank
ADJ: fantastic
NOUN: jacob
NOUN: ladder
NOUN: top
NOUN: smitf_london
VERB: sounds
NOUN: amp
NOUN: light
X: trafalgarsquare
X: lumiere
X: adventuresofjellie
X: jellie
X: lumiere
X: granarysquare
X: kingscross
NOUN: london
NOUN: kingscrossn1c
NOUN: russellofeah
NOUN: lights
CONJ: plus
NOUN: music
VERB: equals
NOUN: dot
NOUN: hands
ADJ: favourite
NOUN: installation
NOUN: aichoketrust
NOUN: visitlondon
NOUN: kingscrossn1c
NOUN: roamingrequired
NOUN: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
ADV: southbanklondon
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
X: lumiere
X: adventuresofjellie
X: jellie
X: lumiere
X: granarysquare
X: kingscross
NOUN: london
VERB: love
ADJ: south
NOUN: bank
NOUN: installation
PRT: lumiere
NOUN: wave
VERB: included
NOUN: highlight
NOUN: hope
VERB: enjoyed
NOUN: festival
NOUN: year
NOUN: folks
PRT: cccutourres
NOUN: power
DET: a
NOUN: transform
NOUN: experience
NOUN: place
NOUN: creativeplacemaking
NOUN: cultureteam
ADJ: amazing
NOUN: night
VERB: representing
ADJ: london
NOUN: borough
NOUN: redbridge
NOUN: regents
NOUN: st
VERB: thank
NOUN: cirquebijou
NOUN: amp
NOUN: aichoketrust
ADJ: incredible
NOUN: oppounity
ADV: well
VERB: done
X: redbridgelive
X: umbrellaproject
X: thisisredbridge
X: mylocalculture
X: aichoketrust
VERB: discover
ADJ: british
NOUN: aist
NOUN: amp
NOUN: lighting
NOUN: designer
NOUN: simon
NOUN: corder
ADJ: new
NOUN: commission
NOUN: bough
NUM: 3
NUM: 18
NUM: 21
NOUN: january
VERB: admire
ADJ: vivid
NOUN: tubes
ADJ: fluorescent
NOUN: light
VERB: grow
NOUN: facade
VERB: sponsored
NOUN: cain_int
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: lumiere
X: adventuresofjellie
X: jellie
X: lumiere
X: granarysquare
X: kingscross
NOUN: london
X: lumiere
X: adventuresofjellie
X: jellie
X: lumiere
X: granarysquare
X: kingscross
NOUN: london
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: cultureteam
ADJ: amazing
NOUN: night
VERB: representing
ADJ: london
NOUN: borough
NOUN: redbridge
NOUN: regents
NOUN: st
VERB: thank
NOUN: cirquebijou
NOUN: amp
NOUN: aichoketrust
ADJ: incredible
NOUN: oppounity
ADV: well
VERB: done
X: redbridgelive
X: umbrellaproject
X: thisisredbridge
X: mylocalculture
X: livonshoestring
ADJ: last
NOUN: minute
NOUN: decision
NOUN: check
NOUN: kingscross
NOUN: woh
ADV: really
VERB: wish
ADP: so
NOUN: installation
NOUN: year
ADV: round
ADJ: perfect
NOUN: way
NOUN: end
NOUN: ace
NOUN: weekend
NOUN: lumierelondon2018
NOUN: lumierelondon
ADV: rishimadlani
ADJ: fantastic
NOUN: go
NOUN: see
NOUN: bloomsbury
NOUN: amp
X: fitzrovia
X: pas
NOUN: camden
NOUN: tonight
NOUN: snow
NOUN: amp
NOUN: rain
VERB: stopped
ADJ: cold
ADJ: fantastic
NOUN: amp
ADJ: great
NOUN: job
NOUN: mayoroflondon
VERB: promote
NOUN: city
ADJ: local
NOUN: residents
NOUN: londoners
ADV: widely
VERB: amp
NOUN: tourists
X: londonisopen
X: 2nickjones
NOUN: laughter
NOUN: southmoltonstreet
NOUN: musical
VERB: see
NOUN: saws
VERB: loving
NOUN: lumierelondon
NOUN: grosvenor_ldn
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: openyoureyesldn
VERB: show
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: cultureteam
ADJ: amazing
NOUN: night
VERB: representing
ADJ: london
NOUN: borough
NOUN: redbridge
NOUN: regents
NOUN: st
VERB: thank
NOUN: cirquebijou
NOUN: amp
NOUN: aichoketrust
ADJ: incredible
NOUN: oppounity
ADV: well
VERB: done
X: redbridgelive
X: umbrellaproject
X: thisisredbridge
X: mylocalculture
X: illuminatedriv
NOUN: fish
NOUN: phone
NOUN: box
VERB: drew
NOUN: crowd
VERB: would
VERB: make
ADV: even
NOUN: mona
NOUN: lisa
ADJ: little
ADJ: green
NOUN: envy
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
ADJ: cute
NOUN: bunny
VERB: remind
NOUN: spring
VERB: loved
ADJ: playful
NOUN: scene
NOUN: pa
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: eslighting
ADJ: awesome
NOUN: photo
NOUN: eleni
ADV: somewhere
ADJ: purple
NOUN: rain
NOUN: amp
ADJ: purple
NOUN: haze
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: birenmisra
ADJ: nice
NOUN: pics
VERB: biren
ADJ: glad
VERB: hear
VERB: enjoyed
NOUN: rg
VERB: disappointed
VERB: missed
VERB: would
VERB: loved
VERB: see
NOUN: something
VERB: go
NOUN: list
ADJ: next
NOUN: year
NOUN: ldn_gov
VERB: see
ADJ: amazing
NOUN: instillations
ADP: across
NOUN: city
NOUN: today
NOUN: sunday
NOUN: details
VERB: go
ADJ: bbctravelale
NOUN: folks
VERB: lighting
NOUN: centre
NUM: one
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
VERB: remain
NOUN: place
PRT: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: shaftesbury
NOUN: ave
NOUN: fi
NOUN: charellemarr
NOUN: cultureteam
NOUN: help
X: please
VERB: boyf
VERB: went
ADV: yest
VERB: involved
NOUN: umbrella
NOUN: performance
NOUN: mayfair
ADJ: middle
ADJ: amazing
NOUN: photos
VERB: noticed
NOUN: ppl
VERB: taking
PRON: us
VERB: help
VERB: find
NUM: one
NOUN: momento
VERB: thank
ADV: ldn_gov
ADJ: great
NOUN: launch
ADJ: last
NOUN: night
NOUN: deputy
NOUN: mayor
NOUN: justinesimons1
NOUN: aichoketrust
NOUN: ldn_gov
VERB: signing
ADJ: lovely
NOUN: weekend
NOUN: everyone
VERB: forget
VERB: tag
PRON: us
NOUN: pics
VERB: see
NOUN: monday
NOUN: ldn_gov
VERB: continues
NOUN: weekend
VERB: see
ADJ: london
ADJ: famous
NOUN: landmarks
NOUN: streets
VERB: taken
ADJ: amazing
NOUN: installations
VERB: find
NOUN: visitlondon
NOUN: aichoketrust
VERB: lighten
NOUN: lights
X: waterlicht
X: daan
X: roosegaarde
NUM: one
ADJ: immersive
NOUN: installations
VERB: seen
ADJ: lumiere
ADJ: london
NOUN: frog
NOUN: lumierelondon
NOUN: londonlumiere
NOUN: london
X: leceistersquare
X: lumiere
NOUN: westminster
NOUN: abbey
VERB: lit
NOUN: aist
NOUN: patrice
NOUN: warrener
VERB: dazzling
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: visitlondon
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: visitlondon
NOUN: london
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: visitlondon
NOUN: trafalgar
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: visitlondon
ADV: south
ADJ: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: supermoon
NUM: 2018
X: londonisopen
X: lumiere
X: streeta
X: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
VERB: missed
NOUN: worry
NOUN: works
VERB: going
VERB: staying
ADV: permanently
ADP: across
NOUN: london
NOUN: dot
NOUN: dot
NOUN: dot
NOUN: dot
VERB: dot
NOUN: philippe
NOUN: morvan
NOUN: london
NOUN: visit
NOUN: website
VERB: connect
NOUN: dots
NOUN: order
NOUN: prints
VERB: dot
ADJ: philippemorvan
NOUN: lightinstallation
NOUN: landscape
NOUN: colour
NOUN: longexposure
NOUN: canon
NOUN: kings
VERB: highlight
NOUN: weekend
VERB: shone
ADJ: light
NOUN: project
NOUN: kingscrossn1c
NOUN: london
NOUN: omg
NUM: one
ADJ: incredible
NOUN: weekend
NOUN: london
VERB: thank
X: rambedance
X: couauldgall
X: davidward
X: aichoketrust
VERB: rocked
VERB: walked
NOUN: amp
VERB: embraced
NOUN: january
ADJ: incredible
NOUN: city
DET: a
NOUN: amp
NOUN: culture
ADJ: much
NOUN: magnificence
NOUN: deva
NOUN: premal
NOUN: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: westminster
NOUN: abbey
VERB: lumierelondon2018
DET: another
ADJ: amazing
ADJ: stunning
NOUN: lumiere
NOUN: london
NOUN: aichoketrust
NOUN: visitlondon
NOUN: pleasure
VERB: walk
ADP: around
ADJ: london
ADJ: fantastic
ADJ: impressive
NOUN: light
NOUN: installations
NOUN: lumiere2018
NOUN: london
NOUN: lovelondon
ADJ: lightfestival
ADJ: light
NOUN: swing
NOUN: time
NOUN: lapse
NOUN: wildscreens
NOUN: aichoketrust
NUM: 3
NOUN: day
NOUN: tour
VERB: ends
NOUN: w
X: thamespulse
X: seacontainers
X: mondrianhotel
X: jasonbruges
X: jbruges
ADJ: biggest
NOUN: datavisualisation
NOUN: w
NUM: 5000
X: sqm
X: brynskov
X: mabiennale
X: fassade
VERB: flashing
ADJ: blue
NOUN: light
NOUN: ie
NOUN: river
NOUN: quality
VERB: improving
ADP: despite
NOUN: rain
VERB: saw
ADJ: last
NOUN: night
VERB: doublemacbex
ADJ: many
ADJ: awesome
NOUN: light
NOUN: installations
DET: kingscrossn1c
NOUN: year
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
ADJ: interactive
NOUN: supercube
NOUN: look
NOUN: camera
VERB: appear
NOUN: jar
NOUN: kids
VERB: get
ADJ: enough
NOUN: one
X: bhawnasaini_yml
ADJ: harmonic
NOUN: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
VERB: visitlondon
NOUN: london
X: lumierelondon
X: londonblogger
X: wintersinlondon
X: nightfestival
X: wildscreens
X: aichoketrust
NUM: 3
NOUN: day
NOUN: tour
VERB: ends
NOUN: w
X: thamespulse
X: seacontainers
X: mondrianhotel
X: jasonbruges
X: jbruges
ADJ: biggest
NOUN: datavisualisation
NOUN: w
NUM: 5000
X: sqm
X: brynskov
X: mabiennale
X: fassade
VERB: flashing
ADJ: blue
NOUN: light
NOUN: ie
NOUN: river
NOUN: quality
VERB: improving
NOUN: balloons
NOUN: amp
VERB: beats
NOUN: trafalgar
NOUN: sq
NOUN: koalacourses
VERB: looking
ADV: forward
DET: lumierelondon
VERB: make
ADJ: great
NOUN: aist
NOUN: date
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: flickr
X: iesphotos
X: cityatnight
NOUN: london
DET: a
NOUN: photography
NOUN: postcardslond1
NOUN: westminster
NOUN: abbey
NOUN: way
VERB: wrap
NOUN: polaroidorignls
NOUN: polaroid
NOUN: photography
NOUN: engcathedrals
X: wow
X: wabbey
X: westminsterabbey
X: chrissykinsella
NOUN: friend
NOUN: toddler
VERB: said
NOUN: aichoketrust
NOUN: lumiere2018
ADJ: beautiful
NOUN: must
VERB: made
NOUN: fairies
VERB: think
ADJ: loveliest
NOUN: description
VERB: heard
ADV: far
ADV: westminstercathedral
VERB: lit
ADJ: public
NOUN: peddling
NOUN: bicycles
DET: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: vbp2011
VERB: daveyjay1
ADV: pretty
ADJ: amazing
ADJ: postcardslond1
NOUN: westminster
NOUN: abbey
VERB: saw
NOUN: weekend
ADJ: lucky
NOUN: experiences
ADP: like
NOUN: doorstep
NOUN: nightlife
NOUN: leicester
NOUN: sq
NOUN: themayfairhotel
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
NOUN: tmnikonian
NOUN: aichoketrust
VERB: get
NOUN: insight
NOUN: magic
ADP: behind
NOUN: browse
NOUN: oppounities
NOUN: training
NOUN: jobs
ADP: across
NOUN: range
ADJ: exciting
NOUN: oppounities
ADJ: technicians_mih
NOUN: website
NOUN: techniciansmakeithappen
NOUN: tfl
NOUN: update
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: removed
NOUN: exception
NOUN: oxford
NOUN: street
PRT: btwn
ADJ: new
NOUN: bond
NOUN: st
NOUN: amp
ADJ: great
NOUN: poland
NOUN: st
NOUN: amp
NOUN: regent
NOUN: street
NOUN: btwn
NOUN: moimer
NOUN: st
NOUN: amp
ADJ: great
NOUN: marlborough
NOUN: st
VERB: scheduled
VERB: removed
ADP: 0500hrs
ADJ: 22nd
NOUN: january
NOUN: westminster
NOUN: abbey
VERB: looking
ADV: crabby
ADJ: great
NOUN: time
VERB: walking
ADP: around
VERB: visiting
NOUN: exhibits
DET: tokiecoco
ADV: definitely
VERB: highlight
VERB: may
DET: another
ADJ: huge
ADJ: free
ADJ: light
NOUN: festival
VERB: going
ADJ: london
NOUN: week
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
ADJ: stunning
NOUN: photos
VERB: show
NOUN: lumiere
NOUN: aworks
NOUN: lighting
NOUN: london
NOUN: night
NOUN: wave
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
ADP: lovecamden
VERB: kicking
NOUN: tomorrow
ADJ: dutch
NOUN: aist
NOUN: innovator
NOUN: daan
NOUN: roosegaarde
VERB: transform
ADJ: granary
ADJ: square
ADJ: ethereal
NOUN: dream
ADP: like
NOUN: landscape
PRT: aichoketrust
VERB: check
ADJ: full
NOUN: programme
VERB: walked
NOUN: miles
ADP: around
NOUN: london
NOUN: rain
ADJ: last
NOUN: night
VERB: trying
VERB: hit
ADJ: many
NUM: 50
NOUN: locations
ADJ: possible
VERB: cycled
NOUN: phone
NOUN: box
NOUN: favourite
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
ADV: possibly
ADJ: favourite
NOUN: installation
NOUN: fouh
ADJ: final
NOUN: evening
NOUN: light
VERB: spotting
VERB: loved
NOUN: london
NOUN: lumiere
ADP: till
ADJ: next
NOUN: time
X: wow
X: wabbey
X: westminsterabbey
NOUN: kings
X: x
VERB: granary
ADJ: square
NOUN: viewing
ADJ: last
NOUN: night
NOUN: greatbritain
NOUN: london
NOUN: lights
ADV: back
NUM: 50
NOUN: aworks
VERB: display
ADP: across
NOUN: capital
VERB: got
NUM: 3
NOUN: nights
VERB: left
NOUN: visit
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
X: lumierelondon2018
X: lovelondon
X: blinking_ligths
X: lightshow
X: lightsofthecity
X: ig_captu
X: trudyakelly
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: sarahdobbs
NOUN: london
ADJ: lovely
NOUN: bihday
ADJ: present
NOUN: lumierelondon
PRT: lumiere
ADJ: light
NOUN: display
ADP: outside
NOUN: king
NOUN: cross
NOUN: station
PRT: lumiere
NOUN: lights
VERB: lightshow
NOUN: londontown
NOUN: uk
NOUN: londoner
X: abstractphoto
X: abstracta
X: colorphotography
X: streeta
X: streetphotographer
X: streetphotography
X: publica
X: festivaloflights
NOUN: c
NOUN: suzystories
VERB: wish
VERB: could
NOUN: year
ADV: round
ADJ: suzystories
NOUN: wish
VERB: could
NOUN: year
NOUN: round
NOUN: southbanklondon
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: london
NOUN: southbank
NOUN: london
NOUN: londra
NOUN: londres
NOUN: chance
ADP: so
NOUN: photos
NOUN: canon
NUM: two
NOUN: phone
NOUN: chinatown
X: westminsterabbey
X: lumierelondon
X: joinin247
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: cheriecity
VERB: mesmerising
NOUN: waterlicht
NOUN: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: thelondonguidee
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
X: thelondonguidee
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
X: thelondonguidee
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
X: thelondonguidee
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
NOUN: miss
VERB: lumiere
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: trafalgarsquare
X: kingscross
X: carnabystreet
X: regentstreet
NOUN: england
VERB: londonlife
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: brandgreatbritain
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
PRT: breesims
ADJ: fave
NOUN: installation
X: lumiere
X: lumierelondon
X: kingscross
X: granarysquare
X: visitlondon
X: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: afraid
NOUN: someone
VERB: going
VERB: make
ADJ: happier
NOUN: whatthefishsaw
NOUN: aquarium
NOUN: phoneaddict
NOUN: mania
X: telephonebox
X: bufalino
X: deseille
X: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
X: lumierelondon
X: mpswestminster
X: projectservator
X: lumière
NOUN: trafalgar
NOUN: square
ADV: earlier
ADJ: close
NOUN: npglondon
NOUN: smitf_london
VERB: wrap
ADJ: warm
NOUN: evening
VERB: getting
ADJ: milder
X: teamworktomakethedreamwork
X: actioncountersterrorism
X: welightupeverywhere
X: egondesign
VERB: damp
ADJ: fun
NOUN: evening
NOUN: kingscross
NOUN: theladytravels
VERB: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
ADV: thankfully
VERB: finishes
NOUN: tomorrow
ADV: poorly
VERB: looking
NOUN: fishes
VERB: floating
ADJ: top
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
X: aichoketrust
X: biggsytravels
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: highlights
ADJ: fantastic
NOUN: amsharif
VERB: enjoying
ADJ: great
NOUN: installations
VERB: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: niamaelynel
ADJ: easy
NOUN: way
VERB: get
ADJ: free
NOUN: followers
NOUN: newcastle
X: fontwell
X: crz_mankai8
X: awesmoeb
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: barkingsideac
VERB: seeing
NOUN: chandeliers
VERB: displayed
NOUN: king
NOUN: cross
NOUN: london
NOUN: thanks
VERB: took
NOUN: pa
ADV: well
VERB: done
NOUN: redbridge
NOUN: cultureteam
ADJ: wonderful
NOUN: oppounity
ADJ: amazing
NOUN: installations
DET: aichoketrust
VERB: thank
VERB: seeing
NOUN: chandeliers
VERB: displayed
NOUN: king
NOUN: cross
NOUN: london
NOUN: thanks
VERB: took
NOUN: pa
ADV: well
VERB: done
NOUN: redbridge
NOUN: cultureteam
ADJ: wonderful
NOUN: oppounity
ADJ: amazing
NOUN: installations
DET: aichoketrust
VERB: thank
NOUN: hours
VERB: left
VERB: enjoy
NOUN: sights
PRT: lumiere
NOUN: london
VERB: check
ADJ: handy
NOUN: guide
NOUN: amp
NOUN: share
NOUN: pics
PRON: us
VERB: using
NOUN: amp
NOUN: brightnights
NOUN: twitter
NOUN: amp
NOUN: instagram
NOUN: gt
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: traveljunkiegrl
NOUN: night
NOUN: night
NOUN: london
DET: another
NOUN: day
VERB: sets
NUM: one
NOUN: evening
VERB: left
NOUN: wish
ADV: longer
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: euro_tour
X: 光
X: の
X: 祭典
X: ルミエール
X: ロンドン
NUM: 1
NUM: 18
NUM: 21
NUM: 40
NUM: 人
X: 以上
X: の
X: 英国
X: および
X: 国際
X: 的
X: な
X: アーティスト
X: たち
X: によって
X: ロンドン
X: の
X: 象徴
X: 的
X: な
X: 建築
X: と
X: 通り
X: を
X: 再
X: 想像
X: し
X: ロンドン
X: の
X: 街
X: を
X: 夜間
X: 美術館
X: に
X: 変え
X: ます
X: 英国
X: の
X: ホテル
X: newsdigest
X: 英国
X: 昨日
X: から
X: 始まっ
X: た
X: リュミエール
X: ロンドン
X: 動画
X: は
X: キングス
X: クロス
X: グラナ
X: リー
X: スクエア
X: で
X: 展示
X: され
X: て
X: いる
X: 洪水
X: を
X: バーチャル
X: で
X: 表現
X: し
X: て
X: いる
X: 光
X: と
X: 霧
X: の
X: アート
X: waterlicht
X: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
NOUN: thought
VERB: would
ADJ: prudent
NOUN: print
NOUN: map
NOUN: list
NOUN: installations
VERB: wanted
VERB: see
NOUN: case
NOUN: wi
NOUN: fi
ADJ: erratic
NOUN: locations
X: yeah
VERB: turned
ADV: well
ADJ: torrentialrain
NOUN: whatmap
NOUN: raina
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: photoflash_ceo
X: lumierelondon2018
X: coventgarden
X: londonevents
X: fishtank
X: phonebooth
X: lightshow
X: ig_l
X: southbanklondon
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: zumtobel_light
VERB: plans
NOUN: weekend
NOUN: london
VERB: miss
NOUN: uk
ADJ: largest
NOUN: light
DET: a
NOUN: festival
ADJ: proud
NOUN: pa
NOUN: w
NOUN: collectif
NOUN: coin
NOUN: child
NOUN: hood
NOUN: aichoketrust
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
X: visitlondon
X: lumiere
NOUN: london
X: lumierelondon2018
X: lumiere
NOUN: london
VERB: dayum
VERB: filter
NOUN: someone
VERB: make
NUM: one
NOUN: nofilter
ADJ: funky
NOUN: lights
X: priorconstruct
X: lumiere
NOUN: london
NOUN: westminster
NOUN: abbey
VERB: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: lucydrury21
NOUN: fish
NOUN: phone
NOUN: box
NOUN: lumierelondon
NOUN: lumierelondon2018
VERB: lumiere
ADV: pretty
VERB: lights
NOUN: leicestersquare
NOUN: lumierelondon
NOUN: january
NUM: 2018
NOUN: london
NOUN: uk
NOUN: weekend
NOUN: lumierelondon
NOUN: london
NOUN: january
NUM: 2018
NOUN: weekend
NOUN: friends
VERB: lights
ADJ: beautiful
NOUN: uk
ADJ: happy
VERB: seen
DET: lumierelondon2018
VERB: shattered
ADV: mapreadingskills
ADJ: favourite
ADJ: light
NOUN: installation
PRT: lumiere
NOUN: london
ADJ: amazing
ADJ: blue
NOUN: wave
NOUN: king
NOUN: cross
NOUN: photography
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
VERB: zacdenman
DET: another
ADJ: fantastic
NOUN: installation
NOUN: lumiere
NUM: 2018
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: sessions
VERB: filming
X: videoproduction
X: zacvideo
X: studiosession
X: londontown
NOUN: videographer
NOUN: videography
NOUN: musicvideo
NOUN: zacdenman
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
ADV: beautifully
VERB: lit
NOUN: westminsterabbey
NOUN: light
NOUN: festival
PRT: lumiere
NOUN: london
NOUN: photography
NOUN: fave
NOUN: installation
NOUN: lumiere
NOUN: lumierelondon
NOUN: kingscross
NOUN: granarysquare
NOUN: visitlondon
ADV: thoroughly
VERB: enjoyed
NOUN: tonight
ADJ: nice
NOUN: walk
ADJ: new
NOUN: instagram
NOUN: image
NOUN: neon
NOUN: lights
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: thank
DET: another
ADJ: stunning
NOUN: extravaganza
NOUN: magic
ADV: everywhere
ADV: truly
VERB: illuminating
NOUN: light
DET: a
NOUN: amp
NOUN: witchcraft
NOUN: visitlondon
NOUN: visitlondon
NOUN: lumierelondon
NOUN: london
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADV: kelvintrundle
ADJ: waterlicht
ADJ: london
NOUN: lumiere
NOUN: festival
NUM: 2018
NOUN: flickr
VERB: would
VERB: like
VERB: say
VERB: thank
NOUN: aichoketrust
ADJ: fab
ADJ: free
DET: a
ADJ: spectacular
NOUN: pity
NOUN: weather
VERB: bit
ADJ: unkind
NOUN: today
VERB: loved
NOUN: non
ADV: less
X: lumierelondon2018
X: coventgarden
X: londonevents
X: fishtank
X: phonebooth
X: lightshow
X: ig_l
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: london
ADJ: light
NOUN: westminster
NOUN: lightning
VERB: levanterman
ADV: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: hestercoxprint
ADJ: amazing
NOUN: event
ADV: staed
ADJ: present
NOUN: mayoroflondon
VERB: went
NUM: 2016
ADV: even
ADJ: bigger
NOUN: year
VERB: went
NUM: two
NOUN: evenings
ADV: still
VERB: see
NOUN: everything
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: dj_deccy
NOUN: reflection
NOUN: childhood
X: aichoketrust
X: lumierefestival2018
X: aichoke
X: trafalgarsquare
NOUN: london
VERB: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
ADJ: london
ADJ: light
NOUN: festival
NOUN: london
NOUN: reflection
ADV: trudyakelly
VERB: loved
VERB: getting
NOUN: crowds
VERB: perform
NOUN: installation
ADJ: clever
NOUN: umbrellas
ADV: jaimelondonboy
VERB: made
ADJ: floral
NOUN: field
NOUN: lumierelondon
NOUN: theladytravels
VERB: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
ADJ: harmonic
NOUN: poal
NOUN: aist
NOUN: chris
NOUN: plant
VERB: light
DET: a
ADJ: poal
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: magnificent
NOUN: lumierelondon
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
VERB: liked
NOUN: youtube
NOUN: video
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: king
NOUN: cross
NOUN: 5n_afzal
NOUN: projection
NOUN: voyages
VERB: liked
NOUN: pa
VERB: showing
NOUN: people
ADJ: past
ADJ: present
NOUN: future
VERB: walking
NOUN: history
NOUN: time
NOUN: southbanklondon
NOUN: miss
NOUN: chance
VERB: enjoy
ADJ: special
NOUN: offer
NOUN: oxo_tower
NUM: 3
NOUN: courses
NOUN: amp
NOUN: cocktail
NUM: 36
NOUN: find
NOUN: amp
VERB: discover
ADJ: great
NOUN: lumiere
VERB: offers
NOUN: gt
NOUN: brightnights
VERB: miss
NOUN: chance
VERB: enjoy
ADJ: special
NOUN: offer
NOUN: oxo_tower
NUM: 3
NOUN: courses
NOUN: amp
NOUN: cocktail
NUM: 36
NOUN: find
NOUN: amp
VERB: discover
ADJ: great
NOUN: lumiere
VERB: offers
NOUN: gt
NOUN: brightnights
NOUN: projection
VERB: known
NOUN: voyages
NOUN: history
NOUN: time
NOUN: picadilly
NOUN: circus
NOUN: something
ADJ: wonderful
NOUN: pa
NUM: 1
ADJ: faithful
NOUN: dreams
NOUN: tracey
NOUN: emin
NOUN: dreamer
NOUN: lighta
NOUN: neon
NOUN: traceyemin
NOUN: st
ADP: postcardslond1
NOUN: westminster
NOUN: abbey
NOUN: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: westminsterabbey
NOUN: architecture
NOUN: lighta
NOUN: kingsx
VERB: putting
ADJ: best
NOUN: show
ADV: imo
ADJ: faithful
NOUN: dreams
NOUN: tracey
NOUN: emin
NOUN: dreamer
NOUN: lighta
NOUN: neon
NOUN: traceyemin
NOUN: st
NOUN: fox
NOUN: leicester
ADJ: square
ADJ: lovely
NOUN: evening
VERB: spent
ADJ: london
NOUN: evening
PRT: lumiere
NOUN: london
NOUN: sundayfunday
NOUN: flamingos
NOUN: chinatown
NOUN: westminster
NOUN: abbey
NOUN: ajwoodcock
VERB: enjoyed
VERB: spending
NOUN: weekend
VERB: exploring
NOUN: lumierelondon2018
NOUN: lights
DET: publica
NOUN: westminster
NOUN: westminsterabby
NOUN: soho
NOUN: kingscross
NOUN: southbank
NOUN: lights
ADV: ever
VERB: changing
NOUN: colours
NOUN: sphere
VERB: represents
NOUN: eah
NUM: 2018
NOUN: apollovictoria
VERB: blending
NOUN: weekend
NOUN: wickeduk
NOUN: tour
VERB: defying
NOUN: gravity
ADP: since
NUM: 2006
ADJ: wicked
NOUN: trafalgar
ADJ: square
NOUN: piccadilly
NOUN: circus
NOUN: chinatown
NOUN: amp
NOUN: southbank
VERB: disappoint
NOUN: lights
NOUN: weekend
CONJ: either
NOUN: visitlondon
VERB: wandered
ADJ: round
NOUN: stuff
VERB: closed
NOUN: lots
VERB: felt
ADP: like
NOUN: scrums
DET: instagrammers
NOUN: westminster
NOUN: abbey
VERB: prettiest
ADV: also
VERB: liked
NOUN: st
ADJ: main
NOUN: fields
NOUN: ron
X: haselden
X: echelle
NOUN: neon
NOUN: ladder
VERB: reaching
NOUN: heaven
NOUN: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: westminsterabbey
NOUN: architecture
NOUN: lighta
ADJ: lovely
NOUN: time
VERB: seeing
ADJ: beautiful
NOUN: installations
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: kingscross
NOUN: light
NOUN: spirit
NOUN: patrice
NOUN: warrener
NOUN: westminsterabbey
NOUN: architecture
NOUN: lighta
ADJ: 5n_afzal
ADJ: spectral
NOUN: pa
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: aichoketrust
X: ace_national
X: visitlondon
X: bloombergdotorg
X: mayoroflondon
VERB: entered
NOUN: world
NOUN: light
NOUN: amp
NOUN: colours
NOUN: balance
NOUN: sphere
NOUN: history
NOUN: time
NOUN: lightbulbs
NOUN: carnaby
NOUN: st
NOUN: amp
NOUN: nature
NUM: 2018
NOUN: hat
NOUN: video
NOUN: selfie
NOUN: battersea
NOUN: power
NOUN: station
ADV: long
ADJ: enjoyable
NOUN: night
VERB: went
VERB: see
NOUN: installations
NOUN: evening
NOUN: wildlife
NOUN: leicester
VERB: square
ADJ: great
NOUN: visitlondon
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: brightnights
NOUN: gt
NOUN: lumierelondon
NOUN: igerslondon
NOUN: londonpop
NOUN: thisislondon
NOUN: london
NOUN: king
NOUN: cross
NOUN: station
ADJ: national
NOUN: hugging
NOUN: day
NOUN: fella
VERB: giving
NOUN: hugs
NOUN: leicester
ADJ: square
NOUN: lumiere
NOUN: festival
NOUN: ilovelondon
NOUN: nationalhuggingday2018
NOUN: westminster
NOUN: abbey
ADJ: different
ADJ: light
NOUN: visit
NOUN: website
VERB: see
NOUN: order
NOUN: prints
NOUN: lumierelondon
NOUN: facade
NOUN: landmark
NOUN: architecture
ADJ: iconic
NOUN: lumiere
NOUN: westminsterabbey
NOUN: colour
NOUN: timeout
X: streetphotog
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NUM: 2018
NOUN: hat
NOUN: details
VERB: lighting
ADJ: bleak
NOUN: january
NOUN: day
NUM: 2018
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: removed
NOUN: exception
NOUN: oxford
NOUN: street
PRT: btwn
ADJ: new
NOUN: bond
NOUN: st
NOUN: amp
ADJ: great
NOUN: poland
NOUN: st
NOUN: amp
NOUN: regent
NOUN: street
NOUN: btwn
NOUN: moimer
NOUN: st
NOUN: amp
ADJ: great
NOUN: marlborough
NOUN: st
VERB: scheduled
VERB: removed
ADP: 0500hrs
ADJ: 22nd
NOUN: january
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
ADJ: fantastic
NOUN: go
NOUN: see
NOUN: bloomsbury
NOUN: amp
X: fitzrovia
X: pas
NOUN: camden
NOUN: tonight
NOUN: snow
NOUN: amp
NOUN: rain
VERB: stopped
ADJ: cold
ADJ: fantastic
NOUN: amp
ADJ: great
NOUN: job
NOUN: mayoroflondon
VERB: promote
NOUN: city
ADJ: local
NOUN: residents
NOUN: londoners
ADV: widely
VERB: amp
NOUN: tourists
VERB: londonisopen
NOUN: bravo
NUM: 2018
ADJ: next
NOUN: year
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: illuminatedriv
NOUN: fish
NOUN: phone
NOUN: box
VERB: drew
NOUN: crowd
VERB: would
VERB: make
ADV: even
NOUN: mona
NOUN: lisa
ADJ: little
ADJ: green
NOUN: envy
X: lumiere
X: waterlicht
X: daan
X: roosegaarde
NOUN: london
NOUN: visit
NOUN: website
VERB: see
NOUN: order
NOUN: prints
NOUN: waterlicht
NOUN: lightinstallation
NOUN: landscape
NOUN: daanroosegaarde
NOUN: colour
NOUN: longexposure
NOUN: canon
NOUN: kingscross
NOUN: l
NOUN: 5n_afzal
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: moody
NOUN: installation
NOUN: london
NOUN: king
NOUN: cross
NOUN: station
NUM: 2018
NOUN: hat
VERB: details
ADJ: surprising
ADJ: favourite
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: london
NOUN: lumierelondon
NOUN: ldnlumiere
NOUN: illuminatedriv
NOUN: fish
NOUN: phone
NOUN: box
VERB: drew
NOUN: crowd
VERB: would
VERB: make
ADV: even
NOUN: mona
NOUN: lisa
ADJ: little
ADJ: green
NOUN: envy
NOUN: wonder
NOUN: legs
NOUN: ache
VERB: walked
NUM: 10
NOUN: miles
NOUN: evening
NOUN: thanks
VERB: tfltrafficnews
NOUN: road
NOUN: closures
VERB: removed
NOUN: exception
NOUN: oxford
NOUN: street
PRT: btwn
ADJ: new
NOUN: bond
NOUN: st
NOUN: amp
ADJ: great
NOUN: poland
NOUN: st
NOUN: amp
NOUN: regent
NOUN: street
NOUN: btwn
NOUN: moimer
NOUN: st
NOUN: amp
ADJ: great
NOUN: marlborough
NOUN: st
VERB: scheduled
VERB: removed
ADP: 0500hrs
ADJ: 22nd
NOUN: january
NOUN: grantchito
NUM: 2018
NOUN: moon
ADP: like
ADV: apiece
NOUN: oxford
NOUN: circus
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: brightnights
NOUN: gt
ADJ: sick
NOUN: photos
NOUN: instagram
ADV: soon
DET: installtions
ADV: really
ADJ: great
NOUN: event
VERB: forces
PRON: us
VERB: beat
ADV: januaryblues
VERB: walk
ADP: around
NOUN: london
NOUN: flamingo
NOUN: chinatown
NOUN: lovelondon
NOUN: aichoketrust
NOUN: china
NOUN: town
NOUN: london
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NUM: 2018
X: yeah
ADJ: customary
NOUN: selfie
NOUN: london
NOUN: transpo
NOUN: system
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: brightnights
NOUN: gt
NOUN: hare
NOUN: aichoketrust
NOUN: leicester
ADJ: square
NOUN: road
NOUN: closures
VERB: removed
NOUN: exception
NOUN: oxford
NOUN: street
PRT: btwn
ADJ: new
NOUN: bond
NOUN: st
NOUN: amp
ADJ: great
NOUN: poland
NOUN: st
NOUN: amp
NOUN: regent
NOUN: street
NOUN: btwn
NOUN: moimer
NOUN: st
NOUN: amp
ADJ: great
NOUN: marlborough
NOUN: st
VERB: scheduled
VERB: removed
ADP: 0500hrs
ADJ: 22nd
NOUN: january
NOUN: illuminatedriv
NOUN: fish
NOUN: phone
NOUN: box
VERB: drew
NOUN: crowd
VERB: would
VERB: make
ADV: even
NOUN: mona
NOUN: lisa
ADJ: little
ADJ: green
NOUN: envy
NOUN: leebrowne1971
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: visitlondon
NOUN: photos
NOUN: yesterdays
PRT: lumiere
NOUN: london
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
X: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: london
NOUN: foot
ADJ: magical
NOUN: installation
ADJ: danish
NOUN: aists
DET: veigo
VERB: wave
ADJ: spectacular
NOUN: structure
NOUN: foy
ADJ: triangular
ADJ: interactive
ADJ: glowing
NOUN: gates
VERB: respond
NOUN: movement
ADV: sonically
ADV: visually
VERB: enabling
NOUN: visitors
VERB: create
ADJ: aistic
NOUN: experience
NOUN: lovelondon
NOUN: fish
NOUN: phone
NOUN: box
VERB: drew
NOUN: crowd
VERB: would
VERB: make
ADV: even
NOUN: mona
NOUN: lisa
ADJ: little
ADJ: green
NOUN: envy
NOUN: 5n_afzal
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: sensational
NOUN: granarysquare
NOUN: chinatownlondon
NOUN: tonight
NOUN: night
ADV: already
VERB: brace
ADJ: cold
NOUN: visit
NOUN: chinatown
NOUN: london
ADP: beyond
NOUN: thesnowcantstopus
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: brisk
NOUN: excursion
ADP: around
ADJ: luscious
ADJ: luminous
NOUN: aichoketrust
NOUN: visitlondon
NOUN: mayoroflondon
ADV: also
ADJ: great
NOUN: traffic
ADJ: free
NOUN: streets
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: visited
ADJ: light
NOUN: festival
ADJ: spectacular
NOUN: highlight
ADP: westminsterabbey
NOUN: westminster
NOUN: abbey
NOUN: frogs
NOUN: aichoketrust
NOUN: robbingham
ADV: quite
ADJ: hard
NOUN: photograph
NOUN: fish
NOUN: phone
NOUN: box
ADV: absolutely
VERB: loved
NOUN: bits
NOUN: time
NOUN: today
NOUN: shame
NUM: 1
NOUN: weekend
X: trafalgarsquare
X: stjamespark
X: kingscross
X: westend
NOUN: aquarium
X: fishinaphonebox
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: 5n_afzal
NOUN: frogs
VERB: frolicking
NOUN: leicester
ADJ: square
NOUN: leicester
ADJ: square
NOUN: theatre
NOUN: hare
NOUN: leicester
ADV: square
DET: another
NOUN: year
ADJ: amazing
NOUN: evening
NOUN: rain
VERB: died
NOUN: thanks
ADV: aichoketrust
VERB: experiencing
NOUN: life
NOUN: borrower
NOUN: king
NOUN: cross
ADV: earlier
X: x
X: lumierelondon
X: lumierelondon2018
X: aichoketrust
X: visitlondon
X: mayoroflondon
VERB: look
ADJ: lovely
NOUN: chap
NOUN: leicester
ADJ: square
NOUN: theatre
NUM: 2018
NOUN: shop
VERB: caught
NOUN: eyes
VERB: dressed
NOUN: window
ADJ: perfect
NOUN: festival
NOUN: lights
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: highlights
NOUN: king
NOUN: cross
NOUN: poion
NOUN: lumierelondon
NOUN: lights
NOUN: week
VERB: wrote
NOUN: poem
VERB: inspired
NOUN: sroosegaarde
NOUN: installation
X: waterlicht
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
VERB: loved
X: illumaphonium
X: grosvenorsquare
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: trudyakelly
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: lumierelondon
NOUN: hare
NOUN: leicester
ADV: square
ADV: quite
ADJ: hard
NOUN: photograph
NOUN: fish
NOUN: phone
NOUN: box
NOUN: badger
NOUN: lumierelondon
NOUN: leicester
ADJ: square
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: evdjones
ADP: despite
NOUN: rain
VERB: jumped
NOUN: tube
VERB: see
DET: lumiere
NOUN: london
VERB: rained
NOUN: stop
NOUN: publica
NOUN: aichoketrust
ADJ: sadiqkhan
ADJ: final
NOUN: shift
NOUN: time
NOUN: mayfair
VERB: captured
NOUN: neon
NOUN: bikes
NOUN: reflection
NOUN: rain
ADV: also
VERB: met
ADV: aist
VERB: designed
NOUN: dot
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
NOUN: printer
VERB: runs
ADJ: coloured
NOUN: ink
DET: lumiere
NOUN: westminster
NOUN: london
NOUN: londonist
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: squirrel
NOUN: mouse
NOUN: aichoketrust
NOUN: leicester
ADJ: square
NOUN: lumiere
NOUN: aether
NOUN: kx10
NOUN: omg
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: openyoureyesldn
NOUN: show
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: visitlondon
VERB: rose
NOUN: westminster
NOUN: cathedral
ADV: earlier
X: x
X: lumierelondon
X: lumierelondon2018
X: lightfestival
X: visitlondon
X: aichoketrust
X: westminsterabbey
X: lumiere
X: lumierelondon
NOUN: westminster
NOUN: abbey
ADJ: great
NOUN: game
NOUN: pong
NOUN: tonight
ADP: couesy
ADJ: fabulous
ADJ: wonderful
NOUN: event
NOUN: lovelondon
NUM: 2018
ADJ: great
VERB: see
ADJ: permanent
NOUN: fixture
NOUN: carnaby
NOUN: fanton
NOUN: sts
ADJ: full
NOUN: gear
ADV: quite
ADV: pretty
ADJ: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
ADJ: delightful
NOUN: memories
NOUN: beans
NOUN: eve
NOUN: suchfun
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: grantchito
ADJ: fascinated
NOUN: hat
VERB: fitting
NOUN: woxxy
NOUN: today
ADJ: last
NOUN: minute
NOUN: decision
NOUN: check
NOUN: kingscross
NOUN: woh
ADV: really
VERB: wish
ADP: so
NOUN: installation
NOUN: year
ADV: round
ADJ: perfect
NOUN: way
NOUN: end
NOUN: ace
NOUN: weekend
VERB: talirowland
ADV: really
VERB: enjoyed
ADJ: stunning
ADJ: last
NOUN: night
ADJ: great
NOUN: share
NOUN: experience
NOUN: uoc_dance
ADJ: technical
NOUN: production
NOUN: students
PRT: grantchito
NUM: 2018
NOUN: regent
NOUN: street
NOUN: traffic
ADJ: free
ADJ: main
NOUN: awork
VERB: called
NOUN: frictions
NOUN: lumierelondon
NOUN: fox
NOUN: leicestersquare
NOUN: aichoketrust
NOUN: leicester
ADJ: square
NOUN: theladytravels
VERB: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
ADV: still
ADV: pretty
ADJ: rainy
ADJ: london
NOUN: puddles
ADP: like
NOUN: ponds
ADJ: accidental
NOUN: lumierelondon
NOUN: images
DET: lumiere
NOUN: london
NUM: 2018
X: lumierelondon2018
X: lumierelondon
X: woxxy
X: lumiere
X: lumierelondon
X: lumierelondon2018
X: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
X: physicalenergy
X: lumiere
X: lumierelondon
X: lumierelondon2018
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
NOUN: neon
NOUN: weekend
NOUN: winterlights
VERB: captured
ADJ: magic
X: mayfair
X: lumierelondon
X: lumiere
NOUN: london
X: mayfair
X: visitlondon
X: aichoketrust
X: timeoutlondon
X: camillachild
X: royalacademy
ADV: quite
ADJ: beautiful
ADJ: glad
VERB: went
VERB: come
NOUN: rain
NOUN: snow
NOUN: brain
NOUN: fog
NOUN: shine
VERB: made
NOUN: lumiere
VERB: attempting
ADJ: warm
NOUN: lumierelondon
NUM: 2018
NOUN: selfie
NOUN: aworks
NOUN: oxford
NOUN: circus
X: lumierelondon2018
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
X: newsdigest
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: piccadilly
NOUN: circus
NOUN: lumierelondon2018
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: fab
VERB: covered
NOUN: blog
NOUN: thanks
NOUN: aichoketrust
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
X: 英国
X: ロンドン
X: の
X: 赤い
X: 電話
X: ボックス
X: が
X: 水槽
X: に
X: 変身
X: 電話機
X: の
X: まわり
X: を
X: スイスイ
X: 泳ぐ
X: カラフル
X: な
X: 金魚
X: も
X: インパクト
X: 大
X: です
X: が
X: 今
X: では
X: ほとんど
X: 見向き
X: も
X: され
X: なくなっ
X: た
X: 電話
X: ボックス
X: に
X: 大勢
X: の
X: 人
X: が
X: 群がる
X: 様子
X: も
X: おもしろかっ
X: た
X: です
X: benedetto
X: bufalino
NOUN: benoit
NOUN: deseille
NOUN: aquarium
NOUN: today
ADJ: colourful
NOUN: lanterns
ADP: around
NOUN: leicester
ADJ: square
NOUN: lumierelondon2018
X: lumiere
DET: archdeaconluke
ADJ: wet
NOUN: evening
NOUN: lumierefestival
NOUN: churches
VERB: hosting
VERB: works
DET: a
ADV: stjpiccadilly
ADJ: many
NOUN: festival
NOUN: goers
VERB: joining
NOUN: taize
NOUN: prayer
NOUN: trudyakelly
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
NOUN: abirds
ADJ: delightful
X: si
X: vous
X: voulez
X: voir
X: quelques
X: vidéos
X: que
NOUN: j
NOUN: ai
VERB: prises
NOUN: du
NOUN: festival
X: lumière
X: à
X: londres
NOUN: c
NOUN: est
NOUN: par
NOUN: ici
NOUN: themayfairhotel
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
X: tmnikonian
X: redlionmayfair
X: westend
ADJ: final
NOUN: day
ADJ: spectacular
NOUN: amp
VERB: want
VERB: relax
ADV: away
NOUN: weather
NOUN: call
NOUN: london_pride
ADJ: open
NOUN: today
NOUN: 4pm
NOUN: end
NOUN: weekend
NOUN: style
NOUN: piccadilly
X: stjames
X: jermynstreet
NOUN: london
VERB: lit
ADJ: london
NOUN: mayor
NUM: one
ADJ: sad
NOUN: memory
ADJ: many
NOUN: people
VERB: sleeping
NOUN: streets
ADJ: fab
NOUN: time
NOUN: tonight
NUM: 2018
NOUN: carnaby
NOUN: street
ADV: really
NOUN: spirit
NOUN: festival
NOUN: lights
DET: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
ADJ: london
NOUN: visitlondon
ADJ: fabulous
NOUN: doublemacbex
ADJ: many
ADJ: awesome
NOUN: light
NOUN: installations
DET: kingscrossn1c
NOUN: year
NOUN: selfie
NOUN: london
NOUN: visitlondon
VERB: wrote
VERB: look
ADJ: german
ADJ: digital
NOUN: aist
NOUN: ulf
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: thefouhcraw
NOUN: granary
NOUN: square
NOUN: grantchito
NUM: 2018
NOUN: regent
NOUN: street
NOUN: traffic
ADJ: free
ADJ: main
NOUN: awork
VERB: called
ADJ: frictions
NOUN: king
NOUN: cross
VERB: looking
ADJ: lovely
NOUN: tonight
PRT: lumiere
NOUN: london
VERB: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
ADJ: wonderful
NOUN: evening
NUM: 2018
NOUN: regent
NOUN: street
NOUN: traffic
ADJ: free
ADJ: main
NOUN: awork
VERB: called
PRT: frictions
DET: another
ADJ: great
NOUN: night
NOUN: aichoketrust
VERB: got
ADP: around
DET: every
NOUN: installation
NUM: 2
NOUN: nights
NOUN: yesterday
NOUN: faves
ADV: 30slady
ADJ: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: aichoketrust
ADV: absolutely
ADJ: brilliant
VERB: brightened
ADJ: dreary
NOUN: jan
NOUN: thanks
VERB: made
VERB: happen
VERB: make
ADJ: annual
NOUN: thing
X: please
VERB: thank
NOUN: aichoketrust
VERB: curating
ADJ: fabulous
NOUN: event
NOUN: hope
ADV: back
ADJ: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
X: cheriecity
X: mesmerising
X: waterlicht
X: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: aichoketrust
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
VERB: lumiere
VERB: stop
VERB: lumiering
NOUN: westminster
NOUN: cathedral
NOUN: london
NUM: 2018
ADV: apiece
VERB: called
NOUN: frictions
NOUN: regent
NOUN: street
VERB: standing
NOUN: water
VERB: watching
NOUN: dot
NOUN: kx2
NOUN: tonight
ADJ: last
NOUN: time
NUM: 10
NOUN: 30pm
NOUN: seconds
VERB: ended
ADJ: good
NOUN: aichoketrust
NOUN: lumierelondon
NOUN: suzyhamilton
NOUN: weekend
VERB: wandering
ADV: around
ADJ: gorgeous
DET: a
NOUN: installations
DET: lumiere
NOUN: london
NOUN: fuzzworks_uk
NOUN: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
X: lumiere
X: rudie1750
X: lumierelondon2018
X: davehill
NOUN: snapshots
VERB: mrholly68
ADJ: cool
NOUN: night
ADJ: many
ADJ: brilliant
NOUN: ideas
NOUN: amp
NOUN: installations
VERB: flippin
ADJ: wet
ADP: tho
NOUN: thanks
NOUN: colleague
NOUN: andy
NOUN: popcornmedia_uk
NOUN: wrap
VERB: thank
VERB: coming
VERB: enjoying
PRON: us
ADJ: small
NOUN: charity
ADJ: big
NOUN: ideas
VERB: believe
DET: a
NOUN: transforms
VERB: lives
VERB: help
PRON: us
VERB: make
ADJ: next
NOUN: project
VERB: happen
VERB: donating
ADP: via
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
VERB: highlights
NOUN: weekend
NUM: 2018
NOUN: west
NOUN: girlbakes_
NOUN: aichoketrust
ADJ: fabulous
NOUN: time
VERB: checking
NOUN: lumiere2018
NOUN: happylondon
VERB: aichoketrust
DET: a
VERB: forcing
PRON: us
VERB: engage
ADJ: public
NOUN: space
NOUN: love
NOUN: picadilly
NOUN: circus
ADJ: harmonic
ADJ: poal
ADJ: favourite
NOUN: display
ADV: back
NOUN: st
NOUN: james
NOUN: piccadilly
ADJ: final
NOUN: meeting
NOUN: event
NOUN: liaison
NOUN: team
X: metpoliceevents
X: londonfire
X: tfl
X: paners
ADJ: great
NOUN: event
VERB: increased
NOUN: attendance
ADP: across
NOUN: city
ADV: well
VERB: done
VERB: involved
VERB: bringing
NOUN: event
NOUN: london
NUM: 2018
VERB: walking
NOUN: woman
PRT: carnaby
NOUN: street
VERB: called
NOUN: shaida
NOUN: ealking
NUM: 2015
NOUN: londongramer
NOUN: westminsterabbey
VERB: lit
ADV: wonderfully
VERB: captured
NOUN: jhinlondon
NOUN: thisislondon
NOUN: leakestarches
VERB: walk
NOUN: rainbow
NOUN: tunnel
VERB: see
NOUN: progress
VERB: made
NOUN: leakestreetarches
NOUN: development
VERB: davehill
NOUN: snapshots
ADJ: fantastic
NOUN: wave
ADJ: light
NOUN: display
NOUN: london
NOUN: south
NOUN: bank
NOUN: pa
NOUN: city
NOUN: stars
VERB: taken
NOUN: thursday
VERB: going
ADV: waterlicht
ADJ: glad
NOUN: sue
VERB: dragged
ADJ: full
NOUN: day
NOUN: smitf_london
NOUN: snapshots
VERB: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: edgillwhl
NOUN: southbank
NOUN: evening
NOUN: southbank
VERB: travel
DET: a
NOUN: neon
NOUN: lumierelondon
NUM: 2018
NOUN: awork
NOUN: regent
NOUN: street
VERB: called
NOUN: frictions
NUM: two
NOUN: nights
NUM: 50
NUM: 000
NOUN: steps
ADJ: fair
NOUN: amount
NOUN: rain
ADJ: incredible
DET: a
ADJ: around
NOUN: london
VERB: thank
NOUN: love
NOUN: london
NOUN: lumiere
NOUN: london
NOUN: lovelondon
NOUN: londonlife
NOUN: st
NOUN: james
VERB: lit
ADJ: fun
NOUN: eve
ADP: despite
NOUN: rain
VERB: looking
NOUN: garethsmith87
VERB: loved
NOUN: wasthatadream
ADV: quickly
ADV: back
VERB: took
VERB: shot
ADJ: awesome
NOUN: lumierelondon
NOUN: farewell
ADJ: fabulous
NOUN: event
ADV: even
NOUN: rain
NOUN: king
NOUN: cross
ADV: earlier
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
X: sadiqkhan
X: mayoroflondon
VERB: outshone
NOUN: year
NOUN: londonisopen
NOUN: highlights
VERB: londonlumiere
DET: another
NOUN: evening
VERB: wandering
ADP: around
NOUN: london
NOUN: lumierelondon
ADJ: justinesimons1
NOUN: pictures
VERB: loved
VERB: seeing
NOUN: years
PRT: lumiere
NOUN: light
NOUN: installations
ADP: around
NOUN: london
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: trudyakelly
X: wow
NOUN: moment
X: westminsterabbey
X: ceainly
X: trudyakelly
VERB: loved
VERB: getting
NOUN: crowds
VERB: perform
NOUN: installation
ADJ: clever
NOUN: umbrellas
ADV: jaimelondonboy
VERB: made
ADJ: floral
NOUN: field
NOUN: lumierelondon
NOUN: theladytravels
VERB: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
NUM: 2018
ADV: apiece
NOUN: oxford
NOUN: circus
ADJ: close
NOUN: ballooning
ADJ: marvellous
NOUN: trafalgar
NOUN: sqaure
X: x
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: aichoketrust
X: a
X: streeta
X: lightfestival
VERB: going
NOUN: ride
PRT: lumiere
NOUN: london
NOUN: hampsteadcoach
ADJ: wet
ADJ: cold
NOUN: tonight
ADJ: yummy
NOUN: dinner
VERB: cooked
ADV: instead
ADP: cottagepie
NOUN: colcannon
ADV: instead
VERB: foodporn
NOUN: foodie
NOUN: domesticgoddess
VERB: made
ADJ: floral
NOUN: field
NOUN: lumierelondon
NOUN: westminster
NOUN: abbey
NOUN: london
NOUN: lumiere
VERB: loved
VERB: getting
NOUN: crowds
VERB: perform
NOUN: installation
ADJ: clever
NOUN: umbrellas
VERB: let
ADJ: light
NOUN: lumiere
NOUN: king
VERB: cross
ADV: ok
ADV: pretty
ADJ: impressive
NOUN: westminster
NOUN: abbey
VERB: looking
ADP: like
NOUN: something
NOUN: disney
NOUN: film
NOUN: nofilterneeded
NOUN: lovelondon
ADJ: last
NOUN: shift
NOUN: team
NOUN: facltd
NOUN: treatment
NOUN: unit
NOUN: alpha1
VERB: standing
ADV: approximately
NUM: 2300
NOUN: kingscross
NOUN: granarysquare
NOUN: firstaid
NOUN: firstaidcover
NOUN: nurse
NOUN: nursecommunity
NOUN: lumiere
NOUN: lumierelondon
ADJ: great
NOUN: time
NOUN: tonight
NOUN: aichoketrust
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: lumiere
NOUN: poal
NUM: 3
VERB: confirmed
ADJ: harmonic
X: poal
X: lumiere
X: lumierelondon
X: lumiere2018
ADJ: first
NOUN: installation
ADV: truly
ADJ: magical
NOUN: set
NOUN: scene
VERB: come
X: kingscross
X: jackiemcnerney
ADJ: favourite
NOUN: installation
NOUN: today
NOUN: cycling
VERB: keep
VERB: lit
ADJ: fun
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: ryanprince_91
VERB: manages
VERB: get
NOUN: couple
NOUN: pics
VERB: lights
NOUN: london
VERB: looking
ADV: pretty
ADJ: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: enjoyed
VERB: wandering
ADV: paicularly
ADJ: giant
NOUN: chill
NOUN: zone
NOUN: trafalgar
NOUN: sq
VERB: suspended
ADJ: arabelladorman
NOUN: st
NOUN: james
ADP: whilst
VERB: wandering
ADP: around
NOUN: kingscross
NOUN: installations
VERB: found
NOUN: gasworks
NOUN: longexposures
VERB: got
ADJ: interesting
NOUN: find
NOUN: phone
NOUN: box
ADJ: full
NOUN: fish
NOUN: lumiere
NOUN: lumierelondon
NOUN: london
ADV: teamldn
ADJ: magical
ADV: even
ADJ: innovative
NOUN: use
VERB: light
DET: a
NOUN: architecture
VERB: volunteers
ADJ: wonderful
ADV: ever
ADJ: cheerful
ADJ: enthusiastic
NOUN: thanks
ADJ: lovely
NOUN: night
VERB: wandering
ADP: around
NOUN: london
VERB: looking
ADV: pretty
VERB: lights
NOUN: rain
VERB: stopped
ADJ: perfect
NOUN: trudyakelly
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
NOUN: nohern
NOUN: lights
NOUN: pa
NOUN: exhibition
VERB: took
NOUN: place
NOUN: london
ADJ: last
NUM: four
NOUN: days
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
X: wow
NOUN: moment
NOUN: westminsterabbey
NOUN: ceainly
NOUN: southbanklondon
ADV: else
VERB: amp
VERB: enjoying
NOUN: check
NOUN: bough1
NOUN: simon
NOUN: corder
VERB: bargehouse
ADJ: south
NOUN: bank
PRT: brightnights
NOUN: pics
ADJ: talented
NOUN: robwdawkins
ADJ: favourite
NOUN: installation
NOUN: today
NOUN: cycling
VERB: keep
VERB: lit
NOUN: fun
VERB: loved
NOUN: visitlondon
NOUN: festival
ADV: south
NOUN: bank
NOUN: eve
ADJ: glad
VERB: caught
ADJ: least
NOUN: couple
NOUN: installations
VERB: ends
NOUN: tonight
PRT: officialprendie
ADJ: best
NOUN: thing
DET: mistajam
ADV: danceanthems
ADV: best
ADJ: audio
NOUN: guide
VERB: going
ADV: ajwoodcock
VERB: enjoyed
VERB: spending
NOUN: weekend
VERB: exploring
NOUN: lumierelondon2018
NOUN: lights
DET: publica
NOUN: westminster
NOUN: westminsterabby
NOUN: soho
NOUN: kingscross
NOUN: southbank
NOUN: lights
ADV: abirds
ADJ: delightful
NOUN: legacy
VERB: lives
NOUN: selection
ADJ: permanent
NOUN: works
ADP: across
NOUN: london
NOUN: visitlondon
NOUN: pa
NOUN: gift
NOUN: roads
VERB: handed
NOUN: crowds
VERB: picadillycircus
ADP: without
NOUN: buses
NOUN: cars
ADJ: magical
ADJ: best
NOUN: thing
DET: mistajam
ADV: danceanthems
ADV: best
ADJ: audio
NOUN: guide
VERB: going
ADV: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
VERB: ends
ADJ: mesmerising
NOUN: installation
NOUN: lovemotion
NOUN: royalacademy
ADP: as
ADV: already
VERB: looking
ADV: forward
ADJ: next
NOUN: year
NOUN: edition
ADJ: delightful
NOUN: london
NOUN: lumiere
VERB: took
ADJ: pretty
NOUN: picture
NOUN: westminster
NOUN: abbey
VERB: lit
VERB: looking
ADJ: magical
NOUN: installation
ADV: still
VERB: took
NOUN: park
ADV: even
NOUN: cheese
VERB: wants
NOUN: pa
NOUN: fun
NUM: 2018
NOUN: moon
ADP: like
ADV: apiece
NOUN: oxford
NOUN: circus
VERB: enjoyed
NOUN: spending
NOUN: weekend
VERB: exploring
NOUN: lumierelondon2018
NOUN: lights
DET: publica
NOUN: westminster
NOUN: westminsterabby
NOUN: soho
NOUN: kingscross
NOUN: southbank
NOUN: lights
VERB: thefouhcraw
NOUN: granary
NOUN: square
VERB: leaping
NOUN: charlie
X: lumiere
X: lumierelondon
X: leicestersquare
NOUN: london
NOUN: leicester
ADJ: square
NOUN: pa
VERB: finding
ADJ: new
NOUN: places
NOUN: london
VERB: photographing
NOUN: things
ADJ: different
NOUN: angles
ADJ: first
NOUN: glance
VERB: looked
ADP: like
NOUN: sphere
NOUN: lumiere
NOUN: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
NOUN: laughter
NOUN: southmoltonstreet
NOUN: musical
VERB: see
NOUN: saws
VERB: loving
NOUN: lumierelondon
NOUN: grosvenor_ldn
VERB: zacdenman
DET: another
ADJ: fantastic
NOUN: installation
NOUN: lumiere
NUM: 2018
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: sessions
VERB: filming
X: videoproduction
X: zacvideo
X: studiosession
X: londontown
NOUN: videographer
NOUN: videography
NOUN: musicvideo
NOUN: zacdenman
NOUN: lumiere
NUM: 2018
NOUN: aichoketrust
NOUN: kingscrossn1c
ADJ: last
NOUN: chance
VERB: explore
ADV: lumiere
NOUN: tonight
NUM: 50
ADJ: incredible
NOUN: light
NOUN: installations
VERB: shining
NUM: 22
NUM: 30
VERB: forget
NOUN: use
NOUN: chance
NOUN: feature
NOUN: gallery
X: aichoketrust
X: visitlondon
X: via
X: c0nvey
X: exitmagazine
X: maxcoopermax
NOUN: fish
NOUN: phone
NOUN: box
DET: a
NOUN: check
NOUN: hashtag
ADJ: much
NOUN: beauty
NOUN: aichoketrust
NOUN: lumiere
NOUN: lumierelondon
NOUN: lumiere2018
NUM: 2018
NOUN: piece
NOUN: oxfordcircus
NOUN: favourite
NOUN: selfie
ADJ: creative
NOUN: selfie
NOUN: hatmanoflondon
NOUN: wave
NOUN: pa
NOUN: lighting
NOUN: southbank
NUM: one
ADJ: last
NOUN: time
NOUN: tonight
NOUN: london
NOUN: ldn_culture
ADP: despite
NOUN: rain
ADV: still
ADJ: great
VERB: see
ADJ: many
NOUN: people
VERB: enjoying
ADJ: last
NOUN: night
NOUN: kings
VERB: cross
NOUN: piccadilly
NOUN: victoria
NOUN: chinatownlondon
NOUN: tonight
NOUN: night
ADV: already
VERB: brace
ADJ: cold
NOUN: visit
NOUN: chinatown
NOUN: london
ADP: beyond
ADJ: thesnowcantstopus
NOUN: londoners
VERB: pedalling
NOUN: lights
ADV: cyclingpower
ADJ: citycyclers
ADJ: second
NOUN: night
NOUN: time
NOUN: kingscross
NOUN: heres
NOUN: images
VERB: link
NOUN: facebook
NOUN: album
NOUN: smithyshere
ADJ: dazzling
ADJ: multicoloured
NOUN: doorways
VERB: bring
ADJ: sculpted
NOUN: saints
ADJ: vivid
NOUN: life
X: wabbey
X: lumierelondon2018
X: visitlondon
X: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
ADJ: new
NOUN: instagram
NOUN: image
NOUN: lights
VERB: cool
ADJ: south
NOUN: bank
NOUN: london
NOUN: lumierelondon
NOUN: london
NOUN: westminsterabbey
NOUN: reflection
NOUN: lumiere
NOUN: lumierelondon
NOUN: thisislondon
NOUN: westminster
NOUN: abbey
VERB: took
ADJ: close
NUM: 400
NOUN: photos
NOUN: yesterday
ADP: so
NOUN: duds
NOUN: goods
VERB: joinin247
ADJ: iconic
NOUN: west
NOUN: front
NOUN: westminsterabbey
VERB: looked
ADJ: incredible
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: evening
NOUN: visitbritain
NOUN: thinkingcity
NOUN: addition
ADJ: fun
NOUN: amp
ADJ: sensory
NOUN: delight
VERB: brings
NOUN: city
NOUN: streets
ADJ: central
NOUN: roads
VERB: pedestrianised
ADJ: joyful
NOUN: experience
ADJ: psychedelic
NOUN: world
NOUN: oxfordcircus
VERB: blows
NOUN: mind
X: lumierelondon
X: tfl
X: lumiere
X: lumierelondon
X: lumiere2018
VERB: inspiring
NOUN: lumierelondon
ADV: londonlumiere2018
ADJ: south
NOUN: bank
NOUN: london
VERB: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
VERB: jakubkrupa
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
VERB: alisonparcell
ADV: well
ADP: woh
VERB: braving
NOUN: rain
PRT: lumiere
NOUN: london
NOUN: evening
NOUN: lumierelondon2018
ADJ: thefouhcraw
NOUN: granary
NOUN: square
VERB: brightening
ADJ: drizzly
NOUN: sunday
NOUN: evening
NOUN: westminsterabbey
NOUN: edgillwhl
NOUN: southbank
NOUN: evening
NOUN: southbank
VERB: travel
DET: a
NOUN: neon
NOUN: lumierelondon
NUM: 2018
X: yeah
ADV: really
ADJ: huge
NOUN: changes
NOUN: colours
NOUN: amp
NOUN: designs
ADV: quickly
ADJ: beautiful
NOUN: ldn_culture
ADP: despite
NOUN: rain
ADV: still
ADJ: great
VERB: see
ADJ: many
NOUN: people
VERB: enjoying
ADJ: last
NOUN: night
NOUN: kings
VERB: cross
NOUN: piccadilly
NOUN: victoria
ADV: absolutely
ADJ: stunning
ADJ: light
NOUN: display
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
VERB: loads
NOUN: people
VERB: taking
NOUN: pictures
ADP: despite
NOUN: 10pm
NOUN: sunday
NOUN: mayoroflondon
NOUN: jubileeline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: jubilee
NOUN: line
NOUN: baker
NOUN: street
NOUN: waterloo
ADJ: busy
VERB: find
ADJ: glad
VERB: caught
X: lumiere
X: southbank
X: southbanklondon
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: fishes
ADP: inside
ADJ: red
NOUN: telephone
NOUN: box
ADJ: cool
NOUN: lumierelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: smithyshere
ADJ: dazzling
ADJ: multicoloured
NOUN: doorways
VERB: bring
ADJ: sculpted
NOUN: saints
ADJ: vivid
NOUN: life
X: wabbey
X: lumierelondon2018
X: visitlondon
X: aichoketrust
VERB: make
VERB: seeing
NOUN: city
ADJ: new
NOUN: light
NUM: one
NOUN: hour
VERB: go
NUM: 2018
NOUN: visitlondon
NOUN: dontmissout
NOUN: aichoketrust
VERB: make
VERB: seeing
NOUN: city
ADJ: new
NOUN: light
NUM: one
NOUN: hour
VERB: go
NUM: 2018
NOUN: visitlondon
NOUN: dontmissout
NOUN: ive
VERB: walked
NUM: 20km
VERB: done
NOUN: handful
NOUN: installations
ADV: pretty
ADV: clarateddy
VERB: thank
NOUN: aaron
PRT: aichoketrust
ADJ: fabulous
NOUN: insight
NOUN: tonight
NOUN: mastercarduk
ADV: truly
ADJ: priceless
NOUN: view
ADV: trafalgarsw1
ADJ: spectacular
ADP: despite
NOUN: rain
ADV: still
ADJ: great
VERB: see
ADJ: many
NOUN: people
VERB: enjoying
ADJ: last
NOUN: night
NOUN: kings
VERB: cross
NOUN: piccadilly
NOUN: victoria
NOUN: amsharif
VERB: enjoying
ADJ: great
NOUN: installations
DET: amsharif
VERB: enjoying
ADJ: great
NOUN: installations
ADV: alisonparcell
ADV: well
ADP: woh
VERB: braving
NOUN: rain
PRT: lumiere
NOUN: london
NOUN: evening
NOUN: lumierelondon2018
ADV: alisonparcell
ADV: well
ADP: woh
VERB: braving
NOUN: rain
PRT: lumiere
NOUN: london
NOUN: evening
X: lumierelondon2018
X: quocatron
X: lumiere
X: lumierelondon
X: lumiere2018
X: southbank
NOUN: evening
NOUN: southbank
VERB: travel
DET: a
NOUN: neon
NOUN: lumierelondon
VERB: shed
ADJ: light
NOUN: nightlights
VERB: granary
ADJ: square
NOUN: source
NOUN: point
NOUN: dataweb
NOUN: granary
NOUN: square
NOUN: davechapman
NOUN: xtophe_williams
VERB: treat
NOUN: rain
VERB: stopped
NOUN: london
NOUN: thisislondon
NOUN: londonatnight
NOUN: londonlife
NOUN: leicester
ADJ: square
NOUN: lumiere
NOUN: lumierelondon
NOUN: london
ADP: westminsterabbey
NOUN: westminster
NOUN: abbey
X: lumiere
X: lumierelondon
X: lumiere2018
X: simondstanley
ADJ: beautiful
NOUN: walk
NOUN: station
NOUN: tonight
VERB: enjoying
NOUN: aworks
VERB: hosted
NOUN: wabbey
NOUN: rcwestminster
ADP: along
NOUN: victoria
NOUN: st
NOUN: buildings
ADJ: glorious
NOUN: ryanprince_91
VERB: manages
VERB: get
NOUN: couple
NOUN: pics
VERB: lights
NOUN: london
VERB: looking
ADV: pretty
ADV: alisonparcell
ADV: well
ADP: woh
VERB: braving
NOUN: rain
PRT: lumiere
NOUN: london
NOUN: evening
NOUN: lumierelondon2018
NOUN: amsharif
VERB: enjoying
ADJ: great
NOUN: installations
NOUN: x
NOUN: mayoroflondon
NUM: 2018
NOUN: oxford
NOUN: circus
ADJ: huge
NOUN: globe
VERB: hanging
NOUN: middle
VERB: called
ADJ: orgin
NOUN: world
NOUN: bubble
NOUN: visitlondon
NOUN: mayoroflondon
ADV: piccadily
ADJ: alive
VERB: enjoying
ADJ: great
NOUN: installations
VERB: spent
NOUN: today
VERB: leading
NOUN: people
VERB: play
NOUN: board
NOUN: game
NOUN: 1500s
NOUN: amp
NOUN: walk
NOUN: home
VERB: stumbled
ADJ: light
NOUN: sound
NOUN: installation
VERB: agree
NOUN: london
ADJ: phenomenal
NOUN: place
ADV: live
ADP: whilst
NOUN: may
NOUN: issues
ADP: unlike
ADV: anywhere
ADV: else
ADV: well
ADP: woh
VERB: braving
NOUN: rain
PRT: lumiere
NOUN: london
NOUN: evening
NOUN: lumierelondon2018
VERB: repost
X: browns_hotel
X: get_repost
X: lumiere
NOUN: london
ADV: back
X: lumiere
X: brownshotel
X: smithyshere
VERB: dazzling
ADJ: multicoloured
NOUN: doorways
VERB: bring
ADJ: sculpted
NOUN: saints
ADJ: vivid
NOUN: life
NOUN: wabbey
NOUN: lumierelondon2018
NOUN: visitlondon
VERB: make
VERB: seeing
NOUN: city
ADJ: new
NOUN: light
NUM: one
NOUN: hour
VERB: go
NUM: 2018
NOUN: visitlondon
NOUN: dontmissout
NOUN: folks
VERB: lighting
NOUN: centre
NUM: one
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
VERB: remain
NOUN: place
PRT: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: shaftesbury
NOUN: ave
NOUN: fi
ADJ: pedal
NOUN: power
VERB: brings
ADJ: floral
ADJ: light
ADJ: beautiful
NOUN: bloom
NOUN: westminstercath
NOUN: lumierelondon2018
NOUN: visitlondon
VERB: keep
VERB: swimming
X: sevendials
X: coventgarden
X: outsidework
X: greypointe
X: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
NOUN: greypointe
NOUN: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
NOUN: julie_guldahl
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: tonight
NOUN: everyone
VERB: come
VERB: say
X: hello
NUM: 22
NUM: 30
NOUN: piccadillycircus
NOUN: stjamespiccadilly
NOUN: chinatown
NOUN: oxfordcircus
NOUN: julie_guldahl
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: tonight
NOUN: everyone
VERB: come
VERB: say
X: hello
NUM: 22
NUM: 30
NOUN: piccadillycircus
NOUN: stjamespiccadilly
NOUN: chinatown
NOUN: oxfordcircus
NOUN: aichoketrust
NUM: one
NOUN: hour
NUM: twenty
PRT: go
VERB: explore
X: fitzrovia
X: dontmissout
X: aichoketrust
NUM: one
NOUN: hour
NUM: twenty
PRT: go
VERB: explore
X: fitzrovia
X: dontmissout
X: egondesign
VERB: damp
ADJ: fun
NOUN: evening
NOUN: kingscross
NOUN: egondesign
VERB: damp
ADJ: fun
NOUN: evening
NOUN: kingscross
NOUN: hannah_m_crowdy
ADP: woh
VERB: braving
ADJ: cold
ADV: slightly
ADJ: damp
NOUN: conditions
ADJ: bright
ADJ: joyful
NOUN: lights
DET: hannah_m_crowdy
VERB: woh
VERB: braving
ADJ: cold
ADV: slightly
ADJ: damp
NOUN: conditions
ADJ: bright
ADJ: joyful
NOUN: lights
VERB: looking
ADV: forward
NOUN: rain
VERB: defeated
PRON: us
VERB: stayed
ADV: home
VERB: googled
NOUN: quokkas
ADV: instead
DET: curns
NOUN: flamingo
ADJ: flyaway
NOUN: chinatown
NOUN: pa
NOUN: festival
NOUN: london
X: chinatownldn
X: festivaloflights
X: curns
NOUN: flamingo
ADJ: flyaway
NOUN: chinatown
NOUN: pa
NOUN: festival
NOUN: london
X: chinatownldn
X: festivaloflights
X: 2nickjones
NOUN: music
VERB: light
ADJ: fantastic
X: mayfair
X: grosvenor_ldn
X: grosvenor_gbi
X: 2nickjones
NOUN: music
VERB: light
ADJ: fantastic
NOUN: mayfair
NOUN: grosvenor_ldn
NOUN: grosvenor_gbi
ADJ: dazzling
ADJ: multicoloured
NOUN: doorways
VERB: bring
ADJ: sculpted
NOUN: saints
ADJ: vivid
NOUN: life
X: wabbey
X: lumierelondon2018
X: visitlondon
X: southbank
NOUN: evening
NOUN: london
NOUN: travel
NOUN: southbank
NOUN: lumierelondon
NOUN: neon
VERB: made
ADJ: aquarium
ADJ: total
NOUN: madness
NOUN: lumierelondon
VERB: get
ADJ: involved
NOUN: magic
DET: a
ADJ: incredible
NOUN: lumierelondon
ADJ: many
NOUN: rainbow
NOUN: shades
VERB: wabbey
VERB: turning
ADJ: ancient
NOUN: stone
VERB: dazzling
ADJ: light
NOUN: thanks
NOUN: lumierelondon2018
NOUN: visitlondon
NUM: 2018
NOUN: fonum
NOUN: mason
NOUN: window
NOUN: display
ADJ: beautiful
NOUN: lumiere
NOUN: festival
ADJ: amazing
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: visitlondon
NOUN: jonchanuk
ADP: around
NOUN: goodge
NOUN: street
NOUN: fouh
NOUN: picture
ADJ: interactive
NOUN: ping
NOUN: pong
NOUN: side
ADP: imaginationuk
VERB: building
ADJ: amazing
NOUN: lumiere
NOUN: experience
NOUN: king
NOUN: cross
NOUN: london
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
ADJ: many
ADV: stunningly
ADJ: creative
NOUN: lumiere
NOUN: light
NOUN: displays
NOUN: installations
VERB: seen
ADP: around
NOUN: london
NOUN: weekend
ADJ: incredible
ADJ: visual
NOUN: feast
X: lumiere
X: flamingoflyaway
X: aichoketrust
X: mayoroflondon
X: wabbey
X: lanterncompany
ADJ: great
NOUN: physics
NOUN: glory
NOUN: nohern
NOUN: lights
VERB: come
X: kingscross
X: couesy
X: nofilterneeded
X: aichoketrust
NUM: one
NOUN: hour
NUM: twenty
NOUN: go
NOUN: explore
NOUN: fitzrovia
NOUN: dontmissout
NUM: 2018
NOUN: fonum
NOUN: masons
NOUN: window
VERB: displays
ADJ: fabulous
NOUN: store
NOUN: spirit
NOUN: festival
NOUN: lights
ADV: grosvenor_ldn
ADJ: last
NOUN: chance
VERB: enjoy
NOUN: tonight
NOUN: mayfair
ADJ: cool
NOUN: night
ADJ: many
ADJ: brilliant
NOUN: ideas
NOUN: amp
NOUN: installations
VERB: flippin
ADJ: wet
ADP: tho
NOUN: thanks
NOUN: colleague
NOUN: andy
X: popcornmedia_uk
X: lumiere
X: lumierelondon
X: lumiere2018
NOUN: photos
PRON: lumiere
VERB: lumiere
ADJ: london
ADJ: light
NOUN: lights
VERB: display
NOUN: january
NUM: 2018
ADJ: last
NOUN: night
VERB: lumiere
ADV: around
ADJ: goodge
NOUN: street
NOUN: fouh
NOUN: picture
ADJ: interactive
NOUN: ping
NOUN: pong
NOUN: side
NOUN: imaginationuk
NOUN: building
VERB: disappointed
VERB: get
VERB: see
ADJ: 2nickjones
NOUN: music
VERB: light
ADJ: fantastic
X: mayfair
X: grosvenor_ldn
X: grosvenor_gbi
X: curns
NOUN: flamingo
ADJ: flyaway
NOUN: chinatown
NOUN: pa
NOUN: festival
NOUN: london
NOUN: chinatownldn
ADJ: festivaloflights
ADJ: heavy
NOUN: rainfall
NOUN: today
VERB: led
NOUN: sea
NOUN: level
VERB: rising
NOUN: king
NOUN: cross
NOUN: waterlicht
ADJ: underwater
NUM: 2018
NOUN: fonum
NOUN: amp
NOUN: masons
NOUN: window
VERB: displays
ADJ: beautiful
ADJ: different
ADJ: luminous
NOUN: tea
NOUN: pots
VERB: standing
ADJ: tall
ADJ: leake
NOUN: street
NOUN: arches
ADV: right
ADJ: last
NOUN: night
NOUN: nigelblakephoto
NOUN: lumixuk
NOUN: g9
NOUN: hannah_m_crowdy
ADP: woh
VERB: braving
ADJ: cold
ADV: slightly
ADJ: damp
NOUN: conditions
ADJ: bright
ADJ: joyful
NOUN: lights
PRT: egondesign
VERB: damp
ADJ: fun
NOUN: evening
NOUN: kingscross
NUM: one
NUM: one
VERB: alternating
ADJ: green
NOUN: man
VERB: walking
ADJ: red
NOUN: man
VERB: standing
ADV: still
ADJ: best
NOUN: saw
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
X: egondesign
ADJ: fantastic
NOUN: light
NOUN: installations
DET: kingscross
NUM: one
NOUN: hour
NUM: twenty
NOUN: go
NOUN: explore
NOUN: fitzrovia
NOUN: dontmissout
NOUN: westminster
NOUN: abbey
VERB: needs
ADJ: light
ADJ: main
ADJ: subject
NOUN: methinks
NOUN: london
NOUN: london
VERB: united
NOUN: kingdom
NOUN: flamingo
ADJ: flyaway
NOUN: chinatown
NOUN: pa
NOUN: festival
NOUN: london
NOUN: chinatownldn
NOUN: festivaloflights
NOUN: music
VERB: light
ADJ: fantastic
X: mayfair
X: grosvenor_ldn
X: grosvenor_gbi
X: greypointe
X: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
ADJ: fantastic
NOUN: light
NOUN: installations
DET: kingscross
VERB: pleased
VERB: made
PRT: back
ADJ: london
NOUN: evening
NOUN: time
VERB: see
ADJ: dazzling
ADJ: nocturnal
DET: a
NOUN: exhibition
NOUN: londonlumiere
NUM: 2018
NOUN: westminsterabbey
VERB: looking
ADV: paicularly
ADJ: resplendent
ADJ: dazzling
NOUN: lights
DET: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: damp
ADJ: fun
NOUN: evening
NOUN: kingscross
NOUN: benkind
ADJ: fantastic
NOUN: displays
NOUN: year
ADV: lumierelondon
ADJ: back
NOUN: town
VERB: check
NOUN: video
NOUN: amp
VERB: enjoy
NOUN: lights
X: jayonlife
X: visitlondon
X: julie_guldahl
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: tonight
NOUN: everyone
VERB: come
VERB: say
X: hello
NUM: 22
NUM: 30
NOUN: piccadillycircus
NOUN: stjamespiccadilly
NOUN: chinatown
NOUN: oxfordcircus
ADP: woh
VERB: braving
ADJ: cold
ADV: slightly
ADJ: damp
NOUN: conditions
ADJ: bright
ADJ: joyful
NOUN: lights
ADJ: last
NOUN: night
NOUN: lumierelondon
NOUN: tonight
NOUN: everyone
VERB: come
VERB: say
X: hello
NUM: 22
NUM: 30
NOUN: piccadillycircus
NOUN: stjamespiccadilly
NOUN: chinatown
NOUN: oxfordcircus
NOUN: westhandyside
NOUN: canopy
NOUN: laugh
VERB: required
ADJ: great
NOUN: evening
NOUN: london
NOUN: gevbaker
VERB: watching
ADV: absolutely
ADJ: hilarious
NOUN: mischiefmovienight
NOUN: amp
VERB: seeing
NOUN: way
VERB: loving
NUM: 2018
NOUN: hatmanoflondon
NOUN: hat
VERB: fits
ADV: perfectly
VERB: piece
NOUN: love
NOUN: motion
ADJ: tiny
NOUN: violin
NOUN: centrepiece
ADJ: royal
NOUN: academy
NOUN: couyard
NOUN: nazia_kassam
VERB: love
ADJ: productive
NOUN: weekend
NOUN: everrr
NOUN: 38000steps
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: badger
NOUN: badger
NOUN: badger
NOUN: badger
NOUN: mushroom
NOUN: snaaaake
NOUN: london
NOUN: piccadilly
NOUN: circus
NOUN: ballet
NOUN: rambe
NOUN: projection
NOUN: foot
NOUN: greypointe
NOUN: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
NOUN: lightexhibition
NOUN: london2018
VERB: ainstallation
PRT: alight
VERB: alighting
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: remain
NOUN: situ
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
ADJ: shaftesbury
NOUN: avenue
NOUN: xtophe_williams
VERB: treat
NOUN: rain
VERB: stopped
NOUN: cubitt
NOUN: park
NOUN: kings
VERB: cross
ADJ: early
NOUN: thursday
NOUN: evening
ADJ: amazing
NOUN: installation
NOUN: lumierelondon
NOUN: oxford
NOUN: circus
NOUN: lumierelondon2018
NOUN: london
NOUN: aquarium
NOUN: lumierelondon2018
NOUN: sevendials
NOUN: covent
NOUN: garden
NOUN: london
NOUN: lumierelondon
VERB: gave
NOUN: x
NOUN: ray
NOUN: vision
NOUN: thefools
VERB: talirowland
ADV: really
VERB: enjoyed
ADJ: stunning
ADJ: last
NOUN: night
ADJ: great
NOUN: share
NOUN: experience
NOUN: uoc_dance
ADJ: technical
NOUN: production
NOUN: students
PRT: grosvenor_ldn
ADJ: last
NOUN: chance
VERB: enjoy
NOUN: tonight
NOUN: mayfair
NOUN: lumeire
NOUN: candy
NOUN: floss
NOUN: candyfloss
NOUN: london
NOUN: lumierelondon
ADJ: light
ADJ: sparkling
NOUN: walk
NOUN: rainbow
NOUN: tunnel
VERB: see
NOUN: progress
VERB: made
NOUN: leakestreetarches
NOUN: development
NOUN: cosmoscope
ADJ: sleety
NOUN: rain
VERB: making
PRON: us
VERB: question
NOUN: point
NOUN: existence
NOUN: cosmoscope
NOUN: sculpture
X: lovelyweather
X: lightexhibition
X: london2018
X: ainstallation
PRT: alight
VERB: alighting
NOUN: janecandose4
VERB: loved
ADJ: last
NOUN: night
NOUN: kingscross
NOUN: area
NOUN: familyfun
NOUN: gosee
NOUN: themayfairhotel
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
NOUN: tmnikonian
NOUN: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
ADJ: first
ADJ: full
NOUN: day
NOUN: london
VERB: got
NOUN: attend
NOUN: church
NOUN: services
NOUN: westminster
NOUN: abbey
NOUN: minster
VERB: preached
NOUN: miracle
ADP: without
NOUN: homes
DET: lookatgod
CONJ: plus
ADJ: last
NOUN: chance
VERB: enjoy
NOUN: tonight
NOUN: mayfair
ADV: absolutely
VERB: loved
DET: lumiere
ADJ: london
NOUN: week
NOUN: thanks
NOUN: mayoroflondon
NOUN: aichoketrust
NOUN: aists
VERB: hope
ADJ: next
NOUN: year
NOUN: visitlondon
NOUN: timeoutlondon
ADV: londonisopen
ADJ: nice
NOUN: projections
NOUN: time
NOUN: royalacademy
NOUN: piano
VERB: beats
NOUN: lum
NOUN: oxford
NOUN: street
NOUN: comfo
NOUN: food
NUM: 18
NUM: 38
NUM: 21
NOUN: january
NUM: 2018
ADJ: great
NOUN: intentions
NOUN: check
NOUN: installations
NOUN: tonight
VERB: getting
ADJ: soaked
NOUN: roaming
NOUN: streets
NOUN: afternoon
NUM: one
NOUN: thing
VERB: comfo
NOUN: food
NOUN: cocktails
NOUN: aichoketrust
VERB: coming
NUM: 2018
NOUN: plan
NOUN: visit
NUM: 50
NOUN: aworks
NUM: 4
NOUN: nights
NUM: 6
NOUN: destinations
VERB: visitlondon
ADV: absolutely
ADJ: marvellous
NOUN: time
VERB: seeing
ADJ: many
ADJ: light
NOUN: installations
X: lumierelondon
X: visitlondon
X: thelondoneye
X: kingscrossn1c
X: wabbey
X: jayonlife
X: travelbloggers
X: lovelondon
X: visitlondon
NOUN: things
NOUN: people
DET: a
ADJ: tiny
NOUN: people
VERB: stuck
NOUN: jars
PRT: lumiere
NOUN: clarateddy
VERB: thank
NOUN: aaron
PRT: aichoketrust
ADJ: fabulous
NOUN: insight
NOUN: tonight
NOUN: mastercarduk
ADV: truly
ADJ: priceless
NOUN: view
NOUN: trafalgarsw1
ADJ: spectacular
NOUN: rover
NOUN: oxford
NOUN: circus
NOUN: tube
NOUN: station
NOUN: clarateddy
VERB: thank
NOUN: aaron
PRT: aichoketrust
ADJ: fabulous
NOUN: insight
NOUN: tonight
NOUN: mastercarduk
ADV: truly
ADJ: priceless
NOUN: view
NOUN: trafalgarsw1
ADJ: spectacular
NOUN: xtophe_williams
VERB: treat
NOUN: rain
VERB: stopped
VERB: making
NOUN: work
NOUN: light
VERB: rose
NOUN: mickfusion
VERB: get
VERB: pedalling
VERB: see
ADV: awork
VERB: illuminated
NOUN: glory
NOUN: electricpedals
NOUN: victoriabid
NOUN: glamazonlondon
ADJ: lucky
NOUN: events
ADP: like
DET: lumiere
NOUN: doorstep
ADJ: lovely
NOUN: mooch
NOUN: mate
NOUN: date
NOUN: friday
NOUN: night
NUM: 2018
NOUN: love
NOUN: motion
ADJ: royal
NOUN: academy
NOUN: couyard
NOUN: clarateddy
VERB: thank
NOUN: aaron
PRT: aichoketrust
ADJ: fabulous
NOUN: insight
NOUN: tonight
NOUN: mastercarduk
ADV: truly
ADJ: priceless
NOUN: view
ADV: trafalgarsw1
ADJ: spectacular
NOUN: treat
NOUN: rain
VERB: stopped
VERB: thank
NOUN: aaron
PRT: aichoketrust
ADJ: fabulous
NOUN: insight
NOUN: tonight
NOUN: mastercarduk
ADV: truly
ADJ: priceless
NOUN: view
ADV: trafalgarsw1
ADJ: spectacular
ADJ: sound
NOUN: design
NOUN: projection
NOUN: mapping
VERB: warping
NOUN: mind
NOUN: bit
NUM: one
NOUN: fish
NOUN: kind
NOUN: swim
NOUN: bladder
NOUN: infection
VERB: tell
ADJ: sick
ADV: upsidedown
VERB: may
ADV: also
VERB: make
NOUN: fish
ADJ: sick
NOUN: fish
NOUN: check
NOUN: phone
NOUN: box
NOUN: check
PRT: lumiere
NOUN: reflections
NOUN: kingscross
NOUN: lumierelondon
ADJ: light
NOUN: lighting
NOUN: colour
NOUN: london
PRT: lumiere
ADJ: light
NOUN: spirit
NOUN: nofilter
NOUN: shotonpixel2
ADJ: menswearstyle
ADJ: stunning
NOUN: streets
NOUN: 7dialslondon
NOUN: shopping
NOUN: guide
VERB: coming
ADV: soon
NUM: 2018
NOUN: hatmanoflondon
ADV: apiece
VERB: called
NOUN: love
NOUN: motion
NOUN: royal
NOUN: academy
ADP: as
X: couyard
X: reflectors
X: lewiscubbitsquare
X: kingscross
X: lumierelondon
ADJ: light
NOUN: lighting
NOUN: colour
NOUN: shaftesburyplc
VERB: spotted
NOUN: 7dialslondon
ADJ: iconic
ADJ: red
NOUN: telephone
NOUN: box
VERB: turned
NOUN: aquarium
NOUN: pa
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: london
NOUN: lumiere
NOUN: lumierelondon2018
NOUN: lasers
VERB: lights
DET: a
NOUN: sculpture
NOUN: exhibition
NOUN: people
ADJ: busy
NOUN: video
NOUN: cityshots
NOUN: snapshoot
NOUN: lightfestival
NOUN: lovelondon
ADJ: random
NOUN: pigeontalks
ADJ: funny
NOUN: prevalence
VERB: light
DET: a
NOUN: festivals
ADP: like
NOUN: week
VERB: must
ADV: surely
ADJ: free
NOUN: public
DET: a
VERB: measured
NOUN: instagram
NOUN: posts
NOUN: tix
VERB: coming
NOUN: greenwich
NOUN: tomodo
NOUN: london
X: lumiere
X: waterlicht
X: granarysquare
X: kingscross
X: lumierelondon
VERB: lighting
ADJ: light
NOUN: boomerang
NOUN: maxcoopermax
ADJ: last
NOUN: chance
NOUN: experience
NOUN: aether
NOUN: tonight
VERB: enjoy
NOUN: lights
NOUN: darkness
NOUN: visitlondon
NOUN: london
NOUN: london
NOUN: lumiere
VERB: alifestylerebel
ADV: well
ADV: never
VERB: chance
NOUN: visit
NOUN: highlight
ADV: best
ADJ: light
NOUN: festival
VERB: taking
NOUN: london
NOUN: lumierelondon
NOUN: youtube
NOUN: bloggersblast
NOUN: photographer
X: visitlondon
X: victoriabid
X: createvictoria
X: aichoketrust
X: teamldn
ADJ: magical
ADV: even
ADJ: innovative
NOUN: use
VERB: light
DET: a
NOUN: architecture
VERB: volunteers
ADJ: wonderful
ADV: ever
ADJ: cheerful
ADJ: enthusiastic
NOUN: thanks
ADV: well
ADV: never
VERB: chance
NOUN: visit
NOUN: highlight
ADV: best
ADJ: light
NOUN: festival
VERB: taking
NOUN: london
NOUN: lumierelondon
NOUN: youtube
NOUN: bloggersblast
NOUN: photographer
NOUN: visitlondon
NOUN: victoriabid
NOUN: createvictoria
NOUN: aichoketrust
ADJ: amazing
NOUN: lumierelondon2018
NOUN: waterlicht
NOUN: dan
NOUN: roosegaarde
NOUN: kings
VERB: cross
NOUN: london
ADJ: magical
ADV: even
ADJ: innovative
NOUN: use
VERB: light
DET: a
NOUN: architecture
VERB: volunteers
ADJ: wonderful
ADV: ever
ADJ: cheerful
ADJ: enthusiastic
NOUN: thanks
ADJ: new
NOUN: instagram
NOUN: image
ADJ: big
NOUN: pong
NOUN: lumierelondon2018
NOUN: waterlicht
NOUN: dan
NOUN: roosegaarde
NOUN: kings
VERB: cross
ADJ: london
NOUN: rainbow
NOUN: colours
NOUN: lumiere_london
NOUN: king
ADJ: cross
NOUN: neon
NOUN: lights
DET: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: reed_claire
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: spectacular
ADJ: last
NOUN: night
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NUM: 2018
NOUN: love
NOUN: motion
ADJ: royal
NOUN: academy
ADP: as
NOUN: couyard
NOUN: maxcoopermax
ADJ: last
NOUN: chance
NOUN: experience
NOUN: aether
NOUN: tonight
VERB: enjoy
NOUN: lights
NOUN: darkness
VERB: discovering
ADJ: dazzling
ADJ: london
NOUN: lights
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: pa
VERB: loved
NOUN: gasholders
VERB: preserved
NOUN: kings
VERB: cross
NOUN: goodnight
NOUN: mayfair
NOUN: nohern
NOUN: lights
VERB: grosvenor
ADJ: square
X: lumiere
X: mayfair
X: johansford
X: johansfordsalon
DET: another
ADJ: fantastic
NOUN: installation
NOUN: lumiere
NUM: 2018
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: sessions
VERB: filming
X: videoproduction
X: zacvideo
X: studiosession
X: londontown
NOUN: videographer
NOUN: videography
NOUN: musicvideo
NOUN: zacdenman
NOUN: davidburgessfr
ADJ: lovely
NOUN: evening
VERB: exploring
NOUN: aichoketrust
NOUN: tonight
ADJ: wonderful
NOUN: atmosphere
NOUN: hundreds
NOUN: people
NOUN: ages
VERB: light
VERB: seeking
NOUN: streets
NOUN: london
NUM: one
NOUN: person
VERB: complaining
NOUN: rain
ADJ: lovely
NOUN: evening
VERB: exploring
NOUN: aichoketrust
NOUN: tonight
ADJ: wonderful
NOUN: atmosphere
NOUN: hundreds
NOUN: people
NOUN: ages
VERB: light
VERB: seeking
NOUN: streets
NOUN: london
NUM: one
NOUN: person
VERB: complaining
NOUN: rain
NOUN: visitlondon
NUM: 2018
ADJ: light
NOUN: installation
NOUN: sculpture
VERB: called
DET: yhe
NOUN: plug
NOUN: bulbs
NOUN: ganton
NOUN: st
NOUN: carnaby
NOUN: st
NOUN: nofilter
NOUN: ihealondon
NOUN: wabbey
NOUN: julesjules77
ADJ: amazing
NOUN: sights
ADP: despite
NOUN: rain
NOUN: embobskie
ADJ: lovely
NOUN: granary
NOUN: square
NOUN: lovelondon
NOUN: upperground
NOUN: lumiere
NOUN: kings
VERB: cross
ADJ: lumiere
NOUN: aquarium
NOUN: benedetto
NOUN: bufalino
NOUN: amp
NOUN: benoit
NOUN: deseille
NOUN: photo
NOUN: julian
NOUN: crowe
NOUN: crowe_photo
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
X: lighta
X: streetphotography
X: streetphoto
X: nightphotography
X: londonlumiere
X: lumierelondon
X: lumierelondon2018
X: lumiere
NOUN: london
NOUN: oxfordstreet
ADJ: pretty
NOUN: westminster
NOUN: abbey
VERB: lit
DET: lumiere
NOUN: london
NOUN: lumierelondon
NOUN: timeoutlondon
NOUN: grabber
PRT: lumiere
NOUN: kings
VERB: cross
NOUN: lumiere
NOUN: wave
NOUN: lumierelondon2018
ADJ: last
NOUN: night
NOUN: visitlondon
NOUN: girlbakes_
NOUN: aichoketrust
ADJ: fabulous
NOUN: time
VERB: checking
NOUN: lumiere2018
NOUN: happylondon
NOUN: guardian
NOUN: angels
PRT: lumiere
NOUN: kings
VERB: cross
ADJ: lumiere
NOUN: guardian
NOUN: angels
PRT: lumiere
NOUN: kings
VERB: cross
ADJ: lumiere
NOUN: guardian
NOUN: angels
PRT: lumiere
NOUN: kings
VERB: cross
NOUN: lumiere
NOUN: umusicuk
ADJ: last
NOUN: chance
VERB: see
VERB: switched
NUM: 10
NUM: 30pm
NUM: four
NOUN: pancras
ADJ: square
ADJ: last
NOUN: chance
VERB: see
VERB: switched
NUM: 10
NUM: 30pm
NUM: four
NOUN: pancras
ADJ: square
NOUN: lanterncompany
VERB: brightens
NOUN: spirits
ADJ: long
ADJ: dark
NOUN: winter
NOUN: months
PRT: aistic
NOUN: director
NOUN: jo
VERB: pocock
VERB: quoted
X: aicle
X: lumiere
NOUN: festival
ADJ: fantastic
ADJ: darkest
NOUN: time
NOUN: year
ADJ: great
NOUN: way
VERB: bringing
NOUN: visitors
NOUN: city
NOUN: bottle
NOUN: festoon
PRT: lumiere
NOUN: kings
VERB: cross
DET: lumiere
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: photo
NOUN: julian
NOUN: crowe
NOUN: crowe_photo
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
X: lighta
X: streetphotography
X: streetphoto
X: nightphotography
X: londonlumiere
X: lumierelondon
X: lumierelondon2018
NOUN: freedom
NOUN: fish
ADV: far
ADJ: best
NOUN: exhibit
NOUN: night
X: lol
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
VERB: visitlondon
ADV: well
VERB: explains
ADJ: weird
NOUN: prank
NOUN: calls
NOUN: lights
VERB: lead
ADJ: dark
NOUN: tonight
VERB: provided
X: lumierelondon
X: waterlicht
X: lumiere
NOUN: kings
VERB: cross
ADV: lumiere
ADV: aichoketrust
ADJ: fabulous
NOUN: time
VERB: checking
NOUN: lumiere2018
NOUN: happylondon
VERB: feeling
ADJ: active
VERB: get
ADJ: interactive
NUM: 22
NUM: 30
NOUN: waterlicht
PRT: lumiere
NOUN: kings
VERB: cross
NOUN: lumiere
VERB: saw
ADJ: amazing
VERB: illuminated
NOUN: installations
ADJ: london
ADJ: west
NOUN: end
NOUN: weekend
VERB: continues
NUM: 10
NOUN: 30pm
NOUN: tonight
ADV: still
VERB: got
NOUN: time
VERB: see
X: priorconstruct
X: lumiere
NOUN: london
NOUN: westminster
NOUN: abbey
VERB: aichoketrust
VERB: explored
ADJ: south
NOUN: bank
NOUN: amp
NOUN: waterloo
ADV: yet
NOUN: lots
VERB: see
NUM: 17
NUM: 30
NOUN: evening
NOUN: cantwait
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: remain
NOUN: situ
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
ADJ: shaftesbury
NOUN: avenue
NOUN: waterlicht
NOUN: lumiere
NOUN: kings
VERB: cross
X: lumiere
X: nickeardleybbc
VERB: loving
NOUN: week
ADJ: incredible
NOUN: light
NOUN: installations
ADP: around
NOUN: city
NOUN: waterlicht
NOUN: lumiere
NOUN: kings
VERB: cross
NOUN: lumiere
NOUN: mr_simms_hx
VERB: get
ADJ: fun
NOUN: lumiere
NOUN: london
NUM: 2018
ADJ: last
NOUN: night
NOUN: londonlumiere
NOUN: london
NOUN: lumierelondon2018
VERB: lights
ADJ: fun
X: westminsterabbey
X: vivadentist
X: pinkparachute1
X: abbeycraft23
X: bestsellers_sx
X: freereinfamily
X: suttonarmshorn
X: thatpetplaceuk
X: daz600
X: moroccanrose_
X: discovergather
X: leakestarches
ADJ: incredible
NUM: four
NOUN: days
NOUN: tonight
ADJ: last
NOUN: oppounity
VERB: see
NOUN: triptych
NOUN: aist
NOUN: imakefings
NOUN: leakestreet
NOUN: miss
NOUN: miss
VERB: walked
NOUN: streets
NOUN: london
ADJ: last
NOUN: night
VERB: see
NUM: one
NOUN: faves
ADV: kinda
ADJ: spooky
ADJ: london
ADJ: workaday
NOUN: illuminations
VERB: prove
ADJ: interesting
NOUN: lumierelondon
NOUN: waterlicht
ADJ: abstract
NOUN: lumiere
NOUN: kings
VERB: cross
X: lumiere
X: woh
NOUN: rain
ADJ: amazing
NOUN: cycle
ADJ: powered
NOUN: illumination
NOUN: westminstercath
NOUN: nickeardleybbc
ADJ: weird
ADJ: london
NOUN: stuff
NUM: 94533
NOUN: fish
NOUN: telephone
NOUN: box
NOUN: butterfly
NOUN: fly
ADV: away
X: weekendplans
X: leicestersquare
X: instalights
X: instalife
X: aichoketrust
ADJ: full
NOUN: swing
VERB: wrap
ADJ: warm
NOUN: head
ADV: outdoors
VERB: explore
ADJ: dazzling
NOUN: lights
ADJ: open
ADP: till
NUM: 22
NUM: 30
NOUN: evening
ADJ: cold
ADJ: wet
ADV: definitely
X: woh
X: lumierelondon
X: westminsterabbey
VERB: dot
ADJ: lumiere
NOUN: kings
VERB: cross
DET: lumiere
NOUN: dot
PRT: lumiere
NOUN: kings
VERB: cross
DET: lumiere
NUM: 2018
NOUN: umbrella
NOUN: project
NOUN: performance
NOUN: piccadilly
ADJ: beautiful
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
VERB: refuel
NOUN: nandosuk
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: lampounette
X: lumiere
NOUN: kings
VERB: cross
NOUN: lumiere
NOUN: aichoketrust
NUM: 3
NOUN: day
NOUN: tour
VERB: ends
NOUN: w
NOUN: thamespulse
NOUN: seacontainers
NOUN: mondrianhotel
X: jasonbruges
X: jbruges
ADJ: biggest
NOUN: datavisualisation
NOUN: w
NUM: 5000
X: sqm
X: brynskov
X: mabiennale
X: fassade
VERB: flashing
ADJ: blue
NOUN: light
NOUN: ie
NOUN: river
NOUN: quality
VERB: improving
ADJ: cold
ADJ: bright
NOUN: lumierelondon
NOUN: londonsmallyt
NOUN: youtubers
VERB: working
NOUN: vlog
NOUN: editing
ADV: sure
ADJ: lumierelondon2018
NOUN: thanks
X: rachelmshannon
X: lampounette
X: lumiere
NOUN: kings
VERB: cross
X: lumiere
X: reed_claire
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: spectacular
ADJ: last
NOUN: night
NOUN: meleey_xo
ADJ: last
NOUN: day
NOUN: today
ADV: much
ADJ: fun
NOUN: lumierelondon
NOUN: road
NOUN: closures
VERB: remain
NOUN: situ
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
ADJ: shaftesbury
NOUN: avenue
NOUN: lampounette
NOUN: lumiere
NOUN: kings
VERB: cross
X: lumiere
X: lumiere
NOUN: london
VERB: lit
DET: lumiere
ADJ: london
ADJ: spectral
ADV: powerfully
ADJ: poetic
NOUN: installation
ADJ: natural
VERB: constructed
NOUN: elements
VERB: combine
NOUN: st
NOUN: james
ADJ: square
NOUN: thecrownestate
VERB: created
NOUN: polish
NOUN: duo
NOUN: katarzyna
NOUN: malejka
NOUN: joachim
NOUN: slugocki
NUM: 2018
NOUN: plug
NOUN: bulbs
DET: ganton
NOUN: street
NUM: one
ADJ: permanent
NOUN: works
VERB: included
NOUN: festival
ADJ: wild
NOUN: beauty
NOUN: leicester
ADJ: square
NOUN: gardens
NOUN: pa
NOUN: nightlife
NOUN: thelanterncompany
ADJ: brilliant
NOUN: aichoketrust
ADJ: bablu121
NOUN: people
VERB: force
NOUN: yesterday
NOUN: night
ADJ: central
ADJ: london
NOUN: sight
NOUN: props
NOUN: aichoketrust
NOUN: visitlondon
ADJ: impressive
NOUN: work
VERB: putting
NOUN: year
NOUN: event
PRON: us
VERB: enjoy
X: trappedinzoneone
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
PRT: lumiere
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: favourite
NOUN: installation
NOUN: freea
NOUN: publica
NOUN: hampsteadcoach
ADJ: wet
ADJ: cold
NOUN: tonight
ADJ: yummy
NOUN: dinner
VERB: cooked
ADV: instead
ADP: cottagepie
NOUN: colcannon
ADV: instead
VERB: foodporn
NOUN: foodie
NOUN: domesticgoddess
VERB: identified
VERB: flying
NOUN: object
PRT: lumiere
NOUN: kings
VERB: cross
DET: lumiere
VERB: manages
VERB: get
NOUN: couple
NOUN: pics
VERB: lights
NOUN: london
VERB: looking
ADV: pretty
ADJ: wet
ADJ: cold
NOUN: tonight
ADJ: yummy
NOUN: dinner
VERB: cooked
ADV: instead
ADP: cottagepie
NOUN: colcannon
ADV: instead
VERB: foodporn
NOUN: foodie
NOUN: domesticgoddess
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: embobskie
ADJ: lovely
NOUN: granary
NOUN: square
NOUN: lovelondon
NOUN: grantchito
NUM: 2018
NOUN: umbrella
NOUN: project
NOUN: regent
NOUN: st
NOUN: london
NOUN: england
NOUN: photography
NOUN: iphonese
NOUN: thisislondon
NOUN: iphonephotography
NOUN: amateurphotography
NOUN: lights
NOUN: colour
ADJ: last
NOUN: day
NOUN: today
ADJ: much
NOUN: fun
ADP: lumierelondon
NUM: 2018
NOUN: umbrella
NOUN: project
NOUN: regent
NOUN: st
NOUN: westminster
NOUN: abbey
NOUN: shabby
ADV: edgillwhl
ADJ: fantastic
NOUN: westminsterabbey
NOUN: london
ADV: aichoketrust
ADJ: impressive
NOUN: westminster
NOUN: abbey
ADJ: gorgeous
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: kulbinderm
VERB: enjoyed
VERB: wandering
PRT: around
NOUN: installations
NOUN: yesterday
NOUN: evening
VERB: seen
NOUN: festival
NOUN: hurry
VERB: ends
NOUN: evening
ADV: well
ADP: woh
VERB: checking
NOUN: visitlondon
NOUN: bealocaltourist
ADJ: fantastic
NOUN: westminsterabbey
NOUN: london
NOUN: aichoketrust
NOUN: trafalgarsquare
NOUN: tonight
NOUN: sound
NOUN: amp
NOUN: light
NOUN: lumierefestival
NOUN: smitf_london
ADJ: harmonic
NOUN: poal
ADJ: hypnotic
NOUN: lumierelondon
NOUN: timeoutlondon
ADV: london_only
ADJ: lovely
NOUN: granary
NOUN: square
NOUN: lovelondon
ADV: surely
VERB: tour
NOUN: uk
VERB: imagine
ADJ: elaborate
NOUN: project
NUM: 3
NOUN: day
NOUN: life
NOUN: anyone
ADJ: lovely
NOUN: time
NOUN: taste
NOUN: rainbow
NOUN: king
VERB: cross
NUM: 2018
ADV: apiece
VERB: called
NOUN: voyage
NOUN: piccadilly
NOUN: circus
NOUN: narrative
ADJ: fascinating
NOUN: heawarming
ADP: like
ADJ: xmas
NOUN: lights
ADJ: classy
DET: a
ADJ: sorry
NOUN: wish
VERB: would
VERB: put
NOUN: money
ADP: towards
ADJ: better
ADJ: cheesy
ADJ: xmas
NOUN: lights
NOUN: december
ADV: also
NOUN: road
NOUN: closures
NOUN: buses
VERB: pouring
NOUN: rain
ADJ: irritating
NOUN: make
NOUN: note
VERB: stay
ADV: home
ADJ: next
NOUN: yr
NOUN: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
ADJ: light
NOUN: spirit
NOUN: westminsterabbey
NOUN: lumierelondon
ADJ: light
NOUN: festival
VERB: checking
NOUN: ltda
NOUN: lumiere
NOUN: piccadilly
NOUN: burlington
NOUN: house
NOUN: rank
ADJ: last
NOUN: night
NOUN: festival
NOUN: light
ADV: extremely
ADV: well
NOUN: volumes
VERB: work
ADV: last
NUM: 3
NOUN: nights
ADV: well
ADJ: suppoed
NOUN: look
NOUN: updates
X: theltda
X: tonyqpr123
X: lumierelondon
X: lumiere
ADJ: awesome
NOUN: granary
NOUN: square
NOUN: maxcoopermax
ADJ: last
NOUN: chance
NOUN: experience
NOUN: aether
NOUN: tonight
VERB: enjoy
NOUN: lights
NOUN: darkness
NOUN: light
NOUN: light
NOUN: lumiere
NOUN: london
NOUN: lumierelondon
NOUN: timeoutlondon
NOUN: lightfestival
NOUN: glamazonlondon
ADJ: lucky
NOUN: events
ADP: like
DET: lumiere
NOUN: doorstep
ADJ: lovely
NOUN: mooch
NOUN: mate
NOUN: date
NOUN: friday
NOUN: night
VERB: julesjules77
ADJ: amazing
NOUN: sights
ADP: despite
NOUN: rain
NOUN: exitmagazine
NOUN: maxcoopermax
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADJ: new
NOUN: instagram
NOUN: image
VERB: watering
NOUN: cans
X: kingscross
X: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
X: hey
NOUN: hal
VERB: winterlights
ADJ: great
NOUN: balls
VERB: fire
X: lumiere
X: lumierelondon
X: oxfordstreet
NOUN: london
NOUN: oxford
NOUN: street
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: amazing
NOUN: sights
ADP: despite
NOUN: rain
NOUN: someone
ADJ: high
ADV: obviously
VERB: heard
NOUN: likes
ADV: finally
VERB: stopped
VERB: raining
NOUN: head
VERB: get
NOUN: business
ADJ: lucky
NOUN: events
ADP: like
DET: lumiere
NOUN: doorstep
ADJ: lovely
NOUN: mooch
NOUN: mate
NOUN: date
NOUN: friday
NOUN: night
NOUN: lumiere
NOUN: kingscross
NOUN: london
NOUN: kings
VERB: cross
NOUN: londonviewpts
NOUN: tonight
NOUN: tomorrow
ADJ: last
NOUN: chance
VERB: watch
ADJ: new
NOUN: video
VERB: see
NOUN: christiana72
VERB: going
VERB: walk
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
ADJ: last
NOUN: night
NOUN: bond
NOUN: street
ADJ: london
ADJ: underground
NOUN: station
NOUN: tfltravelales
NOUN: london
ADJ: greater
NOUN: london
NOUN: projectservator
NOUN: oxford
NOUN: circus
NOUN: regents
NOUN: street
NOUN: spot
ADJ: plain
NOUN: clothes
NOUN: officers
NOUN: evening
NOUN: oxfordstreetw1
NOUN: regentstreetw1
NOUN: citywestminster
NOUN: festival
NOUN: actioncountersterrorism
NOUN: teamworktomakethedreamwork
NOUN: revdsimonharvey
VERB: enjoyed
NOUN: kings
VERB: cross
ADJ: last
NOUN: night
NOUN: hours
VERB: left
VERB: enjoy
NOUN: sights
PRT: lumiere
NOUN: london
VERB: check
ADJ: handy
NOUN: guide
NOUN: amp
NOUN: share
NOUN: pics
PRON: us
VERB: using
NOUN: amp
NOUN: brightnights
NOUN: twitter
NOUN: amp
NOUN: instagram
NOUN: gt
ADP: round
NOUN: applause
NOUN: lumierelondon
VERB: putting
ADJ: light
NOUN: display
ADV: next
ADJ: brightest
NOUN: billboard
NOUN: planet
PRT: eah
ADJ: light
NOUN: display
VERB: left
ADJ: dark
NOUN: bit
NOUN: leicester
ADJ: square
NOUN: bduchesne1
NOUN: weekend
NOUN: festival
NOUN: lights
VERB: saw
ADJ: spectacular
NOUN: installations
ADJ: many
NOUN: pas
ADJ: great
NOUN: city
VERB: included
NOUN: canadian
NOUN: aists
VERB: thank
ADP: londonisopen
VERB: making
ADJ: accessible
NOUN: nickede
VERB: wait
VERB: go
X: aichoketrust
X: lumierelondon2018
X: visitlondon
X: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: youtube
NOUN: london
NOUN: light
NOUN: festival
NOUN: exitmagazine
NOUN: maxcoopermax
VERB: daveyjay1
ADV: pretty
ADJ: amazing
NOUN: lovecamden
NOUN: today
ADJ: last
NOUN: day
ADJ: sad
VERB: see
NOUN: go
NOUN: pop
NOUN: today
NOUN: fill
NOUN: light
DET: a
VERB: passing
NOUN: kings
VERB: cross
NOUN: check
ADJ: amazing
NOUN: sculptures
ADP: across
NOUN: city
NOUN: aichoketrust
NOUN: trafalgar
ADJ: square
NOUN: stairway
NOUN: heaven
NOUN: loki_lego
NOUN: lumierelondon
NOUN: trafalgar
ADJ: square
NOUN: leicester
ADJ: square
X: lumiere
X: lumiere
NOUN: london
NOUN: suzystories
VERB: wish
VERB: could
NOUN: year
ADP: round
ADJ: everyday
NOUN: light
NOUN: show
VERB: take
NOUN: look
NOUN: rbehotels
ADV: monmouthkitchen
ADJ: light
NOUN: show
X: sevendials
X: lumierelondon
X: ianbeetlestone
X: westminsterabbey
X: exitmagazine
X: maxcoopermax
X: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: lumierefestival
NOUN: jacob
NOUN: ladder
NOUN: spire
NOUN: smitf_london
NOUN: christiana72
VERB: going
VERB: walk
NOUN: trafalgar
ADJ: square
NOUN: weekend
NOUN: festival
NOUN: lights
VERB: saw
ADJ: spectacular
NOUN: installations
ADJ: many
NOUN: pas
ADJ: great
NOUN: city
VERB: included
NOUN: canadian
NOUN: aists
VERB: thank
ADP: londonisopen
VERB: making
ADJ: accessible
ADJ: wet
NOUN: evening
NOUN: lumierefestival
NOUN: churches
VERB: hosting
VERB: works
DET: a
ADV: stjpiccadilly
ADJ: many
NOUN: festival
NOUN: goers
VERB: joining
NOUN: taize
NOUN: prayer
ADJ: dear
NOUN: visitlondon
NOUN: amp
NOUN: mayoroflondon
NOUN: staing
NOUN: tomorrow
VERB: going
NOUN: head
NOUN: offices
NUM: 4
ADJ: consecutive
NOUN: days
VERB: sit
ADJ: fucking
NOUN: desks
VERB: holding
NOUN: torch
NOUN: faces
VERB: name
DET: a
NOUN: see
VERB: inconvenienced
NOUN: leicester
ADJ: square
NOUN: lumierelondon2018
ADJ: last
NOUN: chance
NOUN: experience
NOUN: aether
NOUN: tonight
VERB: enjoy
NOUN: lights
NOUN: darkness
VERB: come
VERB: get
ADJ: warm
NOUN: seeing
NOUN: festival
ADJ: great
NOUN: selection
NOUN: craft
NOUN: beer
NOUN: food
NOUN: tickle
NOUN: tastebuds
VERB: going
VERB: walk
NUM: 2018
ADV: apiece
VERB: called
NOUN: voyage
NOUN: piccadilly
NOUN: circus
VERB: giving
ADJ: free
ADJ: hot
NOUN: chocolate
NOUN: carnaby
NOUN: street
VERB: enjoy
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
X: maxcoopermax
VERB: meant
VERB: go
ADV: lumierelondon
VERB: napped
ADJ: rainy
NOUN: sofa
NOUN: pal
NOUN: mpsprinces
NOUN: team
VERB: keeping
NOUN: princes
ADJ: safe
PRON: us
VERB: patrolling
NOUN: camillachild
NOUN: london
VERB: treated
NOUN: weekend
ADJ: beautiful
NOUN: dancing
NOUN: couple
NUM: one
NOUN: favourites
PRT: royalacademy
ADJ: last
NOUN: night
NOUN: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
VERB: snaps
ADJ: right
NOUN: divas
NOUN: flamingos
VERB: want
NOUN: humans
VERB: carry
NOUN: lumierelondon
NOUN: chinatown
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: lights
DET: lumiere
NOUN: london
NOUN: trafalgarsquare
VERB: balloons
NOUN: childhood
X: bhawnasaini_yml
ADJ: harmonic
NOUN: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
VERB: visitlondon
NOUN: london
X: lumierelondon
X: londonblogger
X: wintersinlondon
X: nightfestival
VERB: seen
ADJ: wonderful
NOUN: displays
NOUN: weekend
VERB: may
VERB: want
VERB: find
NOUN: world
ADJ: light
NOUN: colour
ADJ: latest
NOUN: pinterest
NOUN: board
NOUN: selection
NOUN: books
VERB: help
NOUN: wave
NOUN: pa
NOUN: exhibition
VERB: taking
NOUN: place
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
X: westminsterabbey
X: visitlondon
X: lumierelondon
X: lumierelondon
X: soed
X: dslr
X: lumiere
NOUN: london
X: lumiere
X: lumierelondon
X: aichoketrust
X: visitlondon
X: tfltrafficnews
NOUN: road
NOUN: closures
VERB: implemented
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
VERB: charing
NOUN: cross
NOUN: road
ADV: elsewhere
ADJ: west
NOUN: end
NOUN: area
NOUN: wish
VERB: could
NOUN: year
NOUN: round
NOUN: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
NOUN: aichoketrust
NOUN: mader
NOUN: wiermann
NOUN: frictions
VERB: found
NUM: 103
NOUN: regent
NOUN: street
NOUN: check
VERB: sponsored
ADJ: great
NOUN: poland
NOUN: estates
ADV: west
VERB: end
NOUN: panership
NUM: 2018
NOUN: piccadilly
NOUN: circus
NOUN: scene
ADV: apiece
VERB: called
NOUN: voyage
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: themayfairhotel
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
X: tmnikonian
X: christiana72
X: ganton
X: sttreet
X: carnaby
NOUN: street
NOUN: k_etherington
NOUN: photos
NOUN: king
NOUN: cross
NOUN: section
PRT: lumiere
NOUN: london
NOUN: lasers
ADJ: great
NOUN: lumiere
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: photos
NOUN: king
NOUN: cross
NOUN: section
PRT: lumiere
NOUN: london
NOUN: lasers
ADJ: great
X: lumiere
X: lumierelondon
X: lumierelondon2018
X: ganton
X: sttreet
X: carnaby
NOUN: street
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: themayfairhotel
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
NOUN: tmnikonian
NOUN: tonight
ADJ: last
NOUN: night
NOUN: favourite
NOUN: installation
NOUN: ig
NOUN: tmnikonian
NOUN: youtube
NOUN: london
NOUN: light
NOUN: festival
NOUN: georgekimm
ADJ: last
NOUN: day
PRT: lumiere
ADJ: london
NOUN: check
ADJ: insta
NOUN: stories
ADJ: full
NOUN: tour
NOUN: lumierelondon
NOUN: haywardgallery
ADV: really
ADJ: excited
NOUN: pa
NUM: 2018
ADJ: annual
ADJ: free
ADJ: outdoor
ADJ: light
NOUN: festival
VERB: showcases
NOUN: london
NOUN: architecture
VERB: includes
X: david
NOUN: batchelor
ADP: 60minutespectrum
ADJ: top
NOUN: haywardgallery
VERB: explore
ADJ: lumiere
ADJ: london
NOUN: programme
VERB: thinking
ADV: back
ADJ: last
NOUN: night
NUM: one
ADJ: best
NOUN: bits
VERB: knocking
DET: aworks
NOUN: way
VERB: walking
ADJ: middle
NOUN: regent
NOUN: street
ADP: among
NOUN: crowds
NOUN: traffic
ADJ: surreal
NOUN: experience
NOUN: pics
VERB: wandering
ADJ: round
NOUN: lumiere
NOUN: london
ADJ: last
NOUN: night
VERB: see
VERB: ends
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: lumierelondon
NOUN: lumiere
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: lumiere
NOUN: festival
NOUN: weekend
ADJ: awesome
NOUN: hope
ADP: like
NOUN: video
X: lumiere2018
X: lumierefestival
X: lumierelondon
X: lumiere
X: lumierelondon2018
ADJ: last
NOUN: night
NOUN: lumiere
NOUN: ldn
NOUN: festival
NOUN: spectacle
NOUN: lumierelondon
ADJ: light
NOUN: love
NOUN: london
NOUN: friends
NOUN: experiences
X: edgillwhl
X: lumierelondon
X: leicestersquare
DET: a
ADJ: london
NOUN: travel
ADJ: amateur
NOUN: photography
ADJ: quick
NOUN: visit
ADJ: last
NOUN: night
ADJ: full
NOUN: swing
VERB: wrap
ADJ: warm
NOUN: head
ADV: outdoors
VERB: explore
ADJ: dazzling
NOUN: lights
ADJ: open
ADP: till
NUM: 22
NUM: 30
NOUN: evening
NOUN: child
NOUN: hood
VERB: dancing
X: lightbulbs
X: lumierelondon
X: timeoutlondon
X: lightfestival
ADJ: unprofessional
NOUN: images
ADJ: quick
NOUN: visit
ADJ: last
NOUN: night
DET: another
ADJ: upcoming
NOUN: visitor
NOUN: rules
NOUN: leicester
ADJ: square
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
VERB: visited
ADV: lumiere
CONJ: yet
ADJ: live
NOUN: london
VERB: put
NOUN: coat
NOUN: turn
NOUN: telly
VERB: get
NUM: 10
NOUN: 30pm
ADJ: last
NOUN: night
ADJ: awesome
X: lumierelondon2018
X: fishinaphonebox
X: locket25
X: aichoketrust
ADJ: beautiful
ADJ: brilliant
NOUN: thank
X: please
VERB: come
ADV: back
X: kate_travels
X: yes
VERB: snowing
NOUN: today
NOUN: excuse
NOUN: catch
NOUN: check
NOUN: highlights
ADP: past
NOUN: nights
NOUN: london
NOUN: lumiere
NOUN: lumierelondon
ADJ: light
NOUN: photography
NOUN: lantern
NOUN: westminster
NOUN: westminsterabbey
VERB: highlights
NOUN: citylife
NOUN: travelblogger
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: trafalgar
ADJ: square
ADJ: london
NOUN: street
NOUN: bnw_planet
NOUN: tfl
NOUN: update
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: implemented
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: elsewhe
NOUN: haley
NOUN: hare
VERB: coming
NOUN: plate
NOUN: rules
ADV: soon
NOUN: moon
NOUN: water
NOUN: jd
NOUN: southbanklondon
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: installations
NOUN: tonight
NOUN: pop
NOUN: south
NOUN: bank
VERB: see
NOUN: wave
NOUN: brightnights
VERB: tfltrafficnews
NOUN: road
NOUN: closures
VERB: implemented
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
VERB: charing
NOUN: cross
NOUN: road
ADV: elsewhere
ADV: west
VERB: end
NOUN: area
VERB: dot
ADJ: light
NOUN: selfie
NOUN: kingscrossn1c
NOUN: visitlondon
NOUN: aichoketrust
NOUN: solomongreyband
NOUN: philippemorvan
NOUN: london
NOUN: lighta
NOUN: gavriiluxwarm
NOUN: light
VERB: attracts
NOUN: people
NOUN: people
VERB: take
NOUN: photos
ADJ: enormous
NOUN: bank
NOUN: light
NOUN: bulbs
NOUN: pulse
NOUN: flash
NUM: 2018
NOUN: leicester
NOUN: square
VERB: looking
ADJ: funky
ADJ: beautiful
ADJ: light
NOUN: sculptures
VERB: sparkleyesxx
PRON: ya
VERB: gon
PRT: na
VERB: call
X: lumierelondon
X: lumierelondon2018
X: lumiere
X: londonlights
X: fishbooth
X: phonebooth
VERB: fish
DET: a
X: ainstallation
X: lovelondon
X: benoitdeseille
X: benedettobufalino
X: sevendials
X: 7dialslondon
NOUN: droplets
NOUN: pa
NOUN: lumiere
NOUN: festival
X: lumiere
X: lumiere
NOUN: neon
NOUN: drolpets
NOUN: london
NOUN: today
ADJ: last
NOUN: chance
VERB: see
ADJ: spectacular
DET: a
NOUN: installations
ADP: across
NOUN: regent
NOUN: street
NOUN: pa
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: miss
NOUN: origin
NOUN: world
NOUN: bubble
NOUN: chevaliermiguel
NOUN: action
NOUN: tonight
ADP: carnabylondon
NUM: 126
NUM: 316
NUM: 800
NOUN: steps
NOUN: road
NOUN: closures
VERB: implemented
ADV: currently
VERB: slow
VERB: moving
NOUN: traffic
ADP: around
NOUN: trafalgar
NOUN: square
VERB: approaches
NOUN: nohbound
VERB: charing
NOUN: cross
NOUN: road
NOUN: directions
NOUN: pall
NOUN: mall
ADV: westbound
VERB: charing
NOUN: cross
NOUN: road
ADV: elsewhere
ADJ: west
NOUN: end
NOUN: area
VERB: benjamingammon
DET: another
NOUN: installation
ADJ: wonderful
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: really
VERB: light
ADJ: dry
NOUN: january
ADV: also
ADJ: pleased
NOUN: outcome
VERB: google
NOUN: pixel
NUM: 2
NOUN: camera
ADJ: low
NOUN: light
VERB: shooting
NOUN: lumierelondon
NOUN: ball
ADV: oxfordstreet
ADJ: regentstreet
NOUN: regent
NOUN: street
NOUN: alberich
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
ADJ: fantastic
NOUN: idea
ADJ: many
NOUN: londoners
NOUN: others
VERB: braving
NOUN: rain
VERB: appreciate
NOUN: lights
ADV: absolutely
VERB: blown
PRT: away
ADJ: last
NOUN: night
PRT: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: aichoketrust
ADJ: beautiful
ADJ: brilliant
NOUN: thank
X: please
VERB: come
ADV: back
ADP: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: jubileeline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: jubilee
NOUN: line
NOUN: baker
NOUN: street
NOUN: waterloo
ADJ: busy
NOUN: find
NOUN: tflbusales
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
NOUN: find
NOUN: benjamingammon
DET: another
NOUN: installation
ADJ: wonderful
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
NUM: 2018
NOUN: leicester
ADJ: square
NOUN: garden
ADJ: whole
NOUN: piece
VERB: called
NOUN: nightlife
NOUN: hatmanoflondon
NOUN: southbanklondon
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: installations
NOUN: tonight
NOUN: pop
NOUN: south
NOUN: bank
VERB: see
NOUN: wave
NOUN: brightnights
VERB: enjoy
ADJ: tasty
NOUN: dairy
ADJ: free
ADJ: hot
NOUN: chocolate
NOUN: tonight
NOUN: rococochocs
ADV: directly
NOUN: opp
NOUN: aquarium
NOUN: installation
NOUN: check
NOUN: grantchito
NUM: 2018
NOUN: leicester
ADJ: square
ADV: really
VERB: embracing
NOUN: festival
NOUN: lights
ADV: pretty
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: mader
NOUN: wiermann
NOUN: frictions
VERB: found
NUM: 103
NOUN: regent
NOUN: street
NOUN: check
VERB: sponsored
ADJ: great
NOUN: poland
NOUN: estates
ADV: west
VERB: end
X: panership
X: en
X: route
ADV: back
NOUN: manchester
ADJ: first
ADJ: london
NOUN: trip
NUM: 2018
NOUN: nazia_kassam
VERB: done
VERB: dusted
VERB: wait
ADJ: next
NUM: one
NOUN: london
NOUN: gulaabjamun
NOUN: meatmarket
NOUN: kingscross
ADJ: harmonic
NOUN: poal
NOUN: chris
NOUN: plant
NOUN: lumierelondon
ADJ: london
ADJ: light
NOUN: st
ADJ: james
NOUN: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
ADJ: last
NOUN: chance
VERB: explore
ADV: lumiere
NOUN: tonight
NUM: 50
ADJ: incredible
NOUN: light
NOUN: installations
VERB: shining
NUM: 22
NUM: 30
VERB: forget
NOUN: use
NOUN: chance
NOUN: feature
NOUN: gallery
NOUN: aichoketrust
NOUN: southbanklondon
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: installations
NOUN: tonight
NOUN: pop
NOUN: south
NOUN: bank
VERB: see
NOUN: wave
NOUN: brightnights
VERB: cheekychops
ADV: even
ADJ: better
NOUN: rain
NOUN: cheekychops
ADV: even
ADJ: better
NOUN: rain
NOUN: grantchito
NUM: 2018
NOUN: leicester
ADJ: square
ADV: really
VERB: embracing
NOUN: festival
NOUN: lights
ADV: pretty
ADJ: london
NOUN: lights
NOUN: weekend
VERB: lumierelondon
DET: a
NOUN: music
VERB: lights
NOUN: lovelondon
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: truly
ADJ: phenomenal
NOUN: event
VERB: went
NUM: 3
NUM: 4
NOUN: days
VERB: try
NOUN: amp
NOUN: capture
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: installations
NOUN: tonight
NOUN: pop
NOUN: south
NOUN: bank
VERB: see
NOUN: wave
NOUN: brightnights
VERB: bbctravelale
NOUN: tweeps
ADV: soon
VERB: lighting
X: kingscross
X: fitzrovia
X: mayfair
X: westend
NOUN: westminster
NOUN: victoria
NOUN: southbank
NOUN: amp
NOUN: waterloo
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
DET: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: shaftesbury
NOUN: ave
VERB: expect
NOUN: delays
NOUN: fi
NOUN: king
ADP: poals
NUM: 2018
NOUN: leicester
ADJ: square
ADV: really
VERB: embracing
NOUN: festival
NOUN: lights
ADV: pretty
ADJ: light
ADJ: lightfestival
NOUN: waves
ADV: tinyplanet
ADJ: insta360
NOUN: night
NOUN: london
NOUN: southbank
VERB: brightens
NOUN: spirits
ADJ: long
ADJ: dark
NOUN: winter
NOUN: months
PRT: aistic
NOUN: director
NOUN: jo
VERB: pocock
VERB: quoted
X: aicle
X: lumiere
NOUN: festival
ADJ: fantastic
ADJ: darkest
NOUN: time
NOUN: year
ADJ: great
NOUN: way
VERB: bringing
NOUN: visitors
NOUN: city
NOUN: leakestarches
ADJ: incredible
NUM: four
NOUN: days
NOUN: tonight
ADJ: last
NOUN: oppounity
VERB: see
NOUN: triptych
NOUN: aist
NOUN: imakefings
NOUN: leakestreet
NOUN: miss
VERB: miss
PRON: ya
VERB: gon
PRT: na
VERB: call
X: lumierelondon
X: lumierelondon2018
X: lumiere
X: londonlights
X: fishbooth
X: phonebooth
VERB: fish
DET: a
X: ainstallation
X: lovelondon
X: benoitdeseille
X: benedettobufalino
X: sevendials
X: 7dialslondon
ADV: even
ADJ: better
NOUN: rain
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: fantastic
NOUN: displays
NOUN: year
NOUN: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
NOUN: physicalenergy
NOUN: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
NOUN: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
NOUN: physicalenergy
NOUN: openyoureyesldn
VERB: show
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: robbrown678
X: lumierelondon
NOUN: bandwagon
ADP: lastnight
X: aichoketrust
X: visitlondon
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
PRT: lumiere
ADJ: incredible
NUM: four
NOUN: days
NOUN: tonight
ADJ: last
NOUN: oppounity
VERB: see
NOUN: triptych
NOUN: aist
NOUN: imakefings
NOUN: leakestreet
NOUN: miss
NOUN: miss
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: culturetrip
VERB: get
VERB: planning
ADJ: amazing
NOUN: light
NOUN: installations
VERB: going
VERB: see
ADJ: handy
NOUN: guide
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: madlinsudn
ADP: woh
VERB: braving
NOUN: rains
ADJ: joyful
ADJ: light
NOUN: wish
VERB: could
NOUN: year
ADP: round
NOUN: hayward
NOUN: gallery
NOUN: neon
NOUN: tower
ADJ: kinetic
NOUN: sculpture
NOUN: philip
NOUN: vaughan
NOUN: storage
ADP: since
NUM: 2008
VERB: vimeo
NOUN: christine
NOUN: goldsmith
NOUN: 1st
VERB: stop
PRON: francistibbalds
NOUN: trail
VERB: takes
NOUN: london
NOUN: festival
NOUN: chrissykinsella
NOUN: friend
NOUN: toddler
VERB: said
NOUN: aichoketrust
NOUN: lumiere2018
ADJ: beautiful
NOUN: must
VERB: made
NOUN: fairies
VERB: think
ADJ: loveliest
NOUN: description
VERB: heard
ADV: far
X: neillangdesign
X: lumierelondon
X: lumiere
X: leicestersquare
X: chrissykinsella
NOUN: friend
NOUN: toddler
VERB: said
NOUN: aichoketrust
NOUN: lumiere2018
ADJ: beautiful
NOUN: must
VERB: made
NOUN: fairies
VERB: think
ADJ: loveliest
NOUN: description
VERB: heard
ADV: far
ADV: debkellyldn
ADV: totally
VERB: loving
VERB: wrapped
VERB: seeing
ADJ: london
ADJ: new
ADJ: light
NOUN: evening
NOUN: congratulations
NOUN: visitlondon
NOUN: amp
NOUN: aichoketrust
NOUN: teams
ADJ: amazing
ADJ: free
NOUN: event
NOUN: everyone
VERB: enjoy
X: lumierelondon
X: lumiere
X: leicestersquare
X: magiclorne
NOUN: sketch
NOUN: kingscross
NOUN: london
VERB: braving
NOUN: rain
PRT: woh
ADJ: great
NOUN: installations
DET: aichoketrust
VERB: woh
VERB: braving
NOUN: rains
ADJ: joyful
NOUN: light
NOUN: chrissykinsella
NOUN: friend
NOUN: toddler
VERB: said
NOUN: aichoketrust
NOUN: lumiere2018
ADJ: beautiful
NOUN: must
VERB: made
NOUN: fairies
VERB: think
ADJ: loveliest
NOUN: description
VERB: heard
ADV: far
ADV: sheenieshaikh
VERB: seen
ADJ: first
NOUN: vlog
NUM: 2018
NOUN: lumiere
NOUN: london
NOUN: photo
NOUN: credit
NOUN: donotrefreeze
VERB: retweeted
NOUN: susie
NOUN: richardson
VERB: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADJ: busy
NOUN: days
NUM: 45
X: mpscamden
X: mpsislington
X: msc
VERB: worked
NOUN: weekend
VERB: responding
NUM: 999
NOUN: calls
VERB: keeping
ADJ: safe
ADJ: local
NOUN: patrols
DET: hampstead
NOUN: force
VERB: suppo
ADJ: regular
NOUN: colleagues
NOUN: oneteam
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: mrcravenracont
VERB: enjoyed
VERB: exploring
ADJ: last
NOUN: night
DET: another
NOUN: installation
ADJ: wonderful
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: given
NUM: 10
NUM: 000
NOUN: glow
NOUN: sticks
VERB: painted
NUM: 5
NUM: 000
VERB: faces
NOUN: pa
NOUN: hope
VERB: enjoy
ADJ: final
NOUN: evening
NOUN: tonight
NOUN: suzyhamilton
NOUN: weekend
VERB: wandering
ADV: around
ADJ: gorgeous
DET: a
NOUN: installations
PRT: lumiere
NOUN: london
VERB: managed
NOUN: miss
NOUN: lights
NOUN: today
VERB: think
ADJ: busy
VERB: talking
ADJ: nice
VERB: seen
ADJ: first
NOUN: vlog
NUM: 2018
NOUN: lumiere
NOUN: london
NOUN: photo
NOUN: credit
NOUN: donotrefreeze
VERB: enjoyed
VERB: exploring
ADJ: last
NOUN: night
NOUN: friend
NOUN: toddler
VERB: said
NOUN: aichoketrust
NOUN: lumiere2018
ADJ: beautiful
NOUN: must
VERB: made
NOUN: fairies
VERB: think
ADJ: loveliest
NOUN: description
VERB: heard
ADV: far
ADJ: excited
VERB: heading
ADJ: final
NOUN: evening
VERB: could
ADV: kindly
VERB: stop
VERB: raining
VERB: would
ADV: rather
ADJ: nice
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: illuminated
NOUN: rhys
NOUN: coren
VERB: love
NOUN: motion
NOUN: watts
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
NOUN: lumiere
VERB: turned
NOUN: talk
NOUN: jheeeeeeze
NOUN: fans
NOUN: bulb
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: watermansas
NOUN: venture
NOUN: question
NOUN: lights
ADJ: london
NOUN: lumierelondon
NOUN: christmas
VERB: lights
NOUN: month
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: aichoketrust
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: venture
NOUN: question
NOUN: lights
NOUN: london
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: kingscrossn1c
VERB: make
ADJ: sure
NOUN: check
NOUN: night
NOUN: market
CONJ: luma
NOUN: pop
NOUN: bar
NOUN: visit
NOUN: kingscrossn1c
NOUN: lots
NOUN: restaurants
ADJ: special
NOUN: menus
VERB: celebrate
NOUN: festival
NOUN: well
NOUN: weekend
VERB: wandering
ADV: around
ADJ: gorgeous
DET: a
NOUN: installations
DET: lumiere
NOUN: london
NOUN: aichoketrust
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
ADJ: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: juliane_thm
ADJ: last
NOUN: night
ADJ: final
NOUN: time
NOUN: tonight
VERB: take
NOUN: stroll
ADV: outside
VERB: stopped
VERB: snowing
NOUN: lumierelondon2018
VERB: mean
ADJ: incredible
NOUN: frost
NOUN: bite
NOUN: pneumonia
NOUN: wohy
NOUN: freyawilcox
NOUN: tonight
ADJ: last
NOUN: day
NOUN: visit
VERB: read
ADV: really
VERB: thought
ADJ: famous
NOUN: light
NOUN: festival
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
ADJ: last
NOUN: night
ADJ: final
NOUN: time
NOUN: tonight
VERB: take
NOUN: stroll
ADV: outside
VERB: stopped
VERB: snowing
X: lumierelondon2018
X: aichoketrust
X: ten
ADJ: top
NOUN: installations
VERB: explore
ADJ: south
NOUN: bank
NOUN: amp
NOUN: waterloo
ADV: back
NUM: 17
NUM: 30
NOUN: evening
NOUN: southbankbid
NOUN: southbankcentre
NOUN: wearewaterloouk
NOUN: leakestarches
VERB: want
VERB: see
NOUN: hundreds
NOUN: people
VERB: climbing
NOUN: walls
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: danielcanogar
VERB: brought
NOUN: asalto
NOUN: london
X: victoriabid
X: embspainuk
X: spaincultureuk
X: kingscrossn1c
VERB: make
ADJ: sure
NOUN: check
NOUN: night
NOUN: market
CONJ: luma
NOUN: pop
NOUN: bar
NOUN: visit
NOUN: kingscrossn1c
NOUN: lots
NOUN: restaurants
ADJ: special
NOUN: menus
VERB: celebrate
NOUN: festival
ADV: well
ADP: thegl0betrotter
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
NOUN: lumiere
NOUN: london
X: bhawnasaini_yml
ADJ: harmonic
NOUN: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: londonblogger
NOUN: wintersinlondon
NOUN: nightfestival
NOUN: thegl0betrotter
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: london
NOUN: westminster
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: hotelkensington
NOUN: tonight
ADJ: last
NOUN: chance
VERB: catch
ADJ: incredible
NOUN: lumiere
NOUN: london
NOUN: aichoketrust
NOUN: sliceofthecity
NOUN: umbrella
NOUN: project
NOUN: cirque
ADJ: bijou
NOUN: photo
NOUN: andre
X: pattenden
X: couesy
X: aichoke
X: aists
NOUN: rainbow
NOUN: lumierelondon
NOUN: timeoutlondon
NOUN: rainbow
NOUN: lightfestival
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
NOUN: physicalenergy
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: leebrowne1971
X: lumierelondon2018
X: lumierelondon
X: visitlondon
VERB: switched
NOUN: tonight
ADV: south
NOUN: bank
NOUN: amp
NOUN: westminster
NOUN: aichoketrust
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADV: well
ADJ: total
NOUN: waste
NOUN: time
NOUN: half
NOUN: hour
VERB: wandering
ADP: around
ADJ: cold
ADJ: wet
NOUN: saw
ADV: absolutely
NOUN: nothing
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: bbclondonnews
NOUN: bbctravelale
NOUN: tweeps
ADV: soon
VERB: lighting
X: kingscross
X: fitzrovia
X: mayfair
X: westend
NOUN: westminster
NOUN: victoria
NOUN: southbank
NOUN: amp
NOUN: waterloo
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
DET: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: johnjraftery
NOUN: lumierelondon
NOUN: southbank
ADJ: great
NOUN: night
ADV: anyway
VERB: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: bhawnasaini_yml
ADJ: harmonic
NOUN: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
VERB: visitlondon
NOUN: london
X: lumierelondon
X: londonblogger
X: wintersinlondon
X: nightfestival
X: noveltyat
NOUN: time
NOUN: sea
NOUN: granary
NOUN: square
DET: lumiere
NOUN: london
NOUN: lumierelondon
NUM: 2018
NOUN: light
NOUN: lightinstallation
NOUN: night
NOUN: granarysquare
NOUN: rain
VERB: keep
ADV: away
ADV: aichoketrust
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
NOUN: bhawnasaini_yml
ADJ: harmonic
NOUN: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: londonblogger
NOUN: wintersinlondon
NOUN: nightfestival
NOUN: aichoketrust
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
NOUN: aichoketrust
NOUN: visitlondon
NOUN: rain
VERB: easing
NOUN: droplets
ADJ: unrelenting
VERB: come
NOUN: enter
NOUN: calming
NOUN: space
NOUN: fitzroy
NOUN: place
X: aichoketrust
X: visitlondon
X: timeoutlondon
X: lumierelondon2018
X: lumiere
X: lumierelondon
X: lightfestival
X: lighta
X: kingscrossn1c
VERB: highlights
ADJ: last
NOUN: couple
NOUN: days
ADV: kingscrossn1c
VERB: make
ADJ: sure
NOUN: visit
NOUN: tonight
ADJ: final
NOUN: chance
ADV: well
ADP: lumiere
ADJ: london
ADJ: fabulous
NOUN: wish
NOUN: time
VERB: see
VERB: painted
NOUN: facade
NOUN: westminster
NOUN: abbey
ADJ: magical
NOUN: level
NOUN: detail
NOUN: nothing
NOUN: sho
ADJ: extraordinary
ADJ: harmonic
ADJ: poal
ADJ: chrisplant
NOUN: one
VERB: found
ADJ: eerie
CONJ: yet
VERB: stop
VERB: looking
VERB: hypnotizing
ADV: indeed
VERB: visitlondon
NOUN: london
X: lumierelondon
X: londonblogger
X: wintersinlondon
X: nightfestival
X: londonwhispers
X: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
ADJ: last
NOUN: night
ADJ: last
NOUN: chance
VERB: explore
ADJ: open
ADP: till
NUM: 22
NUM: 30
NUM: 50
NOUN: installations
ADP: across
NUM: 6
NOUN: destinations
VERB: discover
VERB: get
VERB: exploring
ADV: mazerestaurant
ADJ: nice
ADJ: little
NOUN: challenge
VERB: create
NOUN: something
ADJ: light
ADJ: light
NOUN: bulb
ADV: finally
VERB: bar
NOUN: team
VERB: celebrating
ADJ: perfect
NOUN: serve
ADP: throughout
NOUN: festival
NUM: 18
ADJ: 21st
NOUN: january
NOUN: thegl0betrotter
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: london
NOUN: westminster
NOUN: thegl0betrotter
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
NOUN: lumiere
NOUN: london
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: cheriecity
X: mesmerising
X: waterlicht
X: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: haring
ADP: around
NOUN: london
NOUN: bag
NOUN: canonuk
NOUN: cameras
VERB: shooting
NOUN: lumiere2018
NOUN: thanks
VERB: aichoke
ADJ: great
NOUN: work
X: westminsterabbey
X: aichoketrust
X: sliceofthecity
X: visitlondon
X: londonlumiere
VERB: adored
NOUN: animal
NOUN: nightlife
NOUN: leicester
ADJ: square
ADJ: unmissable
NOUN: event
NOUN: londonisopen
NOUN: mayoroflondon
NOUN: aichoketrust
ADJ: stunning
NOUN: photos
VERB: show
NOUN: lumiere
NOUN: aworks
NOUN: lighting
NOUN: london
NOUN: night
NOUN: evening
NOUN: standard
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: lumiere
NOUN: night
NUM: 2
ADJ: fantastic
NOUN: night
NOUN: thanks
VERB: aichoke
ADJ: great
NOUN: work
X: westminsterabbey
X: aichoketrust
X: sliceofthecity
X: visitlondon
X: londonlumiere
X: soas
NOUN: case
VERB: heard
ADV: somehow
NOUN: weekend
NOUN: check
NOUN: blog
NOUN: spots
ADJ: close
X: soas
X: lumierelondon2018
X: westminsterabbey
NOUN: tonight
NOUN: night
ADV: already
VERB: brace
ADJ: cold
NOUN: visit
NOUN: chinatown
NOUN: london
ADP: beyond
ADJ: thesnowcantstopus
ADJ: cold
NOUN: amp
ADJ: tired
NOUN: amp
ADJ: wet
ADJ: outside
NOUN: metline
VERB: join
ADV: mastercarduk
ADJ: priceless
NOUN: group
VERB: hoping
NOUN: fir
ADJ: awesome
NOUN: photos
X: yes
VERB: snowing
NOUN: today
NOUN: excuse
NOUN: catch
NOUN: check
NOUN: highlights
ADP: past
NOUN: nights
NOUN: london
NOUN: lumiere
NOUN: lumierelondon
ADJ: light
NOUN: photography
NOUN: lantern
NOUN: westminster
NOUN: westminsterabbey
VERB: highlights
NOUN: citylife
NOUN: travelblogger
ADJ: popular
NOUN: thornton
NOUN: heath
NOUN: cr7market
ADV: back
NUM: 27
NOUN: jan
NOUN: head
NOUN: ambassador
NOUN: house
NOUN: forecou
NOUN: 12pm
NOUN: 6pm
NOUN: array
ADJ: local
ADP: as
NOUN: crafts
NOUN: goods
DET: trumble
NOUN: gardens
NOUN: 4pm
NOUN: 9pm
NOUN: mix
ADJ: hot
ADJ: cold
NOUN: food
VERB: enjoying
NOUN: thlf2018
NOUN: croydon
VERB: enjoyed
VERB: wandering
PRT: around
NOUN: installations
NOUN: yesterday
NOUN: evening
VERB: seen
NOUN: festival
NOUN: hurry
VERB: ends
NOUN: evening
ADV: well
ADP: woh
VERB: checking
NOUN: visitlondon
NOUN: bealocaltourist
NOUN: phone
NUM: 18
NOUN: months
VERB: realised
NOUN: today
VERB: straighten
NOUN: photos
VERB: numpty
ADJ: little
NOUN: bit
NOUN: adam
X: leakestreettunnel
X: emmaallendesign
X: greymatters
X: timeoutlondon
X: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: loki_lego
X: lumierelondon
NOUN: trafalgar
ADJ: square
NOUN: leicester
ADJ: square
NOUN: loki_lego
NOUN: leicester
ADJ: square
NOUN: lumierelondon
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: pa
NOUN: beauty
VERB: discovering
ADJ: new
NOUN: places
NOUN: idea
VERB: existed
NOUN: hotelkensington
NOUN: tonight
ADJ: last
NOUN: chance
VERB: catch
ADJ: incredible
NOUN: lumiere
NOUN: london
NOUN: aichoketrust
NOUN: sliceofthecity
NOUN: umbrella
NOUN: project
NOUN: cirque
ADJ: bijou
NOUN: photo
NOUN: andre
X: pattenden
X: couesy
X: aichoke
X: aists
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
NOUN: thursday
NUM: 18
NOUN: sunday
NUM: 21
NOUN: january
NOUN: light
NOUN: festival
VERB: happening
ADJ: central
NOUN: london
NOUN: trains
ADV: maybe
ADJ: busier
ADJ: normal
X: please
VERB: check
NOUN: travel
NOUN: find
PRT: lumiere
ADJ: london
NOUN: visit
NOUN: tonight
ADJ: last
NOUN: chance
VERB: catch
ADJ: incredible
NOUN: lumiere
NOUN: london
NOUN: aichoketrust
NOUN: sliceofthecity
NOUN: umbrella
NOUN: project
NOUN: cirque
ADJ: bijou
NOUN: photo
NOUN: andre
X: pattenden
X: couesy
X: aichoke
X: aists
X: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
X: cheriecity
X: mesmerising
X: waterlicht
X: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: bbctravelale
NOUN: tweeps
ADV: soon
VERB: lighting
X: kingscross
X: fitzrovia
X: mayfair
X: westend
NOUN: westminster
NOUN: victoria
NOUN: southbank
NOUN: amp
NOUN: waterloo
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
DET: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: shaftesbury
NOUN: ave
VERB: expect
NOUN: delays
NOUN: fi
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: wearewaterloouk
VERB: reimagine
NOUN: london
NOUN: architecture
VERB: see
NOUN: city
ADJ: new
NOUN: light
NOUN: lumierelondon
NOUN: aichoketrust
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: regent
NOUN: street
NOUN: piccadilly
NOUN: circus
VERB: painted
VERB: glowing
ADJ: light
NOUN: cheriecity
VERB: mesmerising
NOUN: waterlicht
NOUN: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: thegl0betrotter
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: london
NOUN: westminster
NUM: 2018
NOUN: plants
VERB: look
ADV: pretty
VERB: oozing
ADV: luminously
VERB: taking
ADJ: many
NOUN: sights
NOUN: tonight
VERB: take
NOUN: advantage
NOUN: 100s
VERB: specialoffers
ADJ: london
NOUN: businesses
X: visitlondon
X: traceyemin
X: lumierelondon
NOUN: neon
ADJ: light
NOUN: lighting
NOUN: colour
NOUN: london
NOUN: swipeleft
NOUN: fish
VERB: chats
ADV: happily
VERB: mesmerised
NOUN: fish
NOUN: phonebox
NOUN: aquarium
NOUN: benedetto
NOUN: bufalino
NOUN: benoit
X: deseille
X: lumierelondon2018
NOUN: event
NOUN: lumiere
NOUN: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: tweeps
ADV: soon
VERB: lighting
X: kingscross
X: fitzrovia
X: mayfair
X: westend
NOUN: westminster
NOUN: victoria
NOUN: southbank
NOUN: amp
NOUN: waterloo
ADJ: final
NOUN: night
NOUN: road
NOUN: closures
DET: incl
NOUN: oxford
NOUN: st
NOUN: regent
NOUN: st
NOUN: piccadilly
NOUN: waterloo
NOUN: place
NOUN: shaftesbury
NOUN: ave
VERB: expect
NOUN: delays
NOUN: fi
ADP: thegl0betrotter
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
NOUN: lumiere
NOUN: london
NOUN: rhianbwatts
ADV: really
VERB: enjoyed
VERB: exploring
NOUN: festival
ADJ: past
NOUN: days
PRT: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
X: redlionmayfair
X: westend
ADJ: final
NOUN: day
ADJ: spectacular
NOUN: amp
VERB: want
VERB: relax
ADV: away
NOUN: weather
NOUN: call
NOUN: london_pride
ADJ: open
NOUN: today
NOUN: 4pm
NOUN: end
NOUN: weekend
NOUN: style
NOUN: piccadilly
X: stjames
X: jermynstreet
X: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: projectservator
ADJ: reassuring
NOUN: businesses
X: southbank
X: lambethmps
X: lumiere
NOUN: festival
VERB: use
ADJ: uniform
ADJ: plain
NOUN: clothes
NOUN: officers
NOUN: pa
ADJ: ongoing
NOUN: operations
VERB: dress
ADJ: warm
NOUN: evening
NOUN: actioncountersterrorism
NOUN: teamworktomakethedreamwork
NUM: 2018
NOUN: butterflies
VERB: hanging
NOUN: trees
NOUN: leicester
ADJ: square
ADJ: pretty
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: trafalgarsquare
NOUN: lumierelondon
NOUN: balloons
VERB: lighting
ADJ: light
NOUN: london
ADP: swipeleft
NOUN: westminster
NOUN: abbey
NOUN: yesterday
ADV: beautifully
VERB: lit
ADJ: london
ADJ: light
NOUN: festival
PRT: lumiere
ADJ: london
NOUN: reflections
VERB: mayfair
NOUN: lumierelondon
NOUN: neon
ADJ: light
NOUN: lighting
NOUN: colour
NOUN: london
NOUN: mayfair
NOUN: lumierelondon
NOUN: neon
ADJ: light
NOUN: lighting
NOUN: colour
NOUN: london
NOUN: thegl0betrotter
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: london
NOUN: westminster
NOUN: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: 7dialslondon
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: aquarium
NUM: seven
NOUN: dials
NOUN: pa
NOUN: head
NOUN: earlham
NOUN: street
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: find
NOUN: nohernlights
NOUN: grosvenorsquare
NOUN: lumierelondon
NOUN: lighting
NOUN: lights
NOUN: london
NOUN: cheriecity
VERB: mesmerising
NOUN: waterlicht
NOUN: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: carnabylondon
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: imakefings
ADJ: last
NOUN: day
ADJ: last
NOUN: chance
VERB: come
ADJ: amazing
NOUN: leakestreetarches
ADJ: last
NOUN: day
ADJ: last
NOUN: chance
VERB: come
ADJ: amazing
NOUN: leakestreetarches
VERB: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: robwdawkins
ADJ: stunning
ADJ: light
NOUN: display
X: oxotowerwharf
X: lumierelondon
X: photograghy
X: lizziemidd
NOUN: favourites
NOUN: yesterday
NOUN: evening
NOUN: tad
ADJ: chilly
NOUN: well
VERB: woh
VERB: visit
ADJ: good
NOUN: map
NOUN: visitlondon
NOUN: app
NOUN: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: london
NOUN: westminster
NOUN: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: aichoketrust
ADV: back
NOUN: tonight
NUM: 17
NUM: 30
ADJ: cold
NOUN: wrap
NOUN: warm
VERB: discover
NUM: 50
ADJ: dazzling
NOUN: installations
ADP: like
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: trafalgarsquare
VERB: sponsored
X: zumtobel_light
X: redlionmayfair
X: westend
ADJ: final
NOUN: day
ADJ: spectacular
NOUN: amp
VERB: want
VERB: relax
ADV: away
NOUN: weather
NOUN: call
NOUN: london_pride
ADJ: open
NOUN: today
NOUN: 4pm
NOUN: end
NOUN: weekend
NOUN: style
NOUN: piccadilly
NOUN: stjames
NOUN: jermynstreet
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: check
NOUN: light
VERB: shows
NUM: 5
NOUN: 30pm
NOUN: lumierelondon
NOUN: emmabennett29
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
NOUN: rhianbwatts
ADV: really
VERB: enjoyed
VERB: exploring
NOUN: festival
ADJ: past
NOUN: days
PRT: westminsterabbey
NOUN: thing
VERB: looks
ADV: best
ADJ: sure
VERB: bothered
NUM: 12
NOUN: minutes
VERB: walk
NOUN: southbanklondon
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: helbron
NOUN: thanks
ADV: second
ADJ: magical
NOUN: night
NOUN: lights
VERB: visitlondon
NUM: 2018
ADJ: beautiful
NOUN: frogs
VERB: look
ADJ: real
ADJ: sound
NOUN: water
NOUN: fountain
VERB: mimicking
NOUN: habitat
ADJ: fantastic
NOUN: work
NOUN: john_pahl
PRT: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
NOUN: aichoketrust
VERB: learn
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
VERB: took
NOUN: flight
NOUN: timelapse
NOUN: chevaliermiguel
NOUN: newwestend
NOUN: wave
VERB: created
ADJ: danish
NOUN: installation
NOUN: company
DET: obscuraveigo
VERB: responds
NOUN: movement
NOUN: amp
NOUN: sound
NUM: 40
NOUN: arches
VERB: walk
NOUN: amp
VERB: interact
NOUN: beacon
ADJ: light
NOUN: darkness
NOUN: riverfront
NOUN: southbank
NOUN: traveljunkiegrl
VERB: made
NOUN: tonnes
ADJ: empty
NOUN: plastic
NOUN: bottles
VERB: rose
NOUN: window
ADP: outside
NOUN: westminster
NOUN: cathedral
ADJ: epic
NOUN: southbanklondon
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
X: random_helen
NOUN: pics
NOUN: weekend
NOUN: babcockwalk
NOUN: step
NOUN: count
NOUN: thethroneseekers
NOUN: team
VERB: pounded
NOUN: streets
NOUN: london
VERB: seen
NOUN: fish
NOUN: phone
NOUN: box
VERB: celebrated
NOUN: friend
ADJ: 50th
NOUN: amp
VERB: watched
ADJ: beautiful
NOUN: performance
NOUN: wiltonmusichall
VERB: flying
NOUN: lovers
ADV: vitebsk
ADJ: fun
NOUN: culture
NOUN: fitness
VERB: done
NOUN: stuff
ADJ: last
NOUN: night
VERB: bothered
VERB: need
VERB: get
NOUN: dinner
ADV: though
VERB: might
VERB: swing
ADP: past
NOUN: trafalgar
NOUN: leicester
NOUN: squares
NOUN: way
NOUN: tesco
ADV: least
VERB: done
VERB: mesmerising
NOUN: waterlicht
NOUN: sroosegaarde
NOUN: pa
NOUN: catch
NOUN: tonight
NOUN: kingscrossn1c
NOUN: festival
VERB: ends
NOUN: lumierelondon
NOUN: southbanklondon
NOUN: evening
VERB: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: evening
NOUN: raise
NOUN: glass
NUM: two
ADV: ingeniously
ADJ: original
NOUN: amp
ADJ: luminous
NOUN: cocktails
ADJ: intriguing
NOUN: names
DET: gillrays
VERB: choose
NOUN: bat
VERB: catching
NOUN: amp
NOUN: pandora
NOUN: box
NOUN: brightnights
NOUN: gt
NOUN: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: tflbusales
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
NOUN: find
NOUN: visitlondon
NUM: 5
ADJ: gorgeous
NOUN: aworks
VERB: discover
VERB: explore
ADJ: beautiful
NOUN: fitzrovia
NOUN: area
VERB: let
PRON: us
VERB: know
ADJ: favourite
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: child
NOUN: hood
NOUN: pulse
NOUN: movement
ADJ: light
NOUN: amp
NOUN: sound
ADP: across
NOUN: trafalgarsquare
NOUN: collectifcoin
ADV: really
VERB: enjoyed
VERB: exploring
NOUN: festival
ADJ: past
NOUN: days
VERB: see
NOUN: bundle
ADJ: warm
ADJ: hot
NOUN: toddy
VERB: flying
NOUN: flamingos
NOUN: pa
ADV: west
VERB: end
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: enjoy
ADJ: free
NOUN: light
NOUN: installations
DET: a
NOUN: nickede
NOUN: wait
VERB: go
X: aichoketrust
X: lumierelondon2018
X: visitlondon
X: fuzzworks_uk
X: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
NOUN: lumiere
NOUN: openyoureyesldn
VERB: show
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: ontheroadtoyou
ADV: really
VERB: put
ADJ: great
NOUN: installations
NOUN: weekend
ADJ: final
NOUN: night
NOUN: go
NOUN: check
NOUN: visitlondon
NOUN: alifestylerebel
ADV: well
ADV: never
VERB: chance
NOUN: visit
NOUN: highlight
ADV: best
ADJ: light
NOUN: festival
VERB: taking
NOUN: london
NOUN: lumierelondon
NOUN: youtube
NOUN: blogger
NOUN: photographer
NOUN: visitlondon
NOUN: visitlondon
NOUN: createvictoria
NOUN: tanjaphotograph
ADJ: magical
NOUN: lumière
NOUN: london
NOUN: lumierelondon2018
NUM: 2018
NOUN: animal
VERB: galore
NOUN: leicester
ADJ: square
ADJ: great
ADJ: creative
NOUN: way
VERB: educate
VERB: remind
NOUN: people
VERB: love
NOUN: amp
NOUN: care
NOUN: animals
ADJ: fantastic
NOUN: works
VERB: crowd
ADJ: gatherer
NOUN: stairway
NOUN: heaven
NOUN: amp
ADJ: kinetic
NOUN: energy
VERB: spread
ADP: across
ADJ: trafalgarsq
NOUN: child
NOUN: hood
ADJ: light
NOUN: amp
NOUN: sound
X: scape
X: collectifcoin
X: echelle
X: ronhaselden
VERB: illuminate
NOUN: buzz
ADJ: big
X: lumiere
X: lumierelondon
X: lumierelondon2018
X: mayfair
X: streeta
ADJ: last
NOUN: night
PRT: lumiere
NOUN: london
NOUN: tonight
NOUN: westminster
NOUN: abbey
NOUN: paicular
NOUN: favourite
ADV: even
VERB: got
ADJ: ghostly
NOUN: copper
NOUN: pic
ADJ: last
NOUN: night
NOUN: wabbey
NUM: 2018
NOUN: leicester
NOUN: square
VERB: turned
NOUN: jungle
NOUN: city
VERB: plants
ADJ: different
NOUN: animals
ADJ: luminously
NOUN: amp
ADV: beautifully
VERB: staring
ADJ: beautiful
NOUN: saturday
NOUN: night
PRT: lumiere
NOUN: london
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
ADJ: magical
NOUN: lumière
NOUN: london
NOUN: lumierelondon2018
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: magical
NOUN: lumière
NOUN: london
NOUN: lumierelondon2018
NOUN: 7dialslondon
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: aquarium
NUM: seven
NOUN: dials
NOUN: pa
NOUN: head
NOUN: earlham
NOUN: street
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: find
NOUN: grantchito
NUM: 2018
NOUN: giant
ADV: beautifully
VERB: crafted
NOUN: flamingos
VERB: look
ADV: pretty
VERB: gliding
ADP: along
ADJ: busy
NOUN: streets
NOUN: chinatown
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: postcardslond1
X: lumiere
NOUN: london
NOUN: royalacademy
NOUN: love
NOUN: motion
NOUN: lumierelondon2018
NOUN: londonlumiere
NOUN: lumierelondon
NOUN: aichoketrust
ADV: back
NOUN: tonight
NUM: 17
NUM: 30
ADJ: cold
NOUN: wrap
NOUN: warm
VERB: discover
NUM: 50
ADJ: dazzling
NOUN: installations
ADP: like
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: trafalgarsquare
VERB: sponsored
NOUN: zumtobel_light
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
ADJ: amazing
NOUN: aquarium
NUM: seven
NOUN: dials
NOUN: pa
NOUN: head
NOUN: earlham
NOUN: street
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: find
VERB: westend
ADJ: final
NOUN: day
ADJ: spectacular
NOUN: amp
VERB: want
VERB: relax
ADV: away
NOUN: weather
NOUN: call
NOUN: london_pride
ADJ: open
NOUN: today
NOUN: 4pm
NOUN: end
NOUN: weekend
NOUN: style
NOUN: piccadilly
X: stjames
X: jermynstreet
X: loki_lego
NOUN: leicester
ADJ: square
NOUN: lumierelondon
NOUN: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NUM: 2018
NOUN: giant
ADV: beautifully
VERB: crafted
NOUN: flamingos
VERB: look
ADV: pretty
VERB: gliding
ADP: along
ADJ: busy
NOUN: streets
NOUN: chinatown
VERB: thanks
ADJ: lovely
NOUN: write
NOUN: flamingoflyway
NOUN: _kwaters_
NOUN: tonight
NOUN: lastchance
ADJ: magical
NOUN: lumière
NOUN: london
NOUN: lumierelondon2018
ADJ: great
NOUN: installations
NOUN: impulse
NOUN: pa
NOUN: exhibition
VERB: taking
NOUN: place
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
X: a
X: visitlondon
X: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: installations
DET: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: e e r e 
NOUN: london
VERB: united
NOUN: kingdom
NUM: 2018
NOUN: st
ADJ: main
NOUN: fields
ADJ: red
NOUN: ladder
ADJ: top
NOUN: spire
NOUN: hallelujah
NOUN: chorus
PRT: patricewarrener
ADJ: second
VERB: coming
ADJ: light
NOUN: spirit
NOUN: chpt
NUM: 2
NOUN: westminster
NOUN: abbey
ADJ: masterful
ADV: quite
NOUN: disney
NOUN: amp
ADV: wholly
X: god
ADV: damn
ADJ: marvellous
NOUN: catch
VERB: evaporates
NOUN: tonight
NUM: 10
NOUN: 30pm
NOUN: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: levanterman
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: tonight
ADJ: last
NOUN: day
NOUN: visit
VERB: read
ADV: really
VERB: thought
ADJ: famous
NOUN: light
NOUN: festival
NOUN: gasholders
VERB: reimagined
ADJ: architectural
NOUN: drawings
VERB: staring
NOUN: years
ADV: finally
NOUN: reality
NOUN: gasholders
X: gasholderiplets
X: kingscross
X: lumiere
X: levanterman
ADP: behind
NOUN: scenes
VERB: shot
NOUN: canonukandie
NOUN: visitlondon
NOUN: aichoketrust
NOUN: southbanklondon
NOUN: highlights
ADJ: last
NOUN: couple
NOUN: days
ADV: kingscrossn1c
VERB: make
ADJ: sure
NOUN: visit
NOUN: tonight
ADJ: final
NOUN: chance
NUM: 16
ADJ: beautiful
NOUN: works
VERB: discover
ADJ: london
NOUN: westend
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NUM: 17
NUM: 30
X: holbid
X: newwestend
X: shaftesburyplc
X: regentst_assoc
X: thecrownestate
ADV: really
VERB: put
ADJ: great
NOUN: installations
NOUN: weekend
ADJ: final
NOUN: night
NOUN: go
NOUN: check
NOUN: visitlondon
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
NOUN: lumierelondon
NOUN: londonisopen
NOUN: sadiqkhan
NOUN: mayoroflondon
NOUN: aichoketrust
DET: every
NOUN: event
VERB: branded
NOUN: amp
NOUN: sweets
NOUN: sugar
NOUN: aichoketrust
VERB: get
NOUN: insight
NOUN: magic
ADP: behind
NOUN: browse
NOUN: oppounities
NOUN: training
NOUN: jobs
ADP: across
NOUN: range
ADJ: exciting
NOUN: oppounities
ADJ: technicians_mih
NOUN: website
NOUN: techniciansmakeithappen
NOUN: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: ottersrowing
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: smitf_london
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
NOUN: thesavoylondon
VERB: excited
VERB: explore
ADJ: next
NOUN: nights
NOUN: london
VERB: lit
ADJ: incredible
VERB: illuminated
DET: a
NOUN: installations
NOUN: day
NUM: 21
VERB: take
NOUN: seat
VERB: spent
NUM: 5
NOUN: minutes
VERB: reflecting
NOUN: origin
NOUN: world
NOUN: bubble
NOUN: chevaliermiguel
NOUN: pa
VERB: mesmerised
NOUN: colour
VERB: transforming
NOUN: shapes
VERB: feels
ADP: like
ADJ: new
NOUN: planet
VERB: discovered
NOUN: oxford
NOUN: street
NOUN: thejanuarychallenge
NOUN: 64millionaists
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
NOUN: ron
X: haselden
X: echelle
VERB: illuminated
NOUN: spire
NOUN: stop
NOUN: café
NOUN: couyard
ADJ: open
NOUN: evning
NUM: 4
NOUN: 7pm
NOUN: aichoketrust
ADV: really
VERB: enjoyed
ADJ: stunning
ADJ: last
NOUN: night
ADJ: great
NOUN: share
NOUN: experience
NOUN: uoc_dance
ADJ: technical
NOUN: production
NOUN: students
PRT: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: warm
NOUN: spirit
VERB: running
ADP: round
VERB: catching
ADJ: final
NOUN: night
VERB: sparkling
NOUN: london
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: lumierelondon
X: regentstreet
NOUN: piccadilly
DET: a
NOUN: london
NOUN: travel
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
VERB: physicalenergy
ADJ: final
NOUN: night
VERB: see
PRON: us
VERB: climb
NOUN: westminster
NOUN: city
NOUN: hall
NOUN: tonight
NUM: 5
NOUN: 30pm
VERB: check
ADJ: exclusive
NOUN: cast
NOUN: commentary
ADV: first
VERB: saw
NOUN: warning
VERB: contains
NOUN: word
NOUN: bum
NOUN: john_pahl
PRT: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
VERB: get
NOUN: chance
NOUN: check
ADJ: last
NOUN: night
NOUN: tonight
NOUN: leicestersq
NOUN: chinatown
NOUN: trafalgarsq
NOUN: southbank
NOUN: london
NOUN: lumierelondon
NOUN: londonwhispers
ADJ: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: last
NOUN: chance
VERB: see
NOUN: installations
NOUN: tonight
NOUN: miss
NOUN: flamingoflyway
NOUN: nightlife
NOUN: postcardslond1
NOUN: piccadillycircus
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: londonlumiere
NOUN: lumiere
NOUN: london
NOUN: wattsgallery
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
NOUN: physicalenergy
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: child
NOUN: hood
NOUN: lumiere
NOUN: lumierelondon
NOUN: trafalgarsquare
NOUN: trafalgar
ADV: square
ADV: niamaelynel
ADJ: easy
NOUN: way
VERB: get
ADJ: free
NOUN: followers
NOUN: newcastle
X: fontwell
X: crz_mankai8
X: awesmoeb
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: easy
NOUN: way
VERB: get
ADJ: free
NOUN: followers
NOUN: newcastle
X: fontwell
X: crz_mankai8
X: awesmoeb
X: adithatsme
VERB: cool
ADJ: last
NOUN: night
ADV: granary
ADJ: square
NOUN: westminster
NOUN: abbey
VERB: lumiere
ADJ: london
ADJ: impossible
NOUN: project
NUM: 1
NOUN: polaroidorignls
NOUN: type
NUM: 600
NOUN: film
NOUN: exposure
NOUN: f22
NUM: 15
NOUN: seconds
X: lumierelondon2018
X: edgillwhl
X: woundfull
NOUN: images
NOUN: wildlife
NOUN: leicestersquare
NOUN: london
NOUN: lumierefestival
NOUN: lights
VERB: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
NOUN: london
PRT: lumiere
NOUN: friends
NOUN: bench
NOUN: lumierelondon
NOUN: friendship
NOUN: ipreview
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: lumierelondon
VERB: leicestersquare
DET: a
NOUN: london
NOUN: travel
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: waterlight
NOUN: daan
NOUN: roosegaarde
NOUN: london
NOUN: kingcrossn1c
PRT: lumiere
NOUN: london
NOUN: london
NOUN: king
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: ivysohobrass
ADV: really
ADJ: excited
NOUN: staing
NOUN: tomorrow
NOUN: soho
VERB: miss
ADJ: playful
NOUN: lightbulb
NOUN: installation
NOUN: ganton
NOUN: street
ADP: around
NOUN: corner
PRON: us
VERB: carnaby
NOUN: soho
NOUN: lumierelondon
NOUN: carnabylondon
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: woundfull
NOUN: images
NOUN: wildlife
NOUN: leicestersquare
NOUN: london
NOUN: lumierefestival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: engineering
VERB: works
ADJ: final
NOUN: day
VERB: seems
ADP: like
ADV: really
NOUN: sma
NOUN: idea
NOUN: hell
VERB: organises
NOUN: things
DET: ldn_culture
NOUN: westminster
NOUN: mayfair
NOUN: soho
NOUN: southbank
NOUN: installation
NOUN: aichoketrust
NOUN: londonisopen
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: ldn_culture
NOUN: westminster
NOUN: mayfair
NOUN: soho
NOUN: southbank
NOUN: installation
NOUN: aichoketrust
NOUN: londonisopen
VERB: enjoyed
VERB: strolling
ADP: across
NOUN: city
VERB: taking
ADJ: different
NOUN: aworks
ADV: clairefurner
ADJ: fave
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: trafalgar
ADJ: square
ADJ: hypnotic
NOUN: iesphotos
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: flickr
X: iesphotos
X: cityatnight
NOUN: london
DET: a
NOUN: photography
NUM: 2018
NOUN: mrsmmain
NOUN: chance
PRT: go
VERB: see
NOUN: tomorrow
VERB: blown
PRT: away
NOUN: pictures
NOUN: justice
NOUN: thanks
VERB: aichoketrust
ADJ: harmonic
ADJ: poal
NOUN: st
ADJ: james
NOUN: church
ADJ: last
NOUN: chance
VERB: see
NOUN: tonight
NOUN: lumierelondon
NOUN: london
NOUN: tfl
NOUN: update
NOUN: tfltrafficnews
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
ADJ: fantastic
NOUN: evening
VERB: seeing
NOUN: light
DET: a
NOUN: works
ADV: tflbusales
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
NOUN: find
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: postcardslond1
X: lumiere
NOUN: london
NOUN: royalacademy
NOUN: love
NOUN: motion
NOUN: lumierelondon2018
NOUN: londonlumiere
NOUN: lumierelondon
VERB: getting
NOUN: spirit
ADJ: last
NOUN: day
PRT: lumiere
NOUN: london
NOUN: lumierelondon
NOUN: piccadillycircus
NOUN: tfltrafficnews
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
NOUN: tflbusales
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
VERB: travelling
NOUN: car
NOUN: bus
NOUN: evening
VERB: forget
VERB: switches
NUM: 17
NUM: 30
NOUN: roads
ADV: around
ADV: west
VERB: end
ADJ: south
NOUN: bank
NOUN: king
NOUN: cross
VERB: closed
NOUN: buses
VERB: diveed
NOUN: event
VERB: find
ADJ: sorry
VERB: missed
NOUN: year
ADV: least
VERB: make
NOUN: canary
NOUN: wharf
NOUN: winter
NOUN: lights
ADJ: last
NOUN: night
ADJ: amazing
NOUN: lumiere
NOUN: london
NOUN: royalacademy
NOUN: love
NOUN: motion
NOUN: lumierelondon2018
NOUN: londonlumiere
NOUN: lumierelondon
VERB: loving
NOUN: glissando
NOUN: action
NOUN: illumophonium
NOUN: lumierelondon2018
NOUN: time
NOUN: sta
VERB: talking
ADJ: amazing
NOUN: city
X: ldn
X: shahmbles
X: hi
X: sita
ADJ: brave
NOUN: weather
VERB: join
PRON: us
NUM: one
ADJ: last
NOUN: night
NOUN: fun
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: granary
ADJ: square
NOUN: lumierelondon
NOUN: london
NOUN: londontown
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: traveljunkiegrl
NOUN: night
NOUN: night
NOUN: london
DET: another
NOUN: day
VERB: sets
NUM: one
NOUN: evening
VERB: left
NOUN: wish
ADV: longer
ADJ: fun
NOUN: night
ADJ: last
NOUN: night
ADJ: brilliant
ADJ: light
NOUN: displays
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: greekphotoguy
NOUN: westminster
NOUN: abbey
NOUN: london
NOUN: londonbynight
NOUN: samsungs7
NOUN: nofilter
NOUN: cityscape
NOUN: urbana
NOUN: westminsterabbey
NOUN: timeoutlondon
NOUN: kingscrossn1c
NOUN: planning
NOUN: trip
VERB: keep
NOUN: eye
NOUN: visitlondon
NOUN: website
VERB: updates
ADJ: incredible
NOUN: installations
NOUN: year
ADJ: great
VERB: see
ADJ: many
NOUN: families
VERB: take
NOUN: look
ADV: culturallearning
ADJ: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: imakefings
VERB: looked
ADJ: brilliant
ADV: never
VERB: seen
ADJ: many
NOUN: people
VERB: leakestreet
NUM: one
NOUN: night
ADV: long
VERB: take
NUM: one
NOUN: video
NOUN: visitlondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: miss
NOUN: mader
NOUN: wiermann
NOUN: grabber
NOUN: computer
VERB: simulated
NOUN: version
ADJ: architectural
NOUN: creation
VERB: set
NOUN: backdrop
NOUN: coal
VERB: drops
NOUN: yard
NOUN: kingscrossn1c
NOUN: bamconstructuk
ADJ: last
NOUN: day
PRT: lumiere
ADJ: london
NOUN: check
ADJ: insta
NOUN: stories
ADJ: full
NOUN: tour
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
PUNCT: simonmanleyfco
NOUN: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
X: hea
VERB: warming
DET: a
NOUN: work
ADJ: royal
NOUN: academy
ADP: as
ADJ: london
NOUN: waltz
NOUN: piano
NOUN: mandela
NOUN: hands
VERB: visit
NOUN: website
VERB: see
NOUN: order
NOUN: prints
ADP: lumierelondon
NOUN: mandela
NOUN: statue
NOUN: lumiere
NOUN: westminsterabbey
NOUN: colour
NOUN: timeout
X: streetphotography
X: longexposure
X: weroamtheworl
X: lumière
NOUN: festival
NOUN: piccadillycircus
NOUN: building
NOUN: lights
NOUN: music
NOUN: video
NOUN: igerslondon
NOUN: lumierelondon2018
NOUN: thelondoneye
NOUN: waterlicht
NUM: one
ADJ: coolest
NOUN: things
ADV: ever
VERB: encountered
VERB: resembling
NOUN: something
NOUN: scifi
NOUN: movie
ADJ: brilliant
NOUN: work
VERB: sroosegaarde
DET: a
ADJ: light
NOUN: granarysquare
NOUN: kingscrossn1c
NOUN: london
NOUN: lumiere
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
NOUN: detail
NOUN: westminsterabbey
NOUN: westminster
NOUN: lumierelondon
VERB: lighting
ADJ: light
NOUN: colours
NOUN: tomdingleyphoto
VERB: snaps
NOUN: lumierelondon
NOUN: southbank
NOUN: chinatown
NOUN: westminsterabbey
NOUN: stjames
NOUN: london
NOUN: lovelondon
NOUN: piccadillyline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: piccadilly
NOUN: line
NOUN: king
NOUN: cross
NOUN: st
ADJ: pancras
NOUN: hyde
NOUN: park
NOUN: corner
ADJ: busy
NOUN: find
X: lumiere2018
X: southbank
X: leicestersquare
X: westminsterabbey
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: westminsterabbey
NOUN: westminster
NOUN: lumierelondon
NOUN: london
NOUN: lighting
NOUN: light
NOUN: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
NOUN: snapping
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: piccadilly
NOUN: line
NOUN: king
NOUN: cross
NOUN: st
ADJ: pancras
NOUN: hyde
NOUN: park
NOUN: corner
ADJ: busy
NOUN: find
ADP: behind
NOUN: scenes
VERB: shot
X: canonukandie
X: visitlondon
X: aichoketrust
X: southbanklondon
ADV: slightly
ADJ: obvious
ADV: still
ADJ: amazing
NOUN: westminster
NOUN: westminsterabbey
NOUN: light
NOUN: tfltravelales
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: weekend
NOUN: lighting
NOUN: capital
VERB: including
ADJ: physical
NOUN: energy
NOUN: royalacademy
VERB: make
ADJ: sure
VERB: see
NOUN: g f
NOUN: watts
ADJ: monumental
NOUN: sculpture
ADJ: new
ADJ: light
NOUN: tag
NOUN: wattsgallery
NOUN: photos
NOUN: watts
NOUN: physicalenergy
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
NOUN: flowers
X: lumierelondon
X: lumierelondon2018
X: lumiere
X: airheadhell
ADJ: last
NOUN: night
NOUN: lumierelondon2018
NOUN: nightlife
NOUN: leicestersquare
NOUN: lumiere
NOUN: lumierelondon
NOUN: leicester
ADJ: square
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
ADV: back
NOUN: tonight
NUM: 17
NUM: 30
ADJ: cold
NOUN: wrap
NOUN: warm
VERB: discover
NUM: 50
ADJ: dazzling
NOUN: installations
ADP: like
NOUN: child
NOUN: hood
NOUN: collectif
NOUN: coin
NOUN: trafalgarsquare
VERB: sponsored
ADV: zumtobel_light
ADJ: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: airheadhell
ADJ: national
NOUN: theatre
NOUN: lumierelondon2018
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: visitlondon
NOUN: yesterday
ADJ: wonderful
VERB: known
NOUN: turn
NUM: 10
NUM: 30
NOUN: wld
VERB: planned
ADJ: better
NOUN: see
VERB: saw
NOUN: timings
PRT: faqs
NOUN: page
NOUN: front
NOUN: page
NOUN: wld
VERB: helped
VERB: aichoke
ADJ: amazing
NOUN: installation
NOUN: pa
NUM: 2
NOUN: regents
NOUN: canal
NOUN: kings
VERB: cross
NOUN: glow
NOUN: london
NOUN: oxfordstreet
NOUN: bike
DET: lumierelondon
ADJ: brown
NOUN: ha
NOUN: gardens
VERB: get
ADJ: fun
NOUN: lumiere
NOUN: london
NUM: 2018
ADJ: last
NOUN: night
NOUN: londonlumiere
NOUN: london
NOUN: lumierelondon2018
VERB: lights
ADJ: fun
X: westminsterabbey
X: vivadentist
X: pinkparachute1
X: abbeycraft23
X: bestsellers_sx
X: freereinfamily
X: suttonarmshorn
X: thatpetplaceuk
X: daz600
X: moroccanrose_
X: discovergather
ADJ: amazing
NOUN: installation
NOUN: pa
NUM: 1
NOUN: regents
NOUN: canal
NOUN: kings
VERB: cross
NOUN: igerslondon
NOUN: london
NOUN: visionlondon
NOUN: ilovelondon
NOUN: timeoutlondon
NOUN: ilovelondon
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: nohernline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: nohern
NOUN: line
NOUN: euston
NOUN: waterloo
ADJ: busy
VERB: find
ADJ: tiny
NOUN: taste
ADJ: amazing
NUM: 2018
ADJ: appropriate
NOUN: piece
VERB: called
NOUN: child
NOUN: hood
VERB: feel
ADP: like
NOUN: child
VERB: seeing
VERB: flickering
ADJ: white
NOUN: balloons
VERB: dancing
NOUN: music
NOUN: amp
NOUN: wind
NOUN: everyone
NOUN: fun
VERB: including
NOUN: hatmanoflondon
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: nohern
NOUN: line
NOUN: euston
NOUN: waterloo
ADJ: busy
NOUN: find
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
X: mrg48
NOUN: images
VERB: take
NOUN: leicester
ADJ: square
NOUN: photograghy
NOUN: london
NOUN: lumierelondon
NOUN: ivysohobrass
ADV: really
ADJ: excited
NOUN: staing
NOUN: tomorrow
NOUN: soho
VERB: miss
ADJ: playful
NOUN: lightbulb
NOUN: installation
NOUN: ganton
NOUN: street
ADP: around
NOUN: corner
PRON: us
VERB: carnaby
NOUN: soho
NOUN: lumierelondon
NOUN: carnabylondon
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: flickr
NOUN: london
DET: a
NOUN: photography
NOUN: reed_claire
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: spectacular
ADJ: last
NOUN: night
NOUN: ivysohobrass
ADV: really
ADJ: excited
NOUN: staing
NOUN: tomorrow
NOUN: soho
VERB: miss
ADJ: playful
NOUN: lightbulb
NOUN: installation
NOUN: ganton
NOUN: street
ADP: around
NOUN: corner
PRON: us
VERB: carnaby
NOUN: soho
NOUN: lumierelondon
NOUN: carnabylondon
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: flickr
X: iesphotos
X: cityatnight
NOUN: london
DET: a
NOUN: photography
NOUN: lumiere
NOUN: london
NOUN: point
ADJ: last
NOUN: night
ADJ: amazing
NOUN: westminster
NOUN: abbey
VERB: looking
ADJ: spectacular
ADJ: last
NOUN: night
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: last
NOUN: chance
NOUN: tonight
VERB: rediscover
NOUN: city
PRT: lumiere
ADJ: london
ADJ: hot
NOUN: tip
NOUN: king
NOUN: cross
ADJ: last
NOUN: night
VERB: packed
NOUN: people
PRT: csm_news
NOUN: background
ADJ: wonderful
NOUN: events
ADV: tfltravelales
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: jubilee
NOUN: line
NOUN: baker
NOUN: street
NOUN: waterloo
ADJ: busy
NOUN: find
NOUN: mrg48
NOUN: images
VERB: take
NOUN: leicester
ADJ: square
NOUN: photograghy
NOUN: london
NOUN: lumierelondon
VERB: loved
ADJ: last
NOUN: night
NUM: 2018
NOUN: trafalgar
NOUN: square
VERB: looks
ADV: pretty
ADJ: white
NOUN: balloon
NOUN: lights
VERB: scattered
ADP: around
VERB: emitting
NOUN: dancing
NOUN: lights
NOUN: music
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: mrg48
NOUN: images
VERB: take
NOUN: leicester
ADJ: square
NOUN: photograghy
NOUN: london
NOUN: lumierelondon
NOUN: lumiere
NOUN: london
NUM: 2018
VERB: illuminated
NOUN: umbrellas
NOUN: regent
NOUN: street
NOUN: piccadilly
NOUN: light
NOUN: festival
VERB: walk
X: lumierelondon
X: lumierelondon2018
X: lumiere
VERB: saw
NUM: 20
NOUN: exhibits
ADJ: last
NOUN: night
NOUN: brrrrr
VERB: missed
NOUN: cuties
NOUN: thanks
NOUN: pic
NOUN: badgermoon
NOUN: stopthecull
NOUN: tfltravelales
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
VERB: find
ADJ: nice
NOUN: coverage
NOUN: cosmoscope
NOUN: al
NOUN: jazeera
NUM: one
NOUN: night
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: tfltravelales
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: oh
X: gee
VERB: wait
NOUN: go
NOUN: check
ADV: later
VERB: looks
NOUN: window
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: neon
NOUN: bike
NOUN: pa
NOUN: exhibition
VERB: taking
NOUN: place
NOUN: london
NOUN: tonight
ADJ: last
NOUN: chance
NOUN: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
DET: a
NOUN: visitlondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: waterlicht
NOUN: sroosegaarde
ADV: simply
ADJ: stunning
NOUN: kingscrossn1c
VERB: inspired
VERB: changing
NOUN: relationship
NOUN: water
ADJ: additional
ADJ: suppo
ADJ: royal
NOUN: netherlands
NOUN: embassy
NOUN: csm_news
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
X: pa
X: oh
X: man
ADV: really
VERB: hope
NOUN: stops
VERB: raining
VERB: snowing
NOUN: run
NOUN: check
NOUN: southbank
NOUN: circleline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: centralline
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: line
NOUN: holborn
NOUN: marble
ADJ: arch
ADJ: busy
ADJ: paicularly
NOUN: oxford
NOUN: circus
VERB: find
NOUN: tfltravelales
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: southbanklondon
NOUN: miss
NOUN: chance
VERB: enjoy
ADJ: special
NOUN: offer
NOUN: oxo_tower
NUM: 3
NOUN: courses
NOUN: amp
NOUN: cocktail
NUM: 36
NOUN: find
NOUN: amp
VERB: discover
ADJ: great
NOUN: lumiere
VERB: offers
NOUN: gt
NOUN: brightnights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: line
NOUN: holborn
NOUN: marble
ADJ: arch
ADJ: busy
ADJ: paicularly
NOUN: oxford
NOUN: circus
VERB: find
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
ADJ: central
NOUN: london
NOUN: lines
NOUN: stations
ADJ: busy
NOUN: find
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
NOUN: lumierelondon
NOUN: londonisopen
NOUN: sadiqkhan
NOUN: mayoroflondon
NOUN: aichoketrust
NOUN: miss
NOUN: chance
VERB: enjoy
ADJ: special
NOUN: offer
NOUN: oxo_tower
NUM: 3
NOUN: courses
NOUN: amp
NOUN: cocktail
NUM: 36
NOUN: find
NOUN: amp
VERB: discover
ADJ: great
NOUN: lumiere
VERB: offers
NOUN: gt
NOUN: brightnights
VERB: lumierelondon
ADJ: excellent
ADJ: light
NOUN: exhibit
NOUN: leicester
ADJ: square
ADJ: christchurchn14
NOUN: woody
DET: vicaragecat
VERB: says
VERB: stay
ADJ: warm
NOUN: afternoon
ADJ: brave
NOUN: winterweather
NOUN: epiphanytide
NOUN: carolservice
NUM: 6
NUM: 30
NOUN: southgatechoir
ADJ: candlelit
NOUN: eye
VERB: love
NOUN: london
NOUN: pre
NOUN: dusk
ADJ: magic
NOUN: atmosphere
ADP: along
NOUN: river
NOUN: thames
NOUN: london
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADV: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
VERB: snapping
NOUN: londonviewpts
NOUN: tonight
NOUN: tomorrow
ADJ: last
NOUN: chance
VERB: watch
ADJ: new
NOUN: video
VERB: see
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: helbron
VERB: thanks
ADJ: second
ADJ: magical
NOUN: night
NOUN: lights
PRT: visitlondon
VERB: show
X: lumierelondon
X: lumierelondon2018
X: visitlondon
X: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
VERB: snapping
NOUN: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
VERB: snapping
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: tomdingleyphoto
VERB: snaps
NOUN: lumierelondon
NOUN: southbank
NOUN: chinatown
NOUN: westminsterabbey
NOUN: stjames
NOUN: london
NOUN: lovelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
VERB: want
ADJ: brave
NOUN: snow
NOUN: check
ADJ: last
NOUN: day
NOUN: lumierelondon
NOUN: day
NOUN: brunch
NOUN: course
NOUN: aichoketrust
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
PRT: figuehisout
NOUN: london
VERB: turned
NOUN: city
VERB: sized
ADJ: sensory
NOUN: room
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: travelling
NOUN: tube
NOUN: evening
VERB: forget
NOUN: switches
NUM: 17
NUM: 30
NOUN: district
NOUN: line
NOUN: victoria
NOUN: embankment
ADJ: busy
NOUN: find
NOUN: wright1carole
ADJ: light
ADJ: yonder
NOUN: window
VERB: breaks
NOUN: romeo
NOUN: amp
NOUN: juliet
X: shakespearesunday
X: walk1000miles
X: londonisopen
X: lovelondonwalklondon
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADV: alifestylerebel
ADV: well
ADV: never
VERB: chance
NOUN: visit
NOUN: highlight
ADV: best
ADJ: light
NOUN: festival
VERB: taking
NOUN: london
NOUN: lumierelondon
NOUN: youtube
NOUN: blogger
NOUN: photographer
NOUN: visitlondon
NOUN: visitlondon
NOUN: createvictoria
NOUN: tomdingleyphoto
VERB: snaps
NOUN: lumierelondon
NOUN: southbank
NOUN: chinatown
NOUN: westminsterabbey
NOUN: stjames
NOUN: london
NOUN: lovelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: mrg48
NOUN: images
VERB: take
NOUN: leicester
ADJ: square
NOUN: photograghy
NOUN: london
NOUN: lumierelondon
VERB: snaps
NOUN: lumierelondon
NOUN: southbank
NOUN: chinatown
NOUN: westminsterabbey
NOUN: stjames
NOUN: london
NOUN: lovelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
VERB: spent
NOUN: yesterday
NOUN: evening
VERB: exploring
ADJ: light
NOUN: festival
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
VERB: lets
NOUN: use
NOUN: oppounity
VERB: save
ADJ: real
NOUN: thing
VERB: tighten
NOUN: loopholes
VERB: hunting
NOUN: laws
NOUN: pics
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: waterlicht
NOUN: london
NOUN: lumiere
NOUN: festival
NUM: 2018
NOUN: flickr
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
NOUN: 5to9traveller
NOUN: visitlondon
VERB: go
ADV: go
VERB: go
ADV: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: visitlondon
NOUN: londontheinside
ADJ: last
NOUN: day
PRT: go
VERB: get
VERB: snapping
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: westminsterabbey
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: biggsytravels
VERB: take
NOUN: bow
ADJ: many
NOUN: smiles
VERB: faces
NOUN: amp
ADV: rather
ADV: wonderfully
NOUN: lots
NOUN: people
VERB: talking
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: ioe_london
NOUN: check
NOUN: light
NOUN: festival
NOUN: weekend
VERB: including
NOUN: lots
NOUN: installations
ADJ: nearby
NOUN: fitzrovia
NOUN: king
NOUN: cross
NOUN: visitlondon
NOUN: aichoketrust
ADJ: last
NOUN: day
VERB: go
VERB: get
VERB: snapping
NOUN: images
VERB: take
NOUN: leicester
ADJ: square
NOUN: photograghy
NOUN: london
NOUN: lumierelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: royalacademy
NOUN: catch
NOUN: ra
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: tomorrow
NOUN: rhys
NOUN: coren
VERB: love
NOUN: motion
NOUN: light
NOUN: burlington
NOUN: house
ADJ: colourful
NOUN: matisse
ADJ: inspired
NOUN: animations
VERB: find
ADJ: latest
ADJ: central
NOUN: pas
VERB: herald
NOUN: listudenttravelaward
NOUN: crowe_photo
NOUN: dream
NOUN: cédric
NOUN: le
NOUN: borgne
NOUN: photo
NOUN: julian
NOUN: crowe
X: crowe_photo
X: visitlondon
X: aichoketrust
X: cedricleborgne
NOUN: london
X: lighta
X: streetphotography
X: streetphoto
X: nightphotography
X: londonlumiere
X: lumierelondon
X: lumierelondon2018
X: tktslondon
X: leicestersquare
NOUN: bloom
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: aichoketrust
NOUN: inspiringa
VERB: projected
NOUN: royalacademy
NOUN: aichoketrust
VERB: learn
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
VERB: took
NOUN: flight
NOUN: timelapse
NOUN: chevaliermiguel
NOUN: newwestend
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: krittstweets
VERB: heading
NOUN: tonight
NUM: 50
NOUN: installations
VERB: see
ADJ: top
NUM: 5
NOUN: installations
VERB: see
NOUN: gt
NOUN: visitlondon
NOUN: inlondon
NOUN: visitlondon
ADJ: final
NOUN: night
ADV: quite
NOUN: event
ADJ: many
NOUN: visitors
NOUN: weekend
VERB: thank
X: aichoketrust
X: visitlondon
X: lumierelondon2018
X: lumiere
X: lumierelondon
X: lightfestival
X: lighta
X: lightaist
X: lightinginstallation
X: sounda
NOUN: pics
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
VERB: lights
ADJ: brilliant
NUM: 3
NOUN: days
VERB: enjoying
DET: every
ADJ: single
NOUN: installation
NOUN: congratulations
NOUN: amp
ADJ: many
NOUN: thanks
ADV: aichoketrust
ADJ: involved
ADV: really
ADJ: outstanding
NOUN: give
NOUN: light
NOUN: lightontheirfeet
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: travelinglens
ADJ: cool
NOUN: hope
VERB: managed
NOUN: catch
NOUN: festival
ADJ: spectacular
NOUN: westminsterabbey
NOUN: detail
NOUN: lamp
NOUN: london
NOUN: lumière
ADJ: lumierefestival
NOUN: lights
NOUN: colours
NOUN: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
DET: chinatownlondon
NOUN: time
NOUN: life
NOUN: catch
NOUN: flamingoflyway
ADJ: last
NOUN: chance
VERB: ends
NOUN: tonight
NOUN: aichoketrust
NOUN: charity
NOUN: chinatownlondon
NOUN: aichoketrust
VERB: get
NOUN: insight
NOUN: magic
ADP: behind
NOUN: browse
NOUN: oppounities
NOUN: training
NOUN: jobs
ADP: across
NOUN: range
ADJ: exciting
NOUN: oppounities
ADJ: technicians_mih
NOUN: website
NOUN: techniciansmakeithappen
NOUN: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
X: tonyrdb
X: kingscross
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: talking
NOUN: umbrellas
NOUN: soho
NOUN: westminster
NOUN: abbey
NOUN: night
X: lumiere
X: nightlights
X: brightlights
X: londonbynight
X: badgerust
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: fox
NOUN: amp
NOUN: badger
NOUN: stars
ADJ: london
NOUN: festival
NOUN: lights
ADJ: amazing
NOUN: visitlondon
ADJ: next
NOUN: year
VERB: get
VERB: surrounding
NOUN: buildings
VERB: turn
NOUN: lights
NOUN: max
NOUN: impact
DET: lumiere
NOUN: london
NOUN: westminsterabbey
NOUN: westminster
NOUN: lightfeature
NOUN: lights
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
VERB: loving
NOUN: lights
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: hotelcaferoyal
ADJ: last
NOUN: day
NOUN: miss
NOUN: journey
NOUN: time
NOUN: space
NOUN: voyage
NOUN: hotelcaferoyal
NOUN: piccadillycircus
NOUN: lmaosuk
NOUN: visitlondon
NOUN: london
NOUN: londonlumiere
NOUN: wright1carole
ADJ: light
ADJ: yonder
NOUN: window
VERB: breaks
NOUN: romeo
NOUN: amp
NOUN: juliet
X: shakespearesunday
X: walk1000miles
X: londonisopen
X: lovelondonwalklondon
X: lizziemidd
NOUN: favourites
NOUN: yesterday
NOUN: evening
NOUN: tad
ADJ: chilly
NOUN: well
VERB: woh
VERB: visit
ADJ: good
NOUN: map
NOUN: visitlondon
NOUN: app
NOUN: southbanklondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: john_pahl
PRT: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
NOUN: krittstweets
VERB: heading
NOUN: tonight
NUM: 50
NOUN: installations
VERB: see
ADJ: top
NUM: 5
NOUN: installations
VERB: see
NOUN: gt
NOUN: visitlondon
NOUN: inlondon
NOUN: visitlondon
NOUN: today
ADJ: last
NOUN: day
VERB: make
NOUN: trip
ADV: south
NOUN: bank
VERB: see
ADJ: spectacular
ADJ: luminous
NOUN: installations
ADJ: handy
NOUN: guide
NOUN: gt
NOUN: westminsterabbey
NOUN: london
NOUN: lumière
NOUN: lumierefestival
NOUN: lights
NOUN: colours
NOUN: westminster
NOUN: facltd
NOUN: teams
ADJ: busy
NOUN: lumierelondon
NOUN: lumiere
NOUN: date
ADJ: critical
NOUN: care
NOUN: amp
ADJ: medical
NOUN: response
NOUN: teams
VERB: dealt
NOUN: calls
VERB: ranging
NOUN: breathing
NOUN: difficulties
NOUN: chest
NOUN: pain
NOUN: diabetic
VERB: collapses
NOUN: drug
NOUN: overdoses
VERB: keeping
NOUN: londoners
ADJ: safe
ADJ: eventprofs
ADJ: firstaid
NOUN: crowds
VERB: streaming
NOUN: watch
PRT: lumiere
NOUN: london
NOUN: king
NOUN: cross
ADV: sometimes
ADJ: best
NOUN: photos
ADJ: obvious
NOUN: ones
ADJ: kingscross
NOUN: atmosphere
NOUN: eventplanning
ADJ: bizarre
NOUN: see
NOUN: regentstreet
ADJ: picadilly
ADJ: london
ADJ: full
NOUN: people
ADP: instead
NOUN: traffic
NUM: one
NOUN: night
NOUN: london
NOUN: night
X: londonlife
X: londonlights
X: londoneye
X: lumiere
X: nightlights
X: mpsprinces
NOUN: team
VERB: keeping
NOUN: princes
ADJ: safe
PRON: us
VERB: patrolling
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
NOUN: tonight
ADJ: last
NOUN: chance
VERB: see
ADJ: fab
ADJ: light
NOUN: designs
NOUN: performances
NOUN: london
NOUN: lumiere
NUM: 2018
VERB: see
NOUN: thames
VERB: pulse
ADJ: mondrian
NOUN: hotel
NOUN: sea
NOUN: containers
VERB: house
VERB: translating
ADJ: live
NOUN: data
NOUN: health
NOUN: river
NOUN: light
NOUN: displays
CONJ: plus
ADJ: much
NOUN: westminsterabbey
NOUN: london
NOUN: lumière
NOUN: lumierefestival
NOUN: lights
NOUN: colours
NOUN: westminster
X: londongramer
X: westminsterabbey
VERB: lit
ADV: wonderfully
VERB: captured
NOUN: jhinlondon
NOUN: thisislondon
NOUN: bakerlooline
NOUN: oxford
NOUN: circus
NOUN: piccadilly
NOUN: circus
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADV: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
NOUN: victorialine
NOUN: oxford
NOUN: circus
NOUN: king
NOUN: cross
NOUN: st
NOUN: pancras
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADV: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
NOUN: ivysohobrass
ADV: really
ADJ: excited
NOUN: staing
NOUN: tomorrow
NOUN: soho
VERB: miss
ADJ: playful
NOUN: lightbulb
NOUN: installation
NOUN: ganton
NOUN: street
ADP: around
NOUN: corner
PRON: us
VERB: carnaby
NOUN: soho
NOUN: lumierelondon
NOUN: carnabylondon
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: muffled1
NOUN: droplets
ADJ: full
NOUN: flow
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
X: lumierelondon
X: lighta
X: lightaist
X: lightinstallations
X: installationa
X: alovers
X: raindrops
NOUN: droplets
DET: muffled1
NOUN: droplets
VERB: running
NOUN: sound
VERB: resonates
ADV: nicely
ADJ: couyard
NOUN: lumierelondon
NOUN: aichoke
NOUN: lights
NOUN: camera
NOUN: action
NOUN: lumierelondon
NOUN: aichoketrust
VERB: check
ADJ: latest
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: photos
NOUN: friday
NOUN: night
NOUN: king
NOUN: cross
NOUN: london
NOUN: lumierelondon2018
NOUN: lituplondon
NOUN: ldnlumiere
NOUN: southbank
NOUN: water
NOUN: rivehames
NOUN: london
VERB: se1
ADJ: south
NOUN: bank
NOUN: london
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: aichoketrust
X: ten
ADJ: top
NOUN: installations
VERB: explore
ADJ: south
NOUN: bank
NOUN: amp
NOUN: waterloo
ADV: back
NUM: 17
NUM: 30
NOUN: evening
X: southbankbid
X: southbankcentre
X: wearewaterloouk
X: leakestarches
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: last
NOUN: night
ADV: finally
VERB: got
NOUN: meet
NOUN: nads
NOUN: foy
NOUN: coventgarden
VERB: see
ADJ: little
NOUN: bit
NUM: 2018
ADJ: mesmerising
NOUN: piece
VERB: called
NOUN: child
NOUN: hood
NOUN: trafalgar
ADJ: square
NOUN: rain
VERB: makes
ADJ: dramatic
NOUN: reflection
NOUN: water
VERB: added
DET: another
NOUN: dimension
NOUN: westminsterabbey
NOUN: colours
NOUN: lights
DET: lumière
VERB: lumierefestival
NOUN: westminster
NOUN: abbey
NOUN: ghosts
NOUN: kingscross
NOUN: igerslondon
NOUN: london
NOUN: visionlondon
NOUN: ilovelondon
NUM: ten
ADJ: top
NOUN: installations
VERB: explore
ADJ: south
NOUN: bank
NOUN: amp
NOUN: waterloo
ADV: back
NUM: 17
NUM: 30
NOUN: evening
X: southbankbid
X: southbankcentre
X: wearewaterloouk
X: leakestarches
X: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: krittstweets
VERB: heading
NOUN: tonight
NUM: 50
NOUN: installations
VERB: see
ADJ: top
NUM: 5
NOUN: installations
VERB: see
NOUN: gt
NOUN: visitlondon
NOUN: inlondon
NOUN: visitlondon
NOUN: wave
NOUN: london
NOUN: lumiere
NOUN: festival
NUM: 2018
NOUN: flickr
DET: a
NOUN: lighta
NOUN: canonukandie
NOUN: eos6dm2
NOUN: canon
NOUN: festival
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: ceainly
VERB: enjoyed
NOUN: year
ADJ: great
NOUN: evening
NOUN: family
NOUN: photography
NOUN: event
NOUN: london
NOUN: kingscross
NOUN: ccampbellmusic
ADV: maybe
ADJ: pink
NOUN: neon
NOUN: bike
NOUN: idea
NOUN: lumierelondon2018
NOUN: lumierelondon
NOUN: visitlondon
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: childrenandas
NOUN: trafalgar
ADJ: square
NOUN: lights
VERB: opens
ADJ: london
NOUN: landmarks
VERB: lit
NOUN: colour
ADJ: next
NUM: four
NOUN: days
NOUN: gt
NOUN: gt
NOUN: gt
NOUN: lumiere
NOUN: lighta
NOUN: lighting
NOUN: kingscross
NOUN: southbank
NOUN: westminsterabbey
NOUN: london
NOUN: england
NOUN: unitedkingdom
NOUN: greatbritain
NUM: 2018
VERB: called
NOUN: asalto
NOUN: london
ADV: cleverly
VERB: done
X: lumierelondon2018
X: lumierelondon
X: visitlondon
NOUN: photos
NOUN: yesterdays
VERB: lumiere
NOUN: london
NOUN: beaut
VERB: love
NOUN: city
NOUN: time
NOUN: life
NOUN: catch
NOUN: flamingoflyway
ADJ: last
NOUN: chance
VERB: ends
NOUN: tonight
NOUN: aichoketrust
NOUN: charity
NOUN: chinatownlondon
VERB: seen
NOUN: bottle
NOUN: festoon
NOUN: south
NOUN: bank
NOUN: mayfair
NOUN: king
NOUN: cross
ADV: yet
ADJ: last
NOUN: chance
NOUN: tonight
VERB: see
NOUN: chandeliers
VERB: made
VERB: used
NOUN: plastic
NOUN: bottles
VERB: sponsored
NOUN: veoliauk
NOUN: afterdark
ADJ: great
NOUN: pop
VERB: see
NOUN: gordonramsaygrp
VERB: visiting
NOUN: today
ADJ: helpful
NOUN: map
VERB: get
ADV: around
VERB: mayfair
NOUN: something
ADJ: quick
NOUN: pick
NOUN: mazerestaurant
ADJ: young
NOUN: child
VERB: stares
NOUN: awe
NOUN: aquarium
NOUN: lumiere
NOUN: festival
VERB: lumiere
VERB: spotted
ADP: 7dialslondon
ADJ: iconic
ADJ: red
NOUN: telephone
NOUN: box
VERB: turned
NOUN: aquarium
NOUN: pa
NOUN: experience
ADJ: sensory
NOUN: stroll
ADP: around
ADJ: unusual
NOUN: field
X: entre
X: les
X: rangs
NOUN: rami
X: bebawi
X: kanva
NOUN: installation
VERB: features
NOUN: thousands
VERB: illuminated
NOUN: flower
ADP: like
NOUN: reflectors
ADV: still
NOUN: time
NOUN: catch
NOUN: pa
NOUN: visit
NOUN: kingscrossn1c
NOUN: tonight
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: sketch
NOUN: kingscross
NOUN: london
ADJ: close
NOUN: oxfordcircus
NOUN: lumierelondon
NOUN: lighting
NOUN: light
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: town
NOUN: today
PRT: lumiere
NOUN: london
NOUN: treat
NOUN: bloomsbury
NOUN: tea
NOUN: charlotte
NOUN: st
NOUN: hotel
VERB: warming
ADJ: delicious
NOUN: amp
ADV: frankly
VERB: ticks
DET: every
NOUN: box
ADV: ahead
ADJ: last
NOUN: night
NOUN: london
NOUN: light
NOUN: show
NOUN: teatime
NOUN: sundayfeels
VERB: indulge
DET: another
NOUN: favourites
NOUN: oxfordcircus
NOUN: lumierelondon
NOUN: lighting
NOUN: light
NOUN: colours
ADV: simply
ADJ: wonderful
VERB: looking
ADV: forward
VERB: seeing
NOUN: tonight
ADV: regardless
NOUN: weather
VERB: makes
NUM: one
ADJ: proud
NOUN: londoner
NOUN: x
NOUN: aichoketrust
NOUN: visitlondon
NOUN: mayoroflondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
DET: lumiere
VERB: follow
NOUN: instagram
NOUN: thestevestubbs
NOUN: photography
NOUN: shenanigans
ADJ: various
NOUN: bits
VERB: bobs
NOUN: instagram
VERB: admire
ADJ: vivid
NOUN: tubes
ADJ: fluorescent
NOUN: light
VERB: grow
NOUN: facade
NOUN: mayfair
NOUN: building
VERB: climbing
ADP: like
NOUN: ivy
NOUN: wall
ADJ: last
NOUN: chance
VERB: see
NOUN: bough
NUM: 3
ADJ: british
NOUN: aist
NOUN: lighting
NOUN: designer
NOUN: simon
NOUN: corder
NOUN: evening
VERB: sponsored
X: cain_int
X: dontmissout
X: lumiere
NOUN: london
ADJ: last
NOUN: night
NOUN: fraction
NOUN: show
NOUN: arabella
NOUN: dorman
VERB: suspended
NOUN: st
ADJ: james
NOUN: church
VERB: uses
NOUN: clothes
NOUN: shoes
VERB: discarded
NOUN: refugees
NOUN: arrival
NOUN: greece
VERB: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
ADJ: little
NOUN: bit
ADJ: victorialine
NOUN: oxford
NOUN: circus
NOUN: king
NOUN: cross
NOUN: st
NOUN: pancras
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADP: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
ADV: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: lumierelondon
NOUN: lovecamden
NOUN: today
ADJ: last
NOUN: day
ADJ: sad
VERB: see
NOUN: go
NOUN: pop
NOUN: today
NOUN: fill
NOUN: light
DET: a
VERB: passing
NOUN: kings
VERB: cross
NOUN: check
ADJ: amazing
NOUN: sculptures
ADP: across
NOUN: city
NOUN: aichoketrust
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
ADJ: last
NOUN: day
NOUN: today
VERB: heading
NOUN: capital
X: please
VERB: plan
ADJ: journey
NOUN: advance
NOUN: tube
NOUN: stations
ADJ: close
NOUN: atttractions
ADV: exceptionally
ADJ: busy
ADJ: tfl
NOUN: travel
NOUN: info
NOUN: textbtp
NUM: 61016
VERB: need
PRON: us
ADJ: awesome
VERB: looking
NOUN: pieces
DET: aichoketrust
VERB: loving
NOUN: photographs
NUM: 2018
NOUN: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: aichoketrust
VERB: learn
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
VERB: took
NOUN: flight
NOUN: timelapse
NOUN: chevaliermiguel
NOUN: newwestend
NOUN: folks
ADV: still
NOUN: time
VERB: explore
ADJ: dazzling
NOUN: display
NOUN: rainbow
NOUN: light
NOUN: lumierelondon
NOUN: today
NOUN: january
VERB: filled
ADJ: much
NOUN: blues
NOUN: lumierelondon
NOUN: lovelondon
NOUN: oxford
NOUN: circus
NOUN: king
NOUN: cross
NOUN: st
NOUN: pancras
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADV: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: srmlondon
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
ADV: still
VERB: buzzing
NOUN: whizz
ADP: around
VERB: stunning
ADJ: last
NOUN: night
ADP: like
NOUN: treasure
NOUN: hunt
ADJ: beautiful
NOUN: city
CONJ: eah
VERB: loved
NOUN: london
X: lumierelondon
X: londonisopen
X: sadiqkhan
X: mayoroflondon
X: aichoketrust
X: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: wearewaterloouk
NOUN: reimagine
NOUN: london
NOUN: architecture
VERB: see
NOUN: city
ADJ: new
NOUN: light
NOUN: lumierelondon
NOUN: aichoketrust
ADJ: beautiful
NOUN: reflektor
ADJ: studioroso
NOUN: shame
NOUN: sunglasses
NOUN: st
NOUN: james
NOUN: market
X: x
X: visitlondon
X: aichoketrust
X: lumierelondon
X: a
X: streeta
X: lightfestival
X: wearewaterloouk
X: reimagine
NOUN: london
NOUN: architecture
VERB: see
NOUN: city
ADJ: new
NOUN: light
NOUN: lumierelondon
NOUN: aichoketrust
ADJ: final
NOUN: evening
VERB: visited
ADV: yet
VERB: make
ADJ: sure
VERB: come
NOUN: kingscrossn1c
VERB: see
ADJ: stunning
NOUN: installations
VERB: sadiqkhan
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
VERB: reimagine
NOUN: london
NOUN: architecture
VERB: see
NOUN: city
ADJ: new
NOUN: light
X: lumierelondon
X: aichoketrust
X: fiftyminus2
X: westminsterabbey
X: ooh
ADJ: breathtaking
ADJ: last
NOUN: day
NOUN: today
NOUN: lot
VERB: walking
VERB: involved
NOUN: go
NOUN: take
NOUN: tube
ADP: woh
VERB: seeing
VERB: ooh
VERB: drop
NOUN: gin
NOUN: majesty
VERB: ooh
ADJ: glad
VERB: enjoyed
ADJ: bigger
ADJ: brighter
ADJ: bolder
NOUN: tonight
ADJ: last
NOUN: night
NOUN: miss
NOUN: londonisopen
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
ADJ: lovely
NOUN: evening
NOUN: visitlondon
ADJ: last
NOUN: night
VERB: soak
ADJ: luminous
NOUN: atmosphere
VERB: crowds
ADJ: good
ADJ: natured
VERB: visiting
NOUN: today
ADJ: helpful
NOUN: map
VERB: get
ADV: around
VERB: mayfair
NOUN: something
ADJ: quick
NOUN: pick
VERB: visiting
NOUN: today
ADJ: helpful
NOUN: map
VERB: get
ADV: around
VERB: mayfair
NOUN: something
ADJ: quick
NOUN: pick
NOUN: mazerestaurant
NOUN: love
NOUN: motion
NOUN: pa
ADJ: royal
NOUN: academy
ADP: as
ADJ: londontheinside
ADJ: bloody
ADJ: brilliant
NOUN: get
VERB: ends
NOUN: tomorrow
NOUN: lumiere
NOUN: lunierelondon2018
NOUN: lumierelondon
NOUN: lumierelondon
NOUN: pics
VERB: lighting
NOUN: london
NOUN: aichoketrust
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NUM: 2018
NOUN: light
NOUN: spirit
NOUN: chapter
NUM: 2
VERB: shows
ADJ: beautiful
NOUN: amp
ADJ: intricate
NOUN: colours
ADV: slowly
VERB: fading
NOUN: reappearing
VERB: changing
NOUN: hues
NOUN: images
VERB: mesmerising
ADJ: official
NOUN: parking
NOUN: paner
NOUN: qparkuk
VERB: offering
NUM: 15
NOUN: parking
NOUN: london
NOUN: car
NOUN: parks
VERB: use
NOUN: promo
NOUN: code
NOUN: lumiere15
NOUN: pre
VERB: booking
ADJ: online
NOUN: london
VERB: puts
ADV: pretty
ADJ: good
NOUN: light
NOUN: show
NOUN: year
NOUN: round
NOUN: lumierelondon
NOUN: deliacazzato
X: wow
ADJ: beautiful
NOUN: westminsterabbey
ADJ: good
NOUN: morning
NOUN: dee
ADJ: beautiful
NOUN: want
VERB: attend
ADV: long
ADV: hopefully
NOUN: majesty
NOUN: attendance
NOUN: pop
NOUN: gin
ADJ: happy
NOUN: sunday
NOUN: x
VERB: managed
NOUN: catch
ADJ: last
NOUN: chance
NOUN: today
ADP: woh
VERB: braving
ADJ: chill
ADJ: great
NOUN: evening
VERB: checking
ADJ: bright
NOUN: lights
ADV: westminsterabbey
ADJ: foxy
NOUN: bulbs
DET: traveljunkiegrl
VERB: made
NOUN: tonnes
ADJ: empty
NOUN: plastic
NOUN: bottles
VERB: rose
NOUN: window
ADP: outside
NOUN: westminster
NOUN: cathedral
ADJ: epic
NOUN: london
VERB: treated
NOUN: weekend
ADJ: beautiful
VERB: dancing
NOUN: couple
NUM: one
NOUN: favourites
PRT: royalacademy
ADJ: last
NOUN: night
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: last
NOUN: day
NOUN: lumierelondon
ADP: like
NOUN: retweet
VERB: seen
ADJ: beautiful
NOUN: instalments
ADP: around
NOUN: london
VERB: come
NOUN: amp
VERB: see
NOUN: lights
NOUN: today
ADV: late
VERB: find
ADJ: nearest
NOUN: ping
NOUN: pong
NOUN: amp
NOUN: order
VERB: flashing
ADJ: paparazzi
NOUN: cocktail
NOUN: visitlondon
VERB: wait
VERB: go
X: aichoketrust
X: lumierelondon2018
X: visitlondon
X: lovecamden
NOUN: today
ADJ: last
NOUN: day
ADJ: sad
VERB: see
NOUN: go
NOUN: pop
NOUN: today
NOUN: fill
NOUN: light
DET: a
VERB: passing
NOUN: kings
VERB: cross
NOUN: check
ADJ: amazing
NOUN: sculptures
ADP: across
NOUN: city
NOUN: aichoketrust
VERB: londontown
ADV: absolutely
VERB: buzzing
ADJ: last
NOUN: night
ADV: much
VERB: see
ADJ: paicularly
NOUN: newwestend
VERB: watch
NOUN: origin
NOUN: world
NOUN: bubble
VERB: installed
NOUN: oxford
NOUN: circus
NOUN: morn
NOUN: fiftyminus2
ADJ: lovely
NOUN: friend
VERB: ooh
ADJ: marvellous
NOUN: buckinghampalace
NOUN: night
NOUN: ooh
PRT: ooh
NOUN: london
VERB: came
ADJ: alive
NOUN: lights
VERB: went
NOUN: dannycazzato
NOUN: today
ADJ: last
NOUN: day
ADJ: sad
VERB: see
NOUN: go
NOUN: pop
NOUN: today
NOUN: fill
NOUN: light
DET: a
VERB: passing
NOUN: kings
VERB: cross
NOUN: check
ADJ: amazing
NOUN: sculptures
ADP: across
NOUN: city
NOUN: aichoketrust
NOUN: hotelcaferoyal
ADJ: last
NOUN: day
NOUN: miss
NOUN: journey
NOUN: time
NOUN: space
NOUN: voyage
NOUN: hotelcaferoyal
NOUN: piccadillycircus
NOUN: lmaosuk
NOUN: visitlondon
NOUN: london
NOUN: londonlumiere
VERB: doublemacbex
ADJ: many
ADJ: awesome
NOUN: light
NOUN: installations
DET: kingscrossn1c
NOUN: year
NUM: 2018
ADJ: light
NOUN: spirit
NOUN: chapter
NUM: 1
NOUN: westminster
NOUN: abbey
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: collection
NOUN: flickr
VERB: lights
DET: a
NOUN: london
NOUN: robbingham
ADJ: giant
NOUN: nightingale
NOUN: berkeley
NOUN: square
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
VERB: lumiere
NOUN: people
VERB: force
NOUN: yesterday
NOUN: night
ADJ: central
ADJ: london
NOUN: sight
NOUN: props
NOUN: aichoketrust
NOUN: visitlondon
ADJ: impressive
NOUN: work
VERB: putting
NOUN: year
NOUN: event
PRON: us
VERB: enjoy
NOUN: trappedinzoneone
NOUN: wright1carole
ADJ: light
ADJ: yonder
NOUN: window
VERB: breaks
NOUN: romeo
NOUN: amp
NOUN: juliet
X: shakespearesunday
X: walk1000miles
X: londonisopen
X: lovelondonwalklondon
X: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: let
VERB: put
VERB: seeing
NOUN: imakefings
NOUN: santiago
VERB: leakestreet
NUM: one
NOUN: installations
ADV: undercover
VERB: stay
ADJ: dry
NOUN: enjoy
NOUN: newwestend
VERB: go
NOUN: motions
VERB: love
NOUN: royalacademy
NOUN: rhyscoren
NOUN: installation
X: lumierelondon
X: aichoketrust
X: holbid
X: grosvenor_gbi
X: thewpa
X: thecrownestate
VERB: watch
NOUN: origin
NOUN: world
NOUN: bubble
VERB: installed
NOUN: oxford
NOUN: circus
NOUN: zahidtg
VERB: went
NOUN: yesterday
ADJ: amazing
NOUN: use
NOUN: lighting
NOUN: westminster
NOUN: abbey
NOUN: fish
NOUN: tank
NOUN: phone
NOUN: box
ADJ: clever
NOUN: love
NOUN: motion
ADJ: royal
NOUN: academy
ADP: as
NOUN: lumierelondon
NOUN: control
NOUN: control
NOUN: daniel
VERB: iregui
DET: another
ADJ: smaller
ADJ: favourite
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: whitfield
NOUN: gardens
NOUN: olympus
NOUN: omd
NOUN: em1
NOUN: 8mm
NOUN: f1
NUM: 8
NOUN: fisheye
NOUN: olympus
X: aichoketrust
X: olympusuk
ADJ: best
NOUN: rest
NOUN: stjamessquare
NOUN: lumierelondon
NOUN: lighting
NOUN: colours
NOUN: trees
ADJ: light
NOUN: hook
NOUN: phone
NOUN: line
NOUN: sinker
NOUN: covent
NOUN: garden
NOUN: x
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
NOUN: lightfestival
VERB: lumierelondon
DET: a
X: streeta
X: redphonebox
X: lumiere
NOUN: london
NOUN: voyage
X: lumierelondon
X: postcardslond1
X: piccadillycircus
X: postcardslond1
X: piccadillycircus
ADJ: close
NOUN: ups
X: wondrousness
X: lumierelondon
X: stjamessquare
NOUN: lighting
NOUN: colour
NOUN: trees
PRT: lumiere
ADJ: london
ADJ: wonderful
NOUN: experience
DET: a
ADJ: light
NOUN: iamcaermoore
NOUN: london
NOUN: mess
ADV: around
VERB: comes
ADJ: public
DET: a
ADJ: impressed
NOUN: lumierelondon
NOUN: lighting
NOUN: stjamessquare
NOUN: colours
NOUN: trees
VERB: took
ADJ: many
NOUN: photos
VERB: going
NOUN: sta
ADJ: favourite
ADJ: absolute
NOUN: masterpiece
VERB: learn
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
VERB: took
NOUN: flight
NOUN: timelapse
NOUN: chevaliermiguel
NOUN: newwestend
NOUN: traveljunkiegrl
VERB: made
NOUN: tonnes
ADJ: empty
NOUN: plastic
NOUN: bottles
VERB: rose
NOUN: window
ADP: outside
NOUN: westminster
NOUN: cathedral
NOUN: epic
ADV: ceainly
ADJ: enchanting
NOUN: piece
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: chinatown
NOUN: x
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
NOUN: lightfestival
VERB: lumierelondon
DET: a
NOUN: streeta
NUM: one
ADJ: fun
NOUN: exhibits
ADJ: last
NOUN: night
PRT: lumiere
ADJ: london
ADJ: fun
NOUN: stroll
ADJ: last
NOUN: night
VERB: see
NOUN: exhibition
NOUN: lovelondon
VERB: check
ADJ: futuristic
NOUN: rave
ADP: like
NOUN: landscape
VERB: ask
NOUN: granary
NOUN: square
NOUN: guided_walks
ADV: yet
NOUN: sho
NOUN: video
ADJ: favourite
ADJ: light
NOUN: installation
VERB: got
VERB: see
ADV: waterlicht
ADJ: dutch
NOUN: postcardslond1
NOUN: piccadillycircus
ADJ: gorgeous
NOUN: hedgehogs
NOUN: leicester
ADJ: square
NOUN: theatre
NOUN: guided_walks
ADV: yet
NOUN: sho
NOUN: video
NOUN: wright1carole
ADJ: light
ADJ: yonder
NOUN: window
VERB: breaks
NOUN: romeo
NOUN: amp
NOUN: juliet
X: shakespearesunday
X: walk1000miles
X: londonisopen
X: lovelondonwalklondon
X: sroosegaarde
X: aichoketrust
VERB: discover
NOUN: streetlife
NOUN: london
NOUN: granary
NOUN: square
DET: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
NOUN: hea
NOUN: sole
PRT: lumiere
ADJ: london
ADJ: south
NOUN: bank
NOUN: x
NOUN: visitlondon
NOUN: aichoketrust
NOUN: london
NOUN: lightfestival
NOUN: lumierelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: busy
NOUN: rainbow
X: birdcage
X: lumiere
X: lumierelondon
X: lumierelondonfestival
X: lumiere2018
X: lizziemidd
NOUN: favourites
NOUN: yesterday
NOUN: evening
NOUN: tad
ADJ: chilly
NOUN: well
VERB: woh
VERB: visit
ADJ: good
NOUN: map
NOUN: visitlondon
NOUN: app
NOUN: biggsytravels
VERB: mind
VERB: getting
ADJ: wet
NOUN: weekend
NOUN: check
ADV: already
NUM: two
NOUN: fun
VERB: filled
NOUN: days
VERB: ends
NOUN: tomorrow
VERB: check
NOUN: visitlondon
NOUN: info
ADJ: national
NOUN: gallery
NOUN: lumiere
NUM: 2018
NOUN: lumiere
NOUN: london
X: nationalgallery
X: timeoutlon
X: trafalgarsquare
X: londonbynight
X: samsungs7
X: nofilter
NOUN: cityscape
NOUN: urbana
VERB: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
ADJ: last
NOUN: day
NOUN: miss
NOUN: journey
NOUN: time
NOUN: space
NOUN: voyage
NOUN: hotelcaferoyal
NOUN: piccadillycircus
NOUN: lmaosuk
NOUN: visitlondon
NOUN: london
NOUN: londonlumiere
NOUN: st
NOUN: paul
NOUN: background
NOUN: light
NOUN: yonder
NOUN: window
VERB: breaks
NOUN: romeo
NOUN: amp
NOUN: juliet
X: shakespearesunday
X: walk1000miles
X: londonisopen
X: lovelondonwalklondon
X: timotolonen
VERB: came
ADV: back
VERB: catch
ADJ: second
NOUN: half
NOUN: thevoiceuk
NOUN: touch
VERB: involved
NOUN: twitter
NOUN: trends
ADV: ever
ADV: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: woh
VERB: braving
ADJ: cold
ADJ: last
NOUN: night
ADJ: beautiful
VERB: seen
ADV: yet
VERB: get
NOUN: tonight
X: aichoketrust
X: esgolondon
X: visitlondon
X: timeoutlondon
X: ldn
X: londonist
NOUN: oxford
NOUN: circus
NOUN: piccadilly
NOUN: circus
ADV: extremely
ADJ: busy
NOUN: evening
NOUN: spectators
ADJ: possible
NOUN: walk
ADV: nearby
NOUN: stations
VERB: travel
ADV: outside
NUM: 17
NUM: 30
NUM: 20
NUM: 00
NOUN: travel
NOUN: info
NUM: 2018
NOUN: piece
ADV: aesthetically
VERB: amp
ADV: physically
ADJ: exciting
ADJ: responsible
ADJ: light
NOUN: pedalling
NOUN: bikes
ADV: around
VERB: love
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: finally
ADJ: staed
NUM: 2018
ADJ: theatregoing
NOUN: yesterday
ADJ: busy
NUM: three
NOUN: show
NOUN: day
NOUN: harry
NOUN: potter
NOUN: hpplayldn
NOUN: pas
NUM: 1
NOUN: amp
NUM: 2
VERB: followed
X: thelatelateshow
X: sundayshowtunes
X: brasseriezedel
X: plus
NOUN: bit
VERB: see
NOUN: london
ADJ: less
NOUN: hop
NOUN: citycruises
NOUN: sightseeing
NOUN: boat
NUM: one
NOUN: piers
NUM: 10
NUM: 00
VERB: went
NOUN: yesterday
ADJ: amazing
NOUN: use
NOUN: lighting
NOUN: westminster
NOUN: abbey
NOUN: fish
NOUN: tank
NOUN: phone
NOUN: box
ADJ: clever
NOUN: droplets
ADJ: full
NOUN: flow
X: aichoketrust
X: lumierelondon
X: lumierelondon2018
X: lumierelondon
X: lighta
X: lightaist
X: lightinstallations
X: installationa
X: alovers
X: raindrops
NOUN: droplets
VERB: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADV: thelondoneye
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NUM: 2018
NOUN: shows
ADV: apiece
VERB: works
NOUN: pedal
NOUN: power
NOUN: cyclists
ADJ: exciting
VERB: see
ADV: specially
VERB: know
NOUN: mechanics
VERB: piece
ADP: like
NOUN: piccadillycircus
NOUN: visitlondon
NOUN: weekend
VERB: enhance
NOUN: mind
DET: a
NOUN: washes
ADV: away
NOUN: soul
NOUN: dust
ADJ: everyday
NOUN: life
NOUN: picasso
NOUN: thanks
X: aichoketrust
X: lumiere
NOUN: london
NOUN: kingscrossn1c
NOUN: planning
NOUN: trip
VERB: keep
NOUN: eye
NOUN: visitlondon
NOUN: website
VERB: updates
NOUN: london
VERB: bound
NOUN: tonight
NOUN: capture
NOUN: lights
VERB: silhouettes
NOUN: lumierelondon
NOUN: installations
NOUN: anyone
VERB: fancy
VERB: coming
ADP: along
VERB: snapping
NOUN: silhouette
VERB: lingering
VERB: looking
ADJ: cool
NOUN: lights
ADJ: london
NOUN: porait
NOUN: silhouette
NOUN: canon
ADP: sunse
NOUN: westminster
NOUN: abbey
NOUN: london
NOUN: londonbynight
NOUN: samsungs7
NOUN: nofilter
NOUN: cityscape
NOUN: urbana
NOUN: westminsterabbey
NOUN: timeoutlondon
ADJ: awesome
NOUN: time
VERB: watching
NOUN: lumiere
NOUN: lights
NOUN: festival
ADP: around
NOUN: london
ADJ: last
NOUN: night
NOUN: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
NOUN: grantchito
NUM: 2018
ADJ: eco
ADJ: friendly
NOUN: piece
VERB: called
VERB: rose
ADJ: enjoyable
NOUN: amp
ADJ: beautiful
NOUN: piece
ADV: creatively
VERB: amp
ADV: physically
ADJ: hatmanoflondon
NOUN: ball
NOUN: piece
ADV: pretty
ADV: aichoketrust
VERB: get
NOUN: insight
NOUN: magic
ADP: behind
NOUN: browse
NOUN: oppounities
NOUN: training
NOUN: jobs
ADP: across
NOUN: range
ADJ: exciting
NOUN: oppounities
ADJ: technicians_mih
NOUN: website
X: techniciansmakeithappen
X: lumiere
X: lumierefestival
NOUN: london
VERB: lit
NOUN: lights
NOUN: nightlife
NOUN: chinatown
NOUN: custardbuns
VERB: get
NOUN: insight
NOUN: magic
ADP: behind
NOUN: browse
NOUN: oppounities
NOUN: training
NOUN: jobs
ADP: across
NOUN: range
ADJ: exciting
NOUN: oppounities
ADJ: technicians_mih
NOUN: website
NOUN: techniciansmakeithappen
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: grantchito
NUM: 2018
ADJ: eco
ADJ: friendly
NOUN: piece
VERB: called
VERB: rose
ADJ: enjoyable
NOUN: amp
ADJ: beautiful
NOUN: piece
ADV: creatively
VERB: amp
ADV: physically
ADJ: hatmanoflondon
NOUN: ball
NOUN: piece
ADV: pretty
ADJ: much
NOUN: fun
PRT: lumiere
NOUN: london
ADJ: last
NOUN: night
NOUN: check
VERB: highlights
NOUN: instagram
NOUN: stories
NOUN: video
NOUN: post
VERB: coming
ADV: soon
X: visitlondon
X: travelblogger
X: lumierelondon2018
X: biggsytravels
NOUN: mind
VERB: getting
ADJ: wet
NOUN: weekend
NOUN: check
ADV: already
NUM: two
NOUN: fun
VERB: filled
NOUN: days
VERB: ends
NOUN: tomorrow
VERB: check
NOUN: visitlondon
NOUN: info
NUM: 2018
ADJ: eco
ADJ: friendly
NOUN: piece
VERB: called
VERB: rose
ADJ: enjoyable
NOUN: amp
ADJ: beautiful
NOUN: piece
ADV: creatively
VERB: amp
ADV: physically
ADJ: hatmanoflondon
NOUN: ball
NOUN: piece
ADV: pretty
ADJ: bright
NOUN: lights
ADJ: westminstercathedral
NOUN: amp
NOUN: westminsterabbey
NOUN: jonathanbadyal
NOUN: love
NOUN: womensmarchlondon
NOUN: day
VERB: expect
NOUN: crowds
NOUN: today
ADJ: last
NOUN: chance
VERB: see
NOUN: london
ADJ: extraordinary
NOUN: light
NOUN: show
NOUN: kingscrossn1c
NOUN: today
ADJ: last
NOUN: chance
VERB: see
NOUN: london
ADJ: extraordinary
NOUN: light
NOUN: show
NOUN: kingscrossn1c
NOUN: today
ADJ: last
NOUN: chance
VERB: see
NOUN: london
ADJ: extraordinary
NOUN: light
NOUN: show
NOUN: kingscrossn1c
NOUN: london
NUM: one
NOUN: giant
DET: a
NOUN: gallery
NOUN: trafalgar
NOUN: square
NOUN: today
ADJ: last
NOUN: chance
VERB: see
NOUN: london
ADJ: extraordinary
NOUN: light
NOUN: show
NOUN: kingscrossn1c
VERB: brighten
NOUN: sundayfunday
VERB: heading
VERB: enjoy
ADJ: last
NOUN: night
ADJ: magical
ADJ: light
NOUN: installation
NOUN: timeoutlondon
NOUN: lumierelondon
NUM: 2018
NOUN: kx
NOUN: kingscross
NOUN: laser
NOUN: timelapse
NOUN: scribbling_lau
VERB: updated
NOUN: lumierelondon
NOUN: guide
NOUN: info
NOUN: photos
NOUN: king
VERB: cross
ADJ: handy
NOUN: read
VERB: heading
ADJ: last
NOUN: night
NOUN: tonight
NOUN: urbanpanersuk
ADV: still
VERB: visited
NOUN: hurry
ADJ: last
NOUN: day
NOUN: check
NOUN: installations
NOUN: map
NOUN: sta
NOUN: visit
NOUN: kingscrossn1c
NOUN: shaftesburyplc
NOUN: crowds
ADV: carnabylondon
ADJ: last
NOUN: night
VERB: see
NOUN: ganton
NOUN: street
VERB: dancing
NOUN: light
NOUN: bulbs
NOUN: pa
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: great
NOUN: evening
VERB: spent
ADJ: fantastic
VERB: see
ADJ: many
NOUN: people
VERB: see
ADJ: great
DET: a
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: lumierelondon
NUM: 2018
NOUN: kingscross
NOUN: kx
ADJ: timelapse
NOUN: tunnel
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: dianespencerfun
ADJ: beautiful
NOUN: lights
ADV: way
VERB: work
NOUN: comedycarnival
NOUN: tonight
NOUN: lumierelondon
NOUN: flamingos
VERB: go
VERB: see
NOUN: lumierelondon
ADV: still
NOUN: today
ADJ: free
NOUN: feeling
NOUN: light
VERB: headed
NOUN: head
NOUN: lights
ADV: spectacularly
ADJ: brilliant
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: last
NOUN: night
NOUN: catch
ADJ: amazing
NOUN: light
NOUN: installations
DET: lumiere_london
NUM: 2018
NOUN: visitlondon
ADJ: many
VERB: see
ADJ: little
NOUN: time
VERB: get
VERB: walking
NOUN: boots
NOUN: amp
VERB: get
ADJ: many
VERB: get
ADJ: round
X: mylightisyourlight
X: reflektor
X: illumphonium
X: wasitadream
X: visitlondon
X: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
NOUN: photos
ADJ: old
NOUN: lwt
NOUN: tower
PRT: lumiere
ADJ: london
NOUN: home
NOUN: itv
NOUN: london
NUM: 45
NOUN: years
ADJ: biggest
NOUN: shows
ADJ: sad
VERB: think
VERB: closing
NOUN: months
ADV: back
VERB: look
ADV: forward
VERB: checking
ADP: via
NOUN: visitlondon
NOUN: waterlicht
ADJ: interesting
NOUN: experience
ADV: really
VERB: felt
ADP: like
NOUN: underwater
ADV: still
ADJ: able
NOUN: breath
NOUN: hope
VERB: attend
ADJ: last
NOUN: day
NOUN: tonight
VERB: hope
NOUN: weather
VERB: suck
ADJ: much
NOUN: lumierelondon
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: wave
X: veigo
X: lumiere
NOUN: london
NOUN: riverside
NOUN: walkway
NOUN: southbank
NOUN: lumierelondon
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: oxotowerwharf
NUM: two
NOUN: days
VERB: celebrate
ADJ: biggest
ADJ: outdoor
NOUN: lightfestival
NOUN: uk
NOUN: plan
DET: southbank
NOUN: waterloo
NOUN: trail
NOUN: head
VERB: enjoy
ADJ: dazzling
NOUN: show
ADJ: cold
ADJ: busy
NOUN: lumiere
ADJ: last
NOUN: night
NOUN: granary
NOUN: square
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
NOUN: carnabylondon
VERB: celebrate
VERB: giving
NOUN: chance
NOUN: win
VERB: lomo
ADJ: instant
NOUN: camera
NOUN: lomo
NOUN: lightpainter
NOUN: lomographyuk
NOUN: enter
NOUN: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
ADJ: terrifying
ADJ: final
ADJ: quick
NOUN: visit
NUM: two
NOUN: installations
NOUN: people
ADV: clearly
ADJ: fun
ADP: despite
ADJ: cold
ADJ: wet
NOUN: conditions
VERB: organised
NOUN: aichoketrust
NOUN: suppoed
NOUN: visitlondon
NOUN: pictures
VERB: marshalljulius
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
VERB: enjoyed
ADJ: last
NOUN: night
ADJ: beautiful
NOUN: london
NOUN: leicester
NOUN: square
VERB: invaded
ADJ: colossal
ADJ: irradiated
NOUN: beasts
ADV: absolutely
VERB: terrifying
ADJ: south
NOUN: bank
NUM: 2
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: anaorsatti
X: lumiere
ADJ: london
ADJ: south
NOUN: bank
NUM: 1
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
NOUN: lumiere
NOUN: london
NUM: 2018
NOUN: lumiere
NOUN: london
NOUN: videocollage
NOUN: lights
NOUN: nightlights
ADJ: royal
NOUN: festival
NOUN: hall
NOUN: lumierelondon2018
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
NOUN: kingscrossn1c
NOUN: pa
ADJ: amazing
ADJ: much
NOUN: see
VERB: needs
ADV: around
ADV: longer
ADV: southbanklondon
VERB: managed
VERB: get
NOUN: see
NOUN: installations
ADV: yet
VERB: make
ADJ: sure
VERB: stop
ADJ: south
NOUN: bank
VERB: see
NOUN: wave
NOUN: brightnights
VERB: daviescoral
NOUN: installation
NOUN: favourites
NUM: 13
NUM: 10
NUM: 6
NOUN: year
ADJ: old
NOUN: boy
NOUN: aichoketrust
VERB: climbing
ADJ: high
NOUN: lumierelondon
NOUN: anaorsatti
PRT: lumiere
NOUN: london
ADJ: last
NOUN: night
NOUN: lumiere_london
VERB: drew
ADV: incredibly
ADJ: diverse
NOUN: crowd
NOUN: londonisopen
ADV: lumierelondon2018
VERB: seen
NOUN: photos
NOUN: videos
VERB: make
ADJ: aberdeencc
NOUN: half
VERB: arsed
NOUN: attempt
NOUN: spectraaberdeen
VERB: look
ADP: like
NOUN: gnats
NOUN: lighting
NOUN: fas
NOUN: oxo
NOUN: tower
NOUN: wharf
NOUN: lumierelondon2018
NOUN: lizziemidd
NOUN: favourites
NOUN: yesterday
NOUN: evening
NOUN: tad
ADJ: chilly
NOUN: well
VERB: woh
VERB: visit
ADJ: good
NOUN: map
NOUN: visitlondon
NOUN: app
NOUN: helbron
NOUN: thanks
ADV: second
ADJ: magical
NOUN: night
NOUN: lights
X: visitlondon
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
ADV: visitlondon
ADJ: south
NOUN: bank
NOUN: lumierelondon2018
ADJ: light
NOUN: light
NOUN: lumierelondon2018
PRT: lumiere
ADJ: beautiful
ADJ: stark
ADJ: powerful
ADJ: sad
CONJ: yet
ADJ: bright
ADJ: potential
NOUN: hope
ADP: like
VERB: updated
NOUN: lumierelondon
NOUN: guide
NOUN: info
NOUN: photos
NOUN: king
VERB: cross
ADJ: handy
NOUN: read
VERB: heading
ADJ: last
NOUN: night
NOUN: tonight
NOUN: visitlondon
NUM: 5
ADJ: gorgeous
NOUN: aworks
VERB: discover
VERB: explore
ADJ: beautiful
NOUN: fitzrovia
NOUN: area
VERB: let
PRON: us
VERB: know
ADJ: favourite
NOUN: londonwhispers
DET: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: londonviewpts
NOUN: tonight
NOUN: tomorrow
ADJ: last
NOUN: chance
VERB: watch
ADJ: new
NOUN: video
VERB: see
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
ADV: really
VERB: enjoyed
ADJ: last
NOUN: night
NOUN: miss
ADJ: last
NOUN: chance
NOUN: tonight
VERB: see
ADJ: incredible
NOUN: aworks
ADP: around
NOUN: london
VERB: went
ADJ: last
NOUN: night
VERB: saw
DET: a
ADJ: south
NOUN: bank
NOUN: kings
VERB: cross
NOUN: time
VERB: considering
VERB: going
NOUN: tonight
ADV: doublemacbex
ADJ: fun
NOUN: time
NOUN: origin
NOUN: world
NOUN: oxford
NOUN: circus
NOUN: love
NOUN: festival
NOUN: lumierelondon
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
X: visitlondon
X: keeponwalking
X: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: lumiere
NOUN: london
NOUN: neon
NOUN: aichoketrust
VERB: make
ADJ: sure
VERB: pick
NOUN: souvenir
NOUN: guide
NOUN: evening
VERB: featuring
NOUN: details
ADP: aworks
NOUN: aists
VERB: map
ADJ: exclusive
NOUN: content
NUM: 5
NOUN: cards
ADJ: mobile
NOUN: payments
VERB: accepted
NOUN: thanks
X: squareuk
X: sanj80
X: aichoketrust
X: amazinga
X: aichoketrust
VERB: want
NOUN: use
ADJ: open
NOUN: boat
ADJ: next
NOUN: year
VERB: go
ADJ: nearby
NOUN: islingtontunnel
NUM: 2018
NOUN: aichoketrust
NOUN: amazinga
NOUN: jonathanbadyal
NOUN: love
VERB: loved
VERB: illuminated
NOUN: umbrellas
VERB: dancing
NOUN: lumierelondon
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: aichoketrust
VERB: inspired
NUM: 2018
NOUN: highlights
ADV: well
VERB: woh
VERB: visit
ADJ: busy
NOUN: lumiere
VERB: showing
ADJ: sheer
NOUN: appetite
DET: a
ADJ: public
NOUN: spaces
DET: visitlondon
VERB: eros
NOUN: ball
ADV: still
VERB: visited
NOUN: hurry
ADJ: last
NOUN: day
NOUN: check
NOUN: installations
NOUN: map
NOUN: sta
NOUN: visit
NOUN: kingscrossn1c
VERB: seen
NOUN: light
ADV: never
VERB: seen
NOUN: anything
ADP: like
NOUN: westminster
NOUN: abbey
PRT: lumiere
NOUN: festival
NUM: 2018
NOUN: tonight
ADJ: last
NOUN: evening
ADJ: incredible
VERB: illuminated
DET: a
NOUN: displays
VERB: dotted
ADP: around
NOUN: capital
ADJ: super
NOUN: way
VERB: enjoy
NOUN: stroll
VERB: get
NOUN: exercise
VERB: enjoy
DET: a
ADJ: free
NOUN: lumierelondon
DET: a
NOUN: photography
NOUN: londonlife
NOUN: london
ADJ: fab
NOUN: displays
NOUN: kings
VERB: cross
ADJ: last
NOUN: night
NOUN: tonight
VERB: want
VERB: see
NOUN: london
NOUN: southbanklondon
ADV: else
VERB: amp
VERB: enjoying
NOUN: check
NOUN: bough1
NOUN: simon
NOUN: corder
VERB: bargehouse
ADJ: south
NOUN: bank
PRT: brightnights
NOUN: pics
ADJ: talented
NOUN: robwdawkins
VERB: loki_lego
VERB: enjoying
NOUN: lumierelondon
VERB: transformed
NOUN: granarysquare
NOUN: kingscross
NOUN: sw_help
NOUN: thursday
NUM: 18
NOUN: sunday
NUM: 21
NOUN: january
NOUN: light
NOUN: festival
VERB: happening
ADJ: central
NOUN: london
NOUN: trains
ADV: maybe
ADJ: busier
ADJ: normal
X: please
VERB: check
NOUN: travel
NOUN: find
PRT: lumiere
ADJ: london
NOUN: visit
ADJ: last
NOUN: night
NOUN: regent
NOUN: street
NOUN: southbanklondon
NOUN: pay
NOUN: visit
NOUN: leake
NOUN: street
VERB: see
NOUN: emma
NOUN: allen
NOUN: triptych
NOUN: ruby
NOUN: santiago
NOUN: amp
NOUN: adam
NOUN: grey
VERB: matters
NUM: 750
NOUN: photos
NOUN: ruby
VERB: sees
NOUN: allen
VERB: painted
NOUN: face
NOUN: change
NOUN: skull
NOUN: star
VERB: filled
NOUN: sky
NOUN: brightnights
NOUN: gt
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
NOUN: kingscrossn1c
NOUN: pa
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: southbank
NOUN: centre
NOUN: lumierelondon2018
NOUN: kaleidoscope
ADJ: beautiful
NOUN: butterflies
ADJ: light
NOUN: festival
NOUN: iphoneonly
NOUN: nofilter
ADJ: national
NOUN: theatre
NOUN: lumierelondon2018
NOUN: beefeaterdave
NOUN: evening
ADJ: great
NOUN: pieces
DET: leicestersquare
NOUN: raven
NOUN: westminsterabbey
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: aichoketrust
VERB: discover
VERB: mesmerising
NOUN: origin
NOUN: world
NOUN: bubble
NUM: 2018
NOUN: oxford
NOUN: circus
ADV: chevaliermiguel
ADJ: interactive
NOUN: piece
ADV: specially
VERB: commissioned
ADJ: fit
NOUN: world
ADJ: famous
NOUN: site
ADJ: last
NOUN: night
VERB: lumierelondon2018
DET: another
ADJ: amazing
NOUN: evening
VERB: enjoying
NOUN: lumierelondon
ADJ: last
NUM: three
NOUN: nights
ADJ: breathtaking
NOUN: catch
ADJ: last
NOUN: night
NOUN: tonight
VERB: wear
X: fitbit
X: mayoroflondon
X: aichoketrust
X: visitlondon
X: tfl
NOUN: london
PRT: lumiere
NOUN: londonlumiere
NOUN: london
NOUN: lumierelondon
NOUN: londonlife
NOUN: city
DET: a
NOUN: moderna
NOUN: freea
NOUN: london
NOUN: lumiere
NOUN: londonlumiere
NOUN: london
NOUN: lumierelondon
NOUN: londonlife
NOUN: city
DET: a
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: lumierelondon
NOUN: bandwagon
NOUN: lastnight
NOUN: aichoketrust
NOUN: visitlondon
NOUN: nigelblakephoto
NOUN: waterlicht
NOUN: kings
VERB: cross
NOUN: london
NOUN: lumiere
NUM: 2018
NOUN: aichoketrust
NOUN: wundrouslondon
NOUN: timeout
NOUN: londonlumiere
NOUN: stefanoboski
NOUN: laser
NOUN: vision
NOUN: lumierelondon
NOUN: lasers
VERB: light
NOUN: bokeh
ADJ: candid
NOUN: event
NOUN: london
NOUN: kingscross
NOUN: lowlight
NOUN: sonyalpha
NOUN: sigmalens
NOUN: twitter
NOUN: visitlondon
NOUN: laser
NOUN: vision
NOUN: lumierelondon
NOUN: lasers
VERB: light
NOUN: bokeh
ADJ: candid
NOUN: event
NOUN: london
NOUN: kingscross
NOUN: lowlight
NOUN: sonyalpha
NOUN: sigmalens
NOUN: twitter
NOUN: berkeleyst_bar
ADJ: amazing
NOUN: lighting
NOUN: london
NOUN: berkeleyst_bar
NOUN: mayfair
NOUN: cocktail
NOUN: lounge
NOUN: mayoroflondon
NOUN: london_newz
NOUN: mayfairmagazine
NOUN: hansomldncabbie
ADJ: light
NOUN: bulb
NOUN: ox
NOUN: circus
VERB: working
ADJ: embarrassing
ADV: londontheinside
ADJ: bloody
ADJ: brilliant
NOUN: get
VERB: ends
NOUN: tomorrow
VERB: managed
VERB: see
NOUN: installations
NOUN: origin
NOUN: world
NOUN: bubble
NOUN: oxfordcircus
ADJ: theoriginoftheworldbubble
NOUN: exercise
VERB: mean
VERB: going
NOUN: gym
VERB: spent
ADJ: great
NOUN: evening
VERB: wandering
NOUN: london
VERB: seeing
ADJ: amazing
NOUN: khchiropractic
NOUN: clairemichie
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: lights
NOUN: time
NOUN: pedal
VERB: powered
VERB: stained
NOUN: glass
NOUN: window
NOUN: victoria
NOUN: visitlondon
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: ivysohobrass
VERB: illuminated
NOUN: ivy
ADJ: perfect
NOUN: drink
VERB: celebrate
NOUN: weekend
NOUN: weekendvibes
NOUN: soho
X: ivysohobrasserie
X: paulwf
X: ivysohobrass
ADV: really
ADJ: excited
NOUN: staing
NOUN: tomorrow
NOUN: soho
VERB: miss
ADJ: playful
NOUN: lightbulb
NOUN: installation
NOUN: ganton
NOUN: street
ADP: around
NOUN: corner
PRON: us
VERB: carnaby
NOUN: soho
NOUN: lumierelondon
NOUN: carnabylondon
ADJ: old
X: wabbey
X: reimagined
X: ken
X: kesey
X: merrypranksters
X: postcardslond1
X: goodnight
X: trafalgarsquare
X: visitlondon
X: londonist
NOUN: aichoketrust
NOUN: photos
ADJ: last
NOUN: night
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: photos
ADJ: last
NOUN: night
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: photos
ADJ: last
NOUN: night
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: photos
ADJ: last
NOUN: night
NOUN: visitlondon
NOUN: london
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
PRT: lumiere
NOUN: colour
VERB: changing
NOUN: umbrellas
ADJ: last
NOUN: night
ADJ: beautiful
VERB: tried
NOUN: peek
ADV: underneath
VERB: passed
VERB: see
VERB: made
VERB: failed
NOUN: ideas
NOUN: caschat
NOUN: 7dialslondon
ADV: still
NOUN: time
NOUN: check
NOUN: aquarium
NUM: seven
NOUN: dials
NOUN: pa
VERB: take
ADJ: closer
NOUN: look
NOUN: evening
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
VERB: find
ADJ: exclusive
NOUN: offers
NOUN: shops
NOUN: restaurants
VERB: download
NOUN: map
ADJ: crazy
NOUN: light
VERB: reflecting
NOUN: lollipops
VERB: think
NOUN: king
NOUN: cross
VERB: loved
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: grantchito
NUM: 2018
NOUN: london
NOUN: eye
VERB: looks
ADV: pretty
VERB: changing
NOUN: rainbow
NOUN: colours
VERB: colourfully
VERB: lit
NOUN: surroundings
VERB: reflected
NOUN: river
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: memoirsofametro
NOUN: child
NOUN: hood
NOUN: trafalgar
ADJ: square
X: londonisopen
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
ADP: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: westend
NOUN: oxford
NOUN: circus
NOUN: day
NOUN: today
NOUN: characters
VERB: cite
NOUN: training
NOUN: milne
ADJ: fantastic
NUM: hundred
NOUN: acre
NOUN: wood
NOUN: characters
NOUN: exhibition
NOUN: v_and_a
NOUN: kathleendrum
NOUN: supper
NOUN: bluebirdchelsea
ADV: maybe
VERB: going
ADJ: tiggerific
NOUN: day
NOUN: sw_help
NOUN: thursday
NUM: 18
NOUN: sunday
NUM: 21
NOUN: january
NOUN: light
NOUN: festival
VERB: happening
ADJ: central
NOUN: london
NOUN: trains
ADV: maybe
ADJ: busier
ADJ: normal
X: please
VERB: check
NOUN: travel
NOUN: find
PRT: lumiere
ADJ: london
NOUN: visit
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
NOUN: annenberg
NOUN: couyard
NOUN: lumierelondon
NOUN: london
NOUN: londontown
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
VERB: loved
NOUN: cloud
VERB: led
NOUN: balloons
VERB: wafting
ADJ: cold
NOUN: winter
NOUN: chill
ADJ: last
NOUN: night
NOUN: childhood
NOUN: collectifcoin
NOUN: pa
NUM: 2018
X: trafalgarsquare
X: lightinstallation
X: restlessthinking
X: lighta
X: zumtobel
X: sw_help
NOUN: thursday
NUM: 18
NOUN: sunday
NUM: 21
NOUN: january
NOUN: light
NOUN: festival
VERB: happening
ADJ: central
NOUN: london
NOUN: trains
ADV: maybe
ADJ: busier
ADJ: normal
X: please
VERB: check
NOUN: travel
NOUN: find
PRT: lumiere
ADJ: london
NOUN: visit
NOUN: thursday
NUM: 18
NOUN: sunday
NUM: 21
NOUN: january
NOUN: light
NOUN: festival
VERB: happening
ADJ: central
NOUN: london
NOUN: trains
ADV: maybe
ADJ: busier
ADJ: normal
X: please
VERB: check
NOUN: travel
NOUN: find
PRT: lumiere
ADJ: london
NOUN: visit
NOUN: 7dialslondon
VERB: discover
NOUN: aquarium
NUM: seven
VERB: dials
NUM: 18
NUM: 21
NOUN: january
NOUN: pa
NOUN: uk
ADJ: largest
NOUN: light
NOUN: festival
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: lifestylings
ADJ: stunning
NOUN: piccadillycircus
ADP: via
NOUN: arvinddevalia
NOUN: light
NOUN: lumierelondon
NOUN: architecture
NOUN: playlondongame
VERB: seen
NOUN: uk
ADJ: largest
ADJ: light
NOUN: festival
VERB: happening
NOUN: london
ADV: right
ADV: quick
VERB: look
ADJ: dazzling
NOUN: installations
ADP: around
ADJ: london
ADJ: right
NOUN: hurry
ADP: around
NOUN: sunday
VERB: londonacritic
ADJ: great
NOUN: time
NOUN: highlights
ADV: still
VERB: need
VERB: see
NOUN: rest
VERB: aim
ADJ: next
NOUN: nights
X: lighta
X: lightfestival
X: lumierelondon
X: lumiere
VERB: feeling
ADJ: brightnights
NOUN: lumierelondon
NUM: 2018
NOUN: lumierelondon2018
VERB: stepped
NOUN: rainbow
ADV: never
VERB: stops
NOUN: garden
NOUN: lollipops
NOUN: lumierelondon
NOUN: vss
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: kazbrella
NOUN: stas
NOUN: tomorrow
NOUN: selection
ADJ: amazing
NOUN: lighting
NOUN: installations
ADJ: favourite
NOUN: cirquebijousumbrellas
VERB: thats
PRON: us
VERB: visitlondon
ADJ: sweet
NOUN: dreams
ADV: thelondoneye
ADJ: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
ADJ: future
NOUN: tech
NOUN: laser
NOUN: beams
VERB: hope
NOUN: swirl
ADJ: electric
NOUN: dreams
NOUN: lumierelondon
NOUN: vss
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: londonwhispers
X: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
NOUN: keeponwalking
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: childrenandas
NOUN: trafalgar
ADJ: square
NOUN: lights
VERB: opens
ADJ: london
NOUN: landmarks
VERB: lit
NOUN: colour
ADJ: next
NUM: four
NOUN: days
NOUN: gt
NOUN: gt
NOUN: gt
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
NOUN: kingscrossn1c
NOUN: pa
PRT: lumiere
NOUN: festival
NOUN: london
NUM: 2018
VERB: visitlondon
ADJ: sweet
NOUN: dreams
ADV: thelondoneye
ADJ: downloader_vid
NOUN: video
NOUN: downloader
NOUN: android
NOUN: gt
NOUN: gt
X: priorconstruct
X: lumiere
NOUN: london
NOUN: westminster
NOUN: abbey
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
PRT: travelodgeuk
VERB: wrap
ADJ: warm
NOUN: head
NOUN: london
NOUN: weekend
NOUN: uk
ADJ: biggest
ADJ: light
NOUN: festival
NUM: 40
NOUN: installations
ADP: across
NOUN: city
ADJ: free
NOUN: book
NOUN: lizziehendy
NOUN: city
VERB: looking
ADV: pretty
ADV: nationalgallery
VERB: celebrate
NOUN: return
NOUN: today
PRT: pissarro
VERB: lit
ADJ: nocturnal
NOUN: scene
NOUN: boulevard
NOUN: montmare
NOUN: night
VERB: painted
NUM: 1897
NOUN: view
NOUN: work
NOUN: room
NUM: 43
NOUN: helbron
NOUN: thanks
ADV: second
ADJ: magical
NOUN: night
NOUN: lights
X: visitlondon
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: spoonsontrays
X: oh
VERB: treat
VERB: see
ADV: wabbey
ADV: beautifully
VERB: lit
NOUN: polychrome
NOUN: patrice
NOUN: warrener
ADJ: incredible
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: traveljunkiegrl
VERB: made
NOUN: tonnes
ADJ: empty
NOUN: plastic
NOUN: bottles
VERB: rose
NOUN: window
ADP: outside
NOUN: westminster
NOUN: cathedral
NOUN: epic
NOUN: loki_lego
NOUN: lumierelondon
NOUN: trafalgar
ADJ: square
NOUN: leicester
ADJ: square
NOUN: loki_lego
VERB: enjoying
NOUN: lumierelondon
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
VERB: take
NOUN: look
NOUN: mondrianldn
NOUN: weekend
NOUN: amp
VERB: see
VERB: transformed
NOUN: thames
NOUN: pulse
NOUN: jason
ADV: bruges
ADJ: dynamic
NOUN: awork
VERB: reflects
NOUN: river
NOUN: health
ADJ: real
NOUN: time
VERB: discover
NOUN: brightnights
NOUN: gt
NOUN: thelondoneye
VERB: stunning
ADV: back
ADJ: south
NOUN: bank
VERB: miss
ADV: specially
VERB: created
NOUN: eyelovelondon
ADJ: light
NOUN: show
VERB: running
NUM: 6
NOUN: 30pm
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: sunday
VERB: share
ADJ: favourite
NOUN: shots
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
VERB: kingscrossn1c
NOUN: pa
NUM: 4
NOUN: days
VERB: look
ADJ: many
NOUN: people
ADJ: ridiculous
NOUN: lumierelondon2018
NOUN: timeoutlondon
NOUN: visitlondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: southbanklondon
VERB: make
NOUN: trip
ADV: south
NOUN: bank
ADV: even
ADJ: special
NOUN: trip
ADP: along
NOUN: thames
VERB: sit
ADV: back
NOUN: amp
NOUN: watch
NOUN: city
NOUN: lights
VERB: go
ADV: thamesclippers
ADJ: brightnights
NOUN: gt
NOUN: thelondoneye
VERB: looks
ADV: absolutely
ADJ: incredible
NOUN: cheers
DET: another
NOUN: reason
NOUN: visit
NOUN: london
ADJ: high
NOUN: bucketlist
NOUN: england
NOUN: visitlondon
NOUN: travel
X: travelinspires
X: londoneye
X: wabbey
NOUN: westminster
NOUN: abbey
NOUN: westminsterabbey
NOUN: bbc
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: london
VERB: lit
NOUN: lumiere
NOUN: festival
NOUN: southbanklondon
VERB: make
NOUN: trip
ADV: south
NOUN: bank
ADV: even
ADJ: special
NOUN: trip
ADP: along
NOUN: thames
VERB: sit
ADV: back
NOUN: amp
NOUN: watch
NOUN: city
NOUN: lights
VERB: go
ADV: thamesclippers
ADJ: brightnights
NOUN: gt
VERB: make
NOUN: trip
ADV: south
NOUN: bank
ADV: even
ADJ: special
NOUN: trip
ADP: along
NOUN: thames
VERB: sit
ADV: back
NOUN: amp
NOUN: watch
NOUN: city
NOUN: lights
VERB: go
ADV: thamesclippers
ADJ: brightnights
NOUN: gt
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
VERB: enjoyed
DET: a
NOUN: installations
DET: lumiere
NOUN: london
NOUN: light
NOUN: festival
NUM: 2018
NOUN: lovecamden
ADV: yet
VERB: go
VERB: see
ADJ: amazing
NOUN: aworks
VERB: displayed
NOUN: kings
VERB: cross
NOUN: weekend
NOUN: look
NOUN: programme
NOUN: aichoketrust
NOUN: sho
NOUN: montage
NOUN: images
NOUN: london
NOUN: lumiere
NOUN: festival
NOUN: antsteer
NOUN: piccadillycircus
NUM: 1
NUM: 3
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
ADJ: facltd
NOUN: teams
ADJ: busy
NOUN: lumierelondon
NOUN: lumiere
NOUN: date
ADJ: critical
NOUN: care
NOUN: amp
ADJ: medical
NOUN: response
NOUN: teams
VERB: dealt
NOUN: calls
VERB: ranging
NOUN: breathing
NOUN: difficulties
NOUN: chest
NOUN: pain
NOUN: diabetic
VERB: collapses
NOUN: drug
NOUN: overdoses
VERB: keeping
NOUN: londoners
ADJ: safe
X: eventprofs
X: firstaid
X: louisatreger
VERB: freezing
ADJ: cold
VERB: loving
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADJ: cold
NOUN: thelondonguidee
NOUN: miss
PRT: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
X: thelondonguidee
NOUN: miss
PRT: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
NOUN: miss
DET: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
NOUN: miss
PRT: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
NOUN: miss
PRT: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
NOUN: miss
PRT: lumiere
NOUN: week
VERB: brought
NOUN: city
NOUN: mayorofldn
NOUN: amp
NOUN: aichoketrust
NUM: 2018
X: kingscross
X: carnabystreet
X: regentstreet
X: cityoflondon
X: londonlife
NOUN: londoner
DET: a
NOUN: architecture
NOUN: exhibition
NOUN: uk
X: visitlondon
X: visitgreatbritain
X: travelgram
X: thelondonguidee
VERB: found
NOUN: froggen
VERB: feel
ADP: like
VERB: get
ADJ: satisfying
NOUN: results
ADV: kinda
NOUN: photography
NOUN: cosplay
VERB: shoots
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: visitlondon
VERB: get
NOUN: taste
ADJ: high
NOUN: life
NOUN: mayfair
NOUN: fish
NOUN: phone
NOUN: box
NOUN: traffic
NOUN: regent
NOUN: street
NOUN: nofilters
NOUN: oxfordcircus
NOUN: oxford
VERB: thank
ADJ: awesome
NOUN: evening
NOUN: aichoketrust
ADJ: incredible
NOUN: wait
NOUN: return
NOUN: london
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: lumiere
NUM: 3
ADJ: light
NOUN: festival
NOUN: aopédelondres
NOUN: london
NOUN: visitlondon
NOUN: igerslondon
NOUN: wanderlust
NUM: 4
NUM: 2
NOUN: light
NOUN: festival
NOUN: aopédelondres
NOUN: london
NOUN: visitlondon
NOUN: igerslondon
NOUN: wanderlust
VERB: shiiv
ADJ: spontaneous
NOUN: trip
NOUN: town
NOUN: catch
NOUN: lumierelondon
ADJ: festive
ADJ: fantastic
ADJ: free
DET: a
NOUN: lumierelondon2018
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
X: aichoketrust
X: biggsytravels
X: mpsprinces
NOUN: team
VERB: keeping
NOUN: princes
ADJ: safe
PRON: us
VERB: patrolling
ADJ: massive
NOUN: love
NOUN: aichoketrust
NOUN: festival
ADJ: wonderful
NOUN: awork
ADJ: awesome
NOUN: see
NOUN: festival
VERB: engage
ADJ: many
NOUN: people
ADJ: huge
NOUN: scale
ADV: already
VERB: wait
ADJ: next
NOUN: year
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
ADV: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
PRT: lumiere
ADJ: london
NOUN: regent
NOUN: street
NOUN: nofilters
NOUN: oxfordcircus
NOUN: oxford
X: oxfordstreet
X: postcardslond1
PRT: goodnight
X: trafalgarsquare
X: visitlondon
X: londonist
X: aichoketrust
X: lumiere
NOUN: london
NOUN: nofilters
NOUN: oxfordcircus
NOUN: oxford
NOUN: oxfordstreet
NOUN: london
NOUN: thisislondon
NOUN: ldn_culture
NOUN: westminster
NOUN: mayfair
NOUN: soho
NOUN: southbank
NOUN: installation
NOUN: aichoketrust
NOUN: londonisopen
NOUN: exhibits
DET: lumiere
NOUN: london
NOUN: oxford
NOUN: street
NOUN: nofilters
NOUN: oxfordcircus
NOUN: oxford
X: oxfordstreet
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
VERB: think
NOUN: fave
ADV: awork
ADJ: many
ADJ: beautiful
ADJ: vivid
NOUN: colours
VERB: roaming
NOUN: city
VERB: checking
NOUN: stuff
NOUN: tonight
ADV: really
ADJ: amazing
NOUN: stuff
VERB: see
VERB: loved
NOUN: lights
VERB: felt
NOUN: home
NOUN: balloons
VERB: lights
NOUN: london
NOUN: trafalgar
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
VERB: granary
ADJ: square
NOUN: lumiere
NOUN: 11pm
X: noir
X: bahnhofsvieel
X: afterglow
X: post
ADJ: favourite
NOUN: shots
ADJ: amazing
NOUN: lumiere
NOUN: festival
ADV: hmorphitis
ADJ: stunning
NOUN: kingscrossn1c
NOUN: visitlondon
NOUN: londonist
VERB: shining
ADJ: shimmering
ADJ: splendid
NOUN: westminster
NOUN: abbey
ADJ: great
VERB: see
ADJ: many
NOUN: people
VERB: walking
NOUN: streets
NOUN: london
ADJ: fabulous
NOUN: lumierelondon
NOUN: aichoketrust
NOUN: london
NOUN: night
ADJ: beautiful
ADJ: lumiere
ADJ: light
NOUN: festival
NOUN: westminster
NOUN: abbey
NOUN: aist
NOUN: patrice
X: warrener
X: visitlondon
X: lumiere
X: westminsterabbey
X: lumierelondon
X: lumierelondon
X: aichoketrust
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: chance
PRT: go
VERB: see
NOUN: tomorrow
VERB: blown
PRT: away
NOUN: pictures
NOUN: justice
NOUN: thanks
NOUN: aichoketrust
NOUN: culturetrip
NOUN: wait
NOUN: aichoketrust
VERB: taking
ADJ: london
ADJ: interactive
VERB: illuminating
NOUN: installations
NUM: 18
NUM: 21
NOUN: january
NUM: 2018
NOUN: plan
NOUN: works
VERB: see
NOUN: highlights
VERB: guide
ADV: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
X: visitlondon
X: keeponwalking
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: favourite
PRT: lumiere
NOUN: places
ADJ: impressive
NOUN: light
NOUN: installations
DET: lumierelondon2018
NOUN: check
VERB: ends
ADP: across
ADJ: central
ADJ: london
NOUN: photos
VERB: walk
ADP: around
NOUN: king
NOUN: cross
NOUN: granary
NOUN: square
NOUN: saturdaymotivation
NOUN: favorite
PRT: lumiere
NOUN: places
VERB: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
PRT: lumiere
NOUN: joy
PRT: lumiere
NOUN: london
ADJ: busy
NOUN: saturday
NOUN: night
NOUN: people
VERB: experience
NOUN: illumaphonium
NOUN: michael
NOUN: davis
X: alamynews
X: flint_pr
X: aichoketrust
ADV: especially
VERB: appreciated
ADJ: complimentary
ADJ: pro
NOUN: brexit
NOUN: pep
NOUN: talk
NOUN: display
NOUN: trafalgar
NOUN: square
ADV: ever
VERB: wan
PRT: na
VERB: cry
ADJ: beautiful
NOUN: something
ADJ: lovely
ADJ: long
NOUN: walk
ADP: around
NOUN: london
VERB: see
PRON: supermathskid
ADV: really
VERB: enjoyed
VERB: seeing
NOUN: tonight
PRT: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: jaimelondonboy
VERB: staring
ADJ: light
NOUN: lumierelondon
NOUN: jaimelondonboy
VERB: got
NOUN: king
NOUN: cross
VERB: see
ADJ: good
NOUN: god
ADJ: whole
NOUN: world
NOUN: bet
NOUN: trump
ADV: somewhere
VERB: standing
ADJ: orange
ADJ: light
NOUN: make
NOUN: oranger
NOUN: light
NOUN: festival
NOUN: aopédelondres
NOUN: london
NOUN: visitlondon
NOUN: igerslondon
NOUN: wanderlust
VERB: pooped
NOUN: weekender
NOUN: london
VERB: see
ADJ: lumierelondonfestival
NOUN: lumierelondon
NOUN: london
NOUN: londres
NOUN: uk
PRON: em
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: londonacritic
ADJ: great
NOUN: time
NOUN: highlights
ADV: still
VERB: need
VERB: see
NOUN: rest
VERB: aim
ADJ: next
NOUN: nights
X: lighta
X: lightfestival
X: lumierelondon
X: lumiere
NOUN: pt
NOUN: ii
NOUN: lucydrury21
NOUN: fish
NOUN: phone
NOUN: box
NOUN: lumierelondon
NOUN: lumierelondon2018
NOUN: lumiere
NOUN: granary
ADJ: square
NOUN: king
NOUN: cross
NOUN: granary
ADJ: square
ADJ: light
NOUN: festival
NOUN: aopédelondres
NOUN: london
NOUN: visitlondon
NOUN: igerslondon
NOUN: wanderlust
NOUN: leakestarches
NOUN: installation
NOUN: imakefings
VERB: got
ADV: mayoroflondon
ADJ: light
NOUN: festival
NOUN: aopédelondres
NOUN: london
X: visitlondon
X: igerslondon
X: wanderlust
NOUN: westminster
NOUN: abbey
NOUN: london
X: lumierelondon2018
X: lumierelightfestival
X: travelbloggers
X: travelblogger
NOUN: london
VERB: lit
NOUN: westminster
NOUN: mayfair
NOUN: soho
NOUN: southbank
NOUN: installation
NOUN: aichoketrust
NOUN: londonisopen
ADP: near
NOUN: king
NOUN: cross
NOUN: king
NOUN: cross
ADP: goodnight
X: trafalgarsquare
X: visitlondon
X: londonist
X: aichoketrust
X: lumiere
X: ldn
X: loki_lego
NOUN: leicester
ADJ: square
NOUN: lumierelondon
NOUN: helbron
NOUN: thanks
ADV: second
ADJ: magical
NOUN: night
NOUN: lights
VERB: visitlondon
ADV: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: blueprintmag
NOUN: highlights
VERB: wave
NOUN: child
NOUN: hood
NOUN: illumaphonium
NOUN: amp
NOUN: impulse
NOUN: sunday
NOUN: night
NOUN: nightingale
NOUN: berkley
ADJ: square
X: obvs
X: aichoketrust
X: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: lumierelondon
NOUN: aichoketrust
ADJ: amazing
NOUN: installations
NOUN: kings
VERB: cross
NOUN: amp
NOUN: oxford
NOUN: circus
NOUN: favourites
NOUN: installation
NOUN: favourites
NUM: 13
NUM: 10
NUM: 6
NOUN: year
ADJ: old
NOUN: boy
NOUN: aichoketrust
NOUN: city
VERB: looking
ADV: pretty
ADV: dianespencerfun
ADJ: beautiful
NOUN: lights
ADV: way
VERB: work
NOUN: comedycarnival
NOUN: tonight
NOUN: lumierelondon
NOUN: flamingos
DET: lumiere
NOUN: festival
NOUN: london
NOUN: visitlondon
NOUN: timeoutlondon
NOUN: westminsterabbey
NOUN: adithatsme
ADJ: cool
NOUN: booth
NOUN: onlyinlondon
NUM: seven
NOUN: dials
NOUN: london
NOUN: londongramer
NOUN: westminsterabbey
VERB: lit
ADV: wonderfully
VERB: captured
NOUN: jhinlondon
NOUN: thisislondon
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: gavin7117
ADV: rossbolwill
ADJ: favourite
NOUN: thing
ADJ: bright
NOUN: lights
NOUN: ideas
VERB: looking
ADP: around
VERB: seeing
NOUN: wonder
NOUN: amp
NOUN: joy
NOUN: people
VERB: faces
NUM: one
NOUN: millions
NOUN: reasons
VERB: love
ADJ: creative
NOUN: mass
NOUN: happenings
ADJ: public
NOUN: spaces
NOUN: thanks
X: aichoketrust
X: outdooras
NOUN: london
NOUN: lumierelondon
NOUN: lumierelondon
ADJ: fabulous
ADJ: many
ADJ: stunning
NOUN: installations
ADJ: various
NOUN: aists
VERB: pictures
NOUN: justice
VERB: go
NOUN: visit
NOUN: london
VERB: see
ADJ: free
ADJ: london
ADJ: fantastic
NOUN: installations
ADJ: close
NOUN: voyage
NOUN: projection
NOUN: hotelcaferoyal
NOUN: pa
NOUN: exhibits
VERB: see
NOUN: westminsterabbey
NOUN: wabbey
VERB: bathed
ADJ: light
NOUN: projections
DET: lumierelondon
VERB: ends
NOUN: tomorrow
NOUN: night
NOUN: light
VERB: seeking
ADJ: light
ADJ: light
NOUN: light
PRT: beguile
VERB: find
ADJ: light
NOUN: darkness
VERB: lies
NOUN: love
NOUN: labour
VERB: lost
NOUN: shakespearesunday
NOUN: williamshakespeare
NOUN: lumierelondon
NOUN: london
NOUN: lovelondon
NOUN: colour
NOUN: londoneye
NOUN: southbank
NOUN: rivehames
NOUN: reflections
PRON: amichanc
VERB: found
X: cirquebijou
X: lumierelondon
X: visitlondon
X: aichoketrust
X: alistaircaird
X: holland_tom
NOUN: pa
PRT: lumière
NOUN: london
VERB: think
NOUN: weekend
NOUN: wave
VERB: watching
X: sroosegaarde
X: waterlicht
X: kingscrossn1c
X: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
PRT: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: dandelionlights
ADJ: good
NOUN: colours
NOUN: london
NOUN: divineintervention
NOUN: westminsterabbey
VERB: lit
ADV: wonderfully
VERB: captured
X: jhinlondon
X: thisislondon
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
NOUN: animal
NOUN: beauties
NOUN: lumierelondon
NOUN: london
NOUN: chinatown
DET: a
NOUN: animals
NOUN: fish
NOUN: flamingo
NOUN: robbingham
ADJ: giant
NOUN: nightingale
NOUN: berkeley
ADJ: square
NOUN: granary
NOUN: square
NOUN: king
NOUN: cross
ADV: granary
ADJ: square
ADJ: great
NOUN: time
NOUN: evening
ADJ: amazing
ADJ: able
NOUN: wander
ADP: round
VERB: seeing
ADJ: awesome
NOUN: installations
NOUN: pics
VERB: follow
NOUN: tomorrow
NOUN: lovelondon
NOUN: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
ADV: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
NOUN: deliacazzato
X: wow
ADJ: beautiful
X: westminsterabbey
X: lumierelondon
X: lumiere
ADJ: fabulous
NOUN: tonyrdb
NOUN: kingscross
NOUN: alanstweets
ADV: lumierelondon
ADJ: bad
NOUN: planning
NOUN: guys
VERB: kingscross
VERB: spending
NOUN: weekend
NOUN: london
ADJ: serious
NOUN: milage
VERB: clocked
NOUN: evening
ADV: really
VERB: recommend
ADJ: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
ADJ: holy
NOUN: mary
NOUN: whatcolourdoyoucallthis
NOUN: colours
NOUN: darraghdoyle
NOUN: love
NOUN: aichoketrust
NOUN: visitlondon
NOUN: people
VERB: cycle
VERB: make
NOUN: lights
VERB: come
NOUN: victoria
ADJ: beautiful
NOUN: installation
NOUN: london
NOUN: lumierelondon
NOUN: fun
VERB: checking
ADV: pretty
DET: a
NOUN: installations
DET: lumiere
NOUN: festival
ADV: never
VERB: seen
ADJ: many
NOUN: people
VERB: crowd
ADP: around
NOUN: phone
NOUN: booth
NOUN: lumierelondon2018
VERB: love
NOUN: smell
NOUN: lazer
NOUN: evening
X: somethingelse
X: newwayoflooking
X: lumierelondon
X: lumierelondon2018
X: lumiere
NOUN: voyage
ADV: lumierelondon
ADJ: good
NOUN: colours
NOUN: london
NOUN: divineintervention
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
ADP: around
NOUN: london
NOUN: weekend
ADV: highly
VERB: recommend
VERB: check
ADJ: spectacular
NOUN: selection
NOUN: light
VERB: based
X: aworks
X: ritatudela
X: este
X: fin
X: de
X: semana
X: en
X: londres
X: la
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: visitlondon
X: wow
ADJ: beautiful
ADJ: westminsterabbey
NOUN: home
NOUN: day
VERB: enjoyed
ADJ: knackered
NOUN: hope
ADJ: good
NOUN: night
NOUN: bed
NOUN: joinin247
NOUN: years
NOUN: area
VERB: avoid
NOUN: neon
VERB: known
NOUN: tottenham
NOUN: police
NOUN: lights
VERB: flashing
NOUN: lumierelondon
NUM: one
NOUN: day
NOUN: area
VERB: feel
ADJ: safe
VERB: feel
ADJ: proud
NOUN: change
VERB: coming
VERB: blown
ADV: away
ADJ: wabbey
NOUN: evening
VERB: want
VERB: move
ADJ: psychedelic
NOUN: planet
NOUN: anyone
VERB: want
VERB: join
NOUN: squirrel
NUM: 2018
VERB: comes
ADV: close
NOUN: tomorrow
VERB: read
NOUN: ceo
NOUN: pattiharris
NUM: 2016
NOUN: op
NOUN: ed
ADJ: first
NOUN: festival
NOUN: public
DET: a
ADJ: positive
NOUN: impact
NOUN: cities
NOUN: communities
VERB: loved
ADJ: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: fish
NOUN: phone
NOUN: box
X: lumierelondon
X: lumierelondon2018
X: lumiere
X: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: robbingham
ADJ: giant
NOUN: nightingale
NOUN: berkeley
ADJ: square
NOUN: nightingale
NOUN: berkeley
ADJ: square
NOUN: lights
VERB: including
NOUN: king
NOUN: cross
NOUN: sunday
ADJ: final
NOUN: day
NOUN: aether
NOUN: architecturesocialclub
NOUN: granary
NOUN: square
NOUN: aichoketrust
VERB: make
ADJ: sure
VERB: buy
VERB: printed
NOUN: guide
NUM: 60
ADJ: beautiful
NOUN: pages
VERB: help
VERB: navigate
NOUN: festival
ADJ: available
NOUN: purchase
NUM: 5
ADP: across
NOUN: footprint
NOUN: cards
ADJ: mobile
NOUN: payments
VERB: accepted
NOUN: thanks
X: squareuk
NOUN: piccadillycircus
NUM: 3
NUM: 3
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: piccadillycircus
NUM: 2
NUM: 3
NOUN: night
NOUN: london
ADJ: full
ADJ: colourful
NOUN: lights
X: lumierelondon
X: kingscross
X: granarysquare
X: piccadillycircus
NUM: 1
NUM: 3
NOUN: guriinlondon
NOUN: tá
NOUN: rolando
PRT: neste
ADJ: final
X: de
X: semana
X: com
X: um
NOUN: monte
X: de
X: instalação
NOUN: massa
PRT: esta
NOUN: piccadilly
X: e
X: abadia
X: foram
X: mais
NOUN: massa
X: pra
X: mim
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
X: simonmanleyfco
X: que
NOUN: haya
NOUN: luz
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: en
X: londres
X: lumierelondon
ADJ: bright
NOUN: city
NOUN: lights
ADJ: shiny
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: aichoketrust
NOUN: ldn_culture
NOUN: piccadilly
X: roadclosures
X: anyday
X: kaybuxton
NOUN: opening
NOUN: night
NOUN: lumierelondon
ADJ: sore
NOUN: feet
ADJ: definite
NOUN: favourites
ADV: far
ADV: doublemacbex
ADJ: many
ADJ: awesome
NOUN: light
NOUN: installations
DET: kingscrossn1c
NOUN: year
VERB: kingscrossn1c
DET: another
ADJ: great
NOUN: night
ADJ: stunning
NOUN: light
NOUN: installations
NOUN: kingscrossn1c
NOUN: pa
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADV: thelondoneye
ADJ: stephaniejay_uk
NOUN: way
ADV: solo
NOUN: bop
ADP: around
NOUN: soho
NOUN: piccadilly
NOUN: regents
NOUN: st
VERB: want
VERB: see
NOUN: lumierelondon
ADJ: magic
NUM: 2016
NOUN: purdy
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
X: aichoketrust
X: biggsytravels
X: mostrei
X: muita
X: coisa
X: lá
NOUN: instagram
NOUN: stories
X: ah
X: e
X: wabbey
X: tá
ADJ: surreal
X: por
X: mim
X: podiam
X: deixar
X: sempre
X: assim
ADJ: stunning
NOUN: piccadillycircus
ADP: via
NOUN: arvinddevalia
NOUN: light
NOUN: lumierelondon
NOUN: architecture
NOUN: altheaefunshile
NOUN: lots
VERB: walking
NOUN: tonight
NOUN: experience
ADJ: great
NOUN: evening
NOUN: aichoketrust
NOUN: londonlife
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
PRT: lumiere
ADJ: harmonic
NOUN: poal
NOUN: blackhole
NOUN: eclipse
NOUN: st
ADJ: james
NOUN: church
NOUN: piccadilly
NOUN: tfltrafficnews
NOUN: road
NOUN: closures
VERB: removed
NOUN: traffic
NOUN: flows
VERB: returning
ADJ: normal
NOUN: time
NOUN: day
NOUN: event
VERB: continue
NOUN: tomorrow
NOUN: closures
VERB: place
NOUN: 1630hrs
PRT: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
NOUN: shots
VERB: tá
NOUN: rolando
PRT: neste
ADJ: final
X: de
X: semana
X: com
X: um
NOUN: monte
X: de
X: instalação
NOUN: massa
PRT: esta
NOUN: piccadilly
X: e
X: abadia
X: foram
X: mais
NOUN: massa
X: pra
X: mim
X: lumierelondon
NOUN: king
NOUN: cross
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
PRT: thelondoneye
ADJ: multicoloured
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: yesterday
VERB: went
ADJ: london
NOUN: flamingo
NOUN: flyway
NOUN: lantern
NOUN: company
NOUN: jo
NOUN: pocock
NOUN: chinatown
NOUN: aichoketrust
NOUN: visitlondon
NOUN: totastemaker
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
ADJ: tfltrafficnews
NOUN: road
NOUN: closures
VERB: removed
NOUN: traffic
NOUN: flows
VERB: returning
ADJ: normal
NOUN: time
NOUN: day
NOUN: event
VERB: continue
NOUN: tomorrow
NOUN: closures
VERB: place
NOUN: 1630hrs
NOUN: team
VERB: keeping
NOUN: princes
ADJ: safe
PRON: us
VERB: patrolling
NOUN: shine
ADJ: brightest
NOUN: light
ADV: truly
ADV: well
VERB: spent
NOUN: evening
NOUN: lumierelondon
NOUN: saturdaynight
NOUN: visitlondon
NOUN: lights
NOUN: lighting
VERB: thank
NOUN: mayoroflondon
NOUN: commission
VERB: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
NUM: one
NOUN: day
NOUN: comb
NOUN: hair
NOUN: selfie
NOUN: loki_lego
NOUN: leicester
ADJ: square
NOUN: lumierelondon
NOUN: learningtheway1
NOUN: wabbey
ADJ: spectacular
ADJ: please
NOUN: someone
VERB: explain
NOUN: apostle
NOUN: love
NOUN: motion
NOUN: rhys
NOUN: doren
ADJ: royal
NOUN: academy
X: couyard
X: aichoketrust
X: visitlondon
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
NOUN: thanks
X: aists
X: aichoketrust
VERB: love
NOUN: london
VERB: buzzing
DET: a
NOUN: architure
VERB: telling
NOUN: stories
ADV: together
NOUN: evening
NOUN: liver16bird
NOUN: amp
NOUN: katspur71
ADJ: spectacular
NOUN: effo
NOUN: aichoketrust
VERB: making
NOUN: pas
NOUN: london
VERB: look
ADJ: amazing
VERB: generating
ADJ: real
NOUN: buzz
NOUN: place
DET: another
ADJ: great
NOUN: night
VERB: spent
ADV: aichoketrust
ADJ: spontaneous
NOUN: trip
NOUN: town
NOUN: catch
NOUN: lumierelondon
ADJ: festive
ADJ: fantastic
ADJ: free
DET: a
NOUN: lumierelondon2018
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: spectral
X: katarzyna
X: malejka
NOUN: joachim
NOUN: slugocki
NOUN: st
ADJ: james
ADJ: square
NOUN: aichoketrust
NOUN: visitlondon
NOUN: totastemaker
NOUN: road
NOUN: closures
VERB: removed
NOUN: traffic
NOUN: flows
VERB: returning
ADJ: normal
NOUN: time
NOUN: day
NOUN: event
VERB: continue
NOUN: tomorrow
NOUN: closures
VERB: place
NOUN: 1630hrs
X: ritatudela
X: este
X: fin
X: de
X: semana
X: en
X: londres
X: la
X: segunda
X: edición
X: del
NOUN: festival
X: de
X: luces
X: visitlondon
NOUN: lots
VERB: walking
NOUN: tonight
NOUN: experience
ADJ: great
NOUN: evening
X: aichoketrust
X: londonlife
X: lumière
ADJ: london
ADJ: marvellous
NOUN: lumierelondon
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
DET: lumiere
NOUN: night
NOUN: night
NOUN: london
DET: another
NOUN: day
VERB: sets
NUM: one
NOUN: evening
VERB: left
NOUN: wish
ADV: longer
X: mpsonthewater
X: southbank
VERB: lit
NOUN: pa
ADV: nimbos
ADJ: cold
ADJ: enjoyable
NOUN: nyssa1968
NOUN: evening
NOUN: lumiere2017
NOUN: lumierelondon
ADJ: fantastic
NOUN: display
PRT: lumiere
ADJ: london
NOUN: wellbeing
NOUN: london
X: piccadillycircus
X: entre
X: les
X: rangs
NOUN: rami
NOUN: bebawi
NOUN: granary
NOUN: square
NOUN: capitalr
ADV: earlier
ADV: really
ADJ: good
ADJ: good
NOUN: time
NOUN: londoners
VERB: enjoying
ADJ: plenty
NOUN: space
NOUN: everyone
VERB: enjoying
NOUN: aichoketrust
NOUN: visitlondon
NOUN: voyage
NOUN: hotel
NOUN: cafe
ADJ: royal
NOUN: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
ADJ: harmonic
NOUN: poal
NOUN: chris
NOUN: plant
NOUN: st
ADJ: james
NOUN: church
NOUN: aichoketrust
NOUN: visitlondon
NOUN: lumierelondon
ADJ: great
NOUN: day
NOUN: volunteering
NOUN: today
NOUN: fun
VERB: seeing
ADJ: many
NOUN: people
VERB: enjoyed
NOUN: aworks
VERB: came
VERB: add
ADJ: light
NOUN: january
NOUN: eve
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: visitlondon
NUM: 5
ADJ: gorgeous
NOUN: aworks
VERB: discover
VERB: explore
ADJ: beautiful
NOUN: fitzrovia
NOUN: area
VERB: let
PRON: us
VERB: know
ADJ: favourite
X: westend
X: mpswestminster
X: projectservator
X: lumière
NOUN: trafalgar
NOUN: square
ADV: earlier
ADJ: close
NOUN: npglondon
NOUN: smitf_london
VERB: wrap
ADJ: warm
NOUN: evening
VERB: getting
ADJ: milder
NOUN: teamworktomakethedreamwork
NOUN: actioncountersterrorism
NOUN: welightupeverywhere
NOUN: voyage
NOUN: camille
ADJ: gross
NOUN: leslie
NOUN: epsztein
NOUN: hotel
NOUN: cafe
ADJ: royal
NOUN: aichoketrust
NOUN: visitlondon
NOUN: totastemaker
NOUN: pa
NUM: 2
NOUN: lumiere
NUM: 2018
NOUN: mayfair
ADP: like
NOUN: treasure
NOUN: hunting
X: ________________________________
X: lumiere
X: lumiere2018
NOUN: london
NOUN: uk
DET: a
ADV: neonlights
ADJ: beautiful
VERB: illuminated
NOUN: lumierelondon
VERB: go
NOUN: team
NOUN: cbd
ADJ: great
NOUN: meet
ADJ: cultural
NOUN: connectors
NOUN: tonight
VERB: see
NOUN: crowds
VERB: enjoying
NOUN: bebawi
NOUN: installation
VERB: built
NOUN: b
NOUN: amp
NOUN: residents
VERB: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
NOUN: dianespencerfun
ADJ: beautiful
NOUN: lights
ADV: way
VERB: work
NOUN: comedycarnival
NOUN: tonight
NOUN: lumierelondon
NOUN: flamingos
DET: binnie095
NOUN: time
NOUN: city
NOUN: glow
NOUN: lumierelondon
ADJ: cold
ADJ: enjoyable
NOUN: nyssa1968
NOUN: evening
NOUN: lumiere2017
NOUN: lumierelondon
ADV: theatrebiz
ADJ: proud
NOUN: call
ADV: west
VERB: end
ADV: home
VERB: loving
NOUN: westend
NOUN: london
NOUN: lights
X: lumierelondon
X: lovelondon
X: theatreland
X: theatre
X: londontheatre
ADJ: great
NOUN: night
NOUN: aichoketrust
ADV: definitely
VERB: heading
ADV: back
NOUN: tomorrow
NOUN: 30slady
NOUN: catch
NOUN: rest
VERB: enjoyed
NOUN: lumierelondon
NOUN: today
ADP: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: alanstweets
X: lumierelondon
ADJ: bad
NOUN: planning
NOUN: guys
ADJ: spectacular
NOUN: walk
ADP: around
NOUN: london
NOUN: tonight
NOUN: lumierelondon
NOUN: lovelondon
VERB: go
NOUN: regret
ADJ: beautiful
NOUN: lights
ADV: way
VERB: work
NOUN: comedycarnival
NOUN: tonight
NOUN: lumierelondon
NOUN: flamingos
VERB: visitlondon
ADJ: sweet
NOUN: dreams
NOUN: thelondoneye
VERB: would
VERB: waaaay
ADJ: better
NOUN: tonight
NOUN: people
VERB: trying
VERB: take
NOUN: selfies
NOUN: everything
ADV: apparently
VERB: see
NOUN: people
VERB: see
VERB: seeing
NOUN: matters
ADJ: typical
NOUN: frictions
DET: mader
VERB: wiermann
NUM: 103
NOUN: regent
NOUN: street
NOUN: aichoketrust
NOUN: visitlondon
NOUN: visitlondon
ADJ: gorgeous
NOUN: photos
ADJ: first
NOUN: night
NOUN: amyelizabethtv
ADJ: beautiful
NOUN: light
NOUN: installations
NOUN: amp
VERB: shining
NOUN: sunday
NOUN: aichoketrust
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: dthaynes
X: staed
NOUN: holiday
NUM: 9
NOUN: haircut
ADJ: free
NOUN: bubbles
VERB: walking
NOUN: round
NOUN: london
NOUN: oh
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: pa
NUM: 1
NOUN: lumiere
NUM: 2018
NOUN: mayfair
ADP: like
NOUN: treasure
NOUN: hunting
X: ________________________________
X: lumiere
X: lumiere2018
NOUN: london
NOUN: uk
DET: a
ADV: neonlights
ADJ: beautiful
ADJ: illuminated
ADJ: bright
NOUN: lumierelondon
NOUN: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
NOUN: london
NOUN: lumiere
NOUN: victoria
X: streetasuk
X: grosvenor_ldn
X: lumierelondon
X: visitlondon
X: visitbritain
X: visitengland
X: timeoutlondon
X: mayoroflondon
X: londonist
X: shaida
VERB: walking
NUM: 2015
NOUN: julian
X: opie
X: broadwick
NOUN: street
NOUN: visitlondon
NOUN: aichoketrust
NOUN: totastemaker
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
VERB: staring
ADJ: light
NOUN: lumierelondon
ADJ: great
NOUN: day
NOUN: today
NOUN: londonafair
NOUN: amp
NOUN: melissa_weston_
NOUN: amp
NOUN: rach
NOUN: wabbey
ADJ: spectacular
ADJ: please
NOUN: someone
VERB: explain
NOUN: apostle
ADJ: lovely
NOUN: evening
VERB: going
NOUN: london
VERB: see
NOUN: westminster
NOUN: piccadilly
ADJ: big
NOUN: faves
VERB: tomhourigan
VERB: forgotten
VERB: made
ADJ: journey
NOUN: night
NOUN: shift
VERB: bit
ADJ: fun
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
ADV: even
X: sho
NOUN: westminster
NOUN: leg
VERB: feels
ADP: like
ADJ: modern
ADJ: secular
NOUN: pilgrimage
NOUN: stations
VERB: pairs
ADJ: little
NOUN: crowds
ADJ: incredible
NOUN: awork
ADV: completely
VERB: woh
NUM: 8
NOUN: miles
VERB: walking
NOUN: saturday
NOUN: evening
ADJ: fab
NOUN: night
ADV: always
ADJ: hparlett
NOUN: alanstweets
ADV: lumierelondon
ADJ: bad
NOUN: planning
NOUN: guys
ADJ: beefeaterdave
NOUN: evening
ADJ: great
NOUN: pieces
DET: leicestersquare
NOUN: raven
DET: westminsterabbey
ADV: way
ADV: home
ADJ: sore
NOUN: feet
ADJ: lovely
NOUN: evening
NOUN: lumierelondon
ADV: well
ADP: woh
VERB: wandering
ADP: around
ADJ: cold
ADJ: spectacular
NOUN: lumierelondon
NOUN: lumierelondon
NOUN: royalacademy
NOUN: catch
NOUN: ra
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: tomorrow
NOUN: rhys
NOUN: coren
VERB: love
NOUN: motion
NOUN: light
NOUN: burlington
NOUN: house
ADJ: colourful
NOUN: matisse
ADJ: inspired
NOUN: animations
VERB: find
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
VERB: thelondoneye
NOUN: westminster
NOUN: abbey
VERB: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: grannarysquare
X: kingscrossn1c
NUM: one
ADJ: best
NOUN: displays
NOUN: year
NOUN: thanks
VERB: coming
NOUN: tonight
NOUN: everyone
VERB: loved
VERB: seeing
NOUN: pictures
VERB: keep
VERB: coming
VERB: let
PRON: us
VERB: know
ADJ: favourite
NOUN: installation
ADV: back
NOUN: tomorrow
NUM: 5
NOUN: 30pm
NOUN: closing
NOUN: night
NUM: 2018
NOUN: rambedance
VERB: seen
NOUN: dancer
NOUN: feet
VERB: building
VERB: illuminated
NOUN: evening
NOUN: weekend
NOUN: iphone
NOUN: photo
VERB: think
NOUN: westminster
NOUN: abbey
NOUN: installation
NOUN: londonviewpts
NOUN: tonight
NOUN: tomorrow
ADJ: last
NOUN: chance
VERB: watch
ADJ: new
NOUN: video
VERB: see
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: sarah_wall
NOUN: nightingale
NOUN: berkeley
NOUN: square
ADV: even
VERB: playing
NOUN: song
NOUN: lumierelondon
NOUN: iandmillett
NOUN: surfgirldeb
NOUN: g
NOUN: night
NOUN: deborah
VERB: hope
ADJ: wonderful
NOUN: weekend
VERB: went
VERB: see
VERB: met
NOUN: flamingo
NOUN: china
NOUN: town
NOUN: londonwhispers
NOUN: southbank
NOUN: night
ADP: like
NOUN: nightlife
NOUN: dontmissit
NOUN: thelondoneye
NOUN: aichoketrust
NOUN: find
NOUN: map
NOUN: amp
NOUN: details
VERB: see
NOUN: visitlondon
VERB: keeponwalking
NOUN: westminster
NOUN: abbey
NOUN: wabbey
NOUN: piccadilly
NOUN: circus
NOUN: fire
NOUN: station
NOUN: display
ADV: really
ADV: pretty
VERB: rose
ADV: maya_lakhenpaul
ADJ: glorious
ADJ: light
NOUN: festival
NOUN: piccadilly
NOUN: circus
NOUN: yesterday
VERB: love
NOUN: london
X: lumierelondon
X: londonlumiere
X: lumiere
X: piccadillycircus
X: adamscottg
ADJ: huge
NOUN: thanks
ADJ: lovely
ADJ: london
NOUN: walkers
VERB: eschewed
NOUN: pleasures
VERB: walk
ADJ: dark
NOUN: side
NOUN: londonwalks
NOUN: ghosts
ADJ: old
NOUN: city
NOUN: tour
NOUN: tonight
NOUN: day
VERB: enjoying
NOUN: sights
NOUN: westminster
NOUN: abbey
VERB: zacdenman
ADJ: beautiful
NOUN: lightshow
ADP: like
NOUN: rave
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: aist
NOUN: musician
NOUN: musicians
NOUN: bands
VERB: band
VERB: filming
NOUN: videoproduction
NOUN: londontown
NOUN: videographer
NOUN: videography
NOUN: musicvideo
NOUN: zacdenman
VERB: impressed
ADJ: free
ADJ: outdoor
NOUN: exposition
VERB: organised
NOUN: mayoroflondon
ADV: around
ADV: necently
VERB: rejuvenated
NOUN: kings
VERB: cross
NOUN: area
VERB: go
ADV: ps
ADJ: amazing
VERB: would
ADJ: london
NOUN: borough
VERB: could
VERB: organise
NOUN: something
ADP: like
ADJ: incentivise
NOUN: people
VERB: discover
NOUN: london
NOUN: royalacademy
NOUN: catch
NOUN: ra
NUM: 5
NUM: 30
NUM: 10
NOUN: 30pm
NOUN: tonight
NOUN: tomorrow
NOUN: rhys
NOUN: coren
VERB: love
NOUN: motion
NOUN: light
NOUN: burlington
NOUN: house
ADJ: colourful
NOUN: matisse
ADJ: inspired
NOUN: animations
VERB: find
ADV: pukkahpunjabi
ADJ: fabulous
ADV: really
ADJ: wonderful
VERB: see
NOUN: city
ADV: creatively
VERB: lit
ADJ: carless
NOUN: streets
ADJ: joyful
NOUN: piccadilly
NOUN: circus
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
VERB: saw
NOUN: someone
VERB: wearing
NOUN: officialrezz
NOUN: glasses
ADJ: light
NOUN: festival
NOUN: tonight
ADJ: jealous
VERB: looked
ADJ: awesome
NOUN: lumiere
NOUN: lightfestival
NOUN: london
VERB: lighting
DET: a
NOUN: lumierelondon
NOUN: rezz
VERB: gutted
VERB: know
ADV: sooner
VERB: would
VERB: loved
NOUN: experience
NOUN: festival
NOUN: lights
X: wabbey
X: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: mpsonthewater
NOUN: southbank
VERB: lit
NOUN: pa
NOUN: evening
ADJ: great
NOUN: pieces
DET: leicestersquare
NOUN: raven
NOUN: westminsterabbey
NOUN: trafalgar
ADJ: square
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
X: lumierelondon
X: westminsterabbey
X: cityofwestminster
X: londinium
DET: another
ADJ: great
NOUN: event
NOUN: london
NOUN: images
VERB: walk
NOUN: friday
VERB: follow
ADJ: second
NOUN: visit
NOUN: evening
NOUN: kings
VERB: cross
VERB: thank
ADV: zebranobars
ADJ: great
NOUN: meal
NOUN: pinkribbonfound
NOUN: pinklondon2017
NOUN: raffle
NOUN: amp
ADJ: able
NOUN: enjoy
NOUN: lumierelondon
VERB: switch
ADJ: light
NOUN: baby
NOUN: oxfordcircus
ADJ: london
ADJ: london
ADJ: united
NOUN: kingdom
NOUN: london
VERB: turned
NOUN: city
VERB: sized
ADJ: sensory
NOUN: room
NOUN: lumiere
NOUN: festival
ADP: nofilter
NOUN: westminster
NOUN: abbey
VERB: thank
ADV: truly
ADJ: amazing
NOUN: secretldn
NOUN: amazing_london
NOUN: kent_online
NOUN: london
NOUN: lumierelondon
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: nofilter
NOUN: london
VERB: lumiere
NOUN: westminster
NOUN: abbey
VERB: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: surfgirldeb
NOUN: g
NOUN: night
NOUN: deborah
VERB: hope
ADJ: wonderful
NOUN: weekend
VERB: went
VERB: see
VERB: met
NOUN: flamingo
NOUN: china
NOUN: town
ADJ: wicked
NOUN: night
VERB: volunteering
DET: lumiere
ADJ: london
NOUN: home
NOUN: warm
VERB: get
ADJ: ready
NOUN: tomorrow
NOUN: lights
VERB: volunteering
NOUN: funtimes
NUM: 50
ADJ: public
DET: a
NOUN: installations
NOUN: display
NOUN: weekend
ADJ: second
NOUN: year
NOUN: light
NOUN: festival
NOUN: uk
NOUN: capital
NOUN: origin
NOUN: world
PRT: lumiere
NOUN: london
NOUN: oxfordstreet
NOUN: nightlife
CONJ: wtf
NOUN: oxford
NOUN: street
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: lumiere
X: lightbench
X: weighhouse
NOUN: street
NUM: 2018
NOUN: originoftheworld
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADV: thelondoneye
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: 예쁘지
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: loki_lego
NOUN: lumierelondon
NOUN: trafalgar
ADJ: square
NOUN: leicester
ADJ: square
NOUN: wabbey
NOUN: stas
NOUN: tonight
VERB: see
NOUN: abbey
VERB: transformed
NOUN: patrice
NOUN: warrener
ADJ: dazzling
NOUN: installation
NOUN: light
NOUN: spirit
NOUN: evening
NOUN: sunday
VERB: make
NOUN: visit
NOUN: half
NOUN: price
NOUN: entry
NOUN: abbey
NUM: 6
NUM: 30
NUM: 8
NOUN: 00pm
NOUN: tonight
NOUN: tomorrow
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: visitlondon
ADJ: sweet
NOUN: dreams
ADJ: thelondoneye
ADJ: london
NOUN: lights
DET: lumiere
NOUN: london
NOUN: nightlife
NOUN: cold
NOUN: kingscross
NOUN: laser
NOUN: granary
NOUN: solomongreyband
VERB: listening
NOUN: thelastpost
NOUN: score
ADV: outdoors
NOUN: kings
VERB: cross
NOUN: bliss
ADJ: sweet
NOUN: dreams
X: thelondoneye
X: john_pahl
X: lumiere
ADJ: london
ADJ: brilliant
ADP: like
ADJ: giant
NOUN: treasure
NOUN: hunt
DET: a
ADP: across
NOUN: london
NOUN: night
NOUN: visitlondon
ADJ: beautiful
NOUN: lightshow
ADP: like
NOUN: rave
NOUN: producer
NOUN: director
NOUN: cameraman
NOUN: promo
NOUN: coaching
NOUN: music
NOUN: video
NOUN: london
NOUN: londonmusic
NOUN: londonlife
NOUN: aist
NOUN: musician
NOUN: musicians
NOUN: bands
VERB: band
VERB: filming
NOUN: videoproduction
NOUN: londontown
NOUN: videographer
X: videography
X: musicvideo
X: zacdenman
X: lumiere
VERB: arrived
DET: lumiere
NOUN: london
NOUN: skyline
VERB: westminsterabbey
NOUN: westminster
NOUN: abbey
NUM: one
ADJ: favourite
NOUN: picture
NUM: one
VERB: called
NOUN: dot
VERB: seen
NOUN: king
ADJ: brilliant
ADJ: beautiful
NOUN: lights
VERB: wrap
ADJ: warm
NOUN: get
VERB: exploring
NOUN: ttballetwandswoh
NOUN: summary
NOUN: day
ADV: far
NOUN: pt
NUM: 3
NOUN: london
NOUN: withthebestie
ADJ: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: enlightenment
NOUN: westminsterabbey
NOUN: lumierelondon
NOUN: enlightenment
NOUN: london
NOUN: westminster
NOUN: biggsytravels
VERB: take
NOUN: bow
ADJ: many
NOUN: smiles
VERB: faces
NOUN: amp
ADV: rather
ADV: wonderfully
NOUN: lots
NOUN: people
VERB: talking
VERB: find
ADJ: exact
NOUN: stuff
VERB: looking
NOUN: lights
ADJ: london
NOUN: helbron
NOUN: thanks
ADV: second
ADJ: magical
NOUN: night
NOUN: lights
VERB: visitlondon
ADV: aichoketrust
VERB: explored
VERB: fitzrovia
ADV: yet
NUM: 5
ADJ: stunning
NOUN: aworks
VERB: discover
ADJ: vibrant
NOUN: area
NOUN: fitzpanership
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
NOUN: londonisopen
NOUN: lumiere
NOUN: kings
VERB: cross
ADJ: high
NOUN: right
NOUN: london
NOUN: lumiere
NOUN: lumierelondon2018
NOUN: kingscross
VERB: lights
DET: a
NOUN: sculpture
NOUN: music
VERB: sounds
NOUN: exhibition
NOUN: people
ADJ: busy
X: cityshots
X: snapshoot
X: londoncity
X: lightfestival
X: lovelondon
ADJ: random
NOUN: pigeontalks
ADJ: funny
NOUN: lights
NOUN: water
NOUN: lion
NOUN: trafalgar
ADJ: square
NOUN: god
ADJ: full
NOUN: stars
VERB: mesmerising
NOUN: cosmoscope
NOUN: simeon
NOUN: nelson
NUM: one
NOUN: favourites
PRT: lumiere
NOUN: london
NUM: 2018
NOUN: store
NOUN: st
NOUN: wc1e
NOUN: 7bs
VERB: shot
NOUN: v
ADJ: close
NOUN: range
NOUN: olympus
NOUN: omd
NOUN: em1
NOUN: 8mm
NOUN: f1
NUM: 8
NOUN: fisheye
NOUN: sculpture
NOUN: london
NOUN: olympus
NOUN: olympusuk
NOUN: london
NOUN: lighting
NOUN: weekend
NOUN: london
ADV: pretty
VERB: lights
NOUN: streets
ADJ: beautiful
NOUN: visitlondon
NOUN: night
NUM: 3
VERB: begun
VERB: put
NOUN: gloves
NOUN: amp
NOUN: scarf
VERB: explore
NUM: 50
NOUN: installations
ADP: across
NOUN: westminster
X: fitzrovia
X: mayfair
ADJ: london
NOUN: westend
NOUN: amp
NOUN: aichoketrust
NOUN: biggsytravels
NOUN: helenarbon
ADJ: beautiful
VERB: getting
VERB: see
NOUN: evening
VERB: loved
VERB: seeing
ADJ: pedal
NOUN: power
NOUN: action
VERB: rose
NOUN: westminster
NOUN: cathedral
NOUN: swing
ADP: inside
NUM: one
NOUN: queue
NOUN: sadiqkhan
ADJ: spectacular
NOUN: installations
NOUN: lighting
NOUN: london
X: londonisopen
X: lumiere
X: loki_lego
VERB: enjoying
NOUN: lumierelondon
NOUN: visitlondon
NUM: 5
ADJ: gorgeous
NOUN: aworks
VERB: discover
VERB: explore
ADJ: beautiful
NOUN: fitzrovia
NOUN: area
VERB: let
PRON: us
VERB: know
ADJ: favourite
NOUN: loki_lego
NOUN: trafalgar
ADJ: square
NOUN: lumierelondon
NOUN: waterlicht
NOUN: granary
ADJ: square
NOUN: photos
VERB: lumierelondon
ADJ: light
NOUN: show
NOUN: kings
VERB: cross
NOUN: tonight
NOUN: visitlondon
NOUN: londonist
NOUN: timeoutlondon
ADJ: great
NOUN: installation
VERB: loved
NOUN: scale
NOUN: concept
NOUN: jbruges
NOUN: aichoketrust
NOUN: landscapescenes
ADJ: amazing
NOUN: evening
NOUN: light
NOUN: installations
NOUN: year
ADJ: great
NOUN: work
NOUN: aists
VERB: thank
NOUN: aichoketrust
VERB: organising
DET: another
ADJ: fantastic
NOUN: festival
NOUN: du_culture
ADJ: huge
NOUN: congratulations
NOUN: friends
VERB: aichoketrust
DET: another
ADJ: great
NOUN: mickfusion
NOUN: durhamcathedral
VERB: rose
NOUN: window
NOUN: westminstercathedral
ADJ: amazing
NOUN: evening
NOUN: light
NOUN: installations
NOUN: year
ADJ: great
NOUN: work
NOUN: aists
VERB: thank
NOUN: aichoketrust
VERB: organising
DET: another
ADJ: fantastic
NOUN: festival
NOUN: rossbolwill
NOUN: aquarium
NOUN: telephone
NOUN: box
ADV: finally
VERB: got
VERB: see
ADJ: fishy
NOUN: glory
ADV: best
VERB: use
ADJ: disused
NOUN: telephone
NOUN: box
NOUN: library
VERB: demonstrated
NOUN: folk
NOUN: lewisham
NOUN: butterflies
NOUN: leicester
ADJ: square
NOUN: nofilter
NOUN: iphonex
NOUN: luminaire
NOUN: events
DET: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
DET: lightfantastic
NOUN: westminster
NOUN: abbey
NOUN: wtg
NOUN: aichoketrust
ADV: absolutely
VERB: loving
NOUN: westminsterabbey
NOUN: lumiere
NOUN: lumierelondon
NOUN: london
ADV: lovelondon
ADJ: lucky
ADJ: able
VERB: decide
NOUN: pop
NOUN: town
ADJ: last
NOUN: minute
NOUN: london
ADJ: brilliant
ADV: seriously
ADJ: incredible
NOUN: work
ADJ: huge
NOUN: scale
ADJ: personal
NOUN: highlights
ADV: far
NOUN: westminster
NOUN: abbey
ADV: grosvenor
ADJ: square
NOUN: trafalgar
ADJ: square
NOUN: darraghdoyle
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
NOUN: ravens
NOUN: leicester
ADV: square
VERB: look
ADJ: beautiful
NOUN: westminster
NOUN: abbey
NOUN: tonight
NOUN: thanks
NOUN: aichoketrust
NOUN: lumieredub
ADV: soon
VERB: please
ADJ: london
NOUN: lumierelondon
NOUN: adirectionk
ADJ: indian
NOUN: embassy
NOUN: london
VERB: illuminated
NOUN: aichoketrust
NOUN: visitlondon
NOUN: timeoutlondon
VERB: love
NOUN: research
NOUN: fun
VERB: go
NOUN: hand
NOUN: hand
NOUN: derbyunipgr
ADJ: fab
NOUN: day
VERB: researching
NOUN: light
VERB: attending
NOUN: lumiere
NOUN: london
VERB: thank
X: aichoketrust
X: lightlove
X: phdlife
X: scenography
NOUN: guardian
NOUN: angels
NOUN: pa
NOUN: exhibition
VERB: taking
NOUN: place
NOUN: london
NOUN: sunday
NOUN: night
X: visitlondon
X: timeoutlondon
X: londonist
X: standardnews
X: guardianphotos
X: lumierelondon
DET: a
NOUN: visitlondon
VERB: spent
NOUN: evening
NOUN: leicester
ADJ: square
NOUN: kezekiel
NOUN: complaint
ADV: long
ADJ: enough
NOUN: thanks
NOUN: aichoketrust
VERB: showing
PRON: us
ADJ: london
ADJ: whole
ADJ: new
ADJ: light
NOUN: alanstweets
ADV: lumierelondon
ADJ: bad
NOUN: planning
NOUN: guys
VERB: iphonex
NOUN: westminster
NOUN: abbey
VERB: theatrebiz
ADJ: proud
NOUN: call
ADV: west
VERB: end
ADV: home
VERB: loving
NOUN: westend
NOUN: london
NOUN: lights
X: lumierelondon
X: lovelondon
X: theatreland
X: theatre
X: londontheatre
ADJ: proud
NOUN: call
ADV: west
VERB: end
ADV: home
VERB: loving
NOUN: westend
NOUN: london
NOUN: lights
X: lumierelondon
X: lovelondon
X: theatreland
X: theatre
X: londontheatre
In [109]:
#(twitter['Text'][3000:6000])

Sentiment Analysis - Google

In [110]:
sentiment_client = language.LanguageServiceClient()

# The text to analyze
text = sentence_tokenized1
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

# Detects the sentiment of the text
sentiment = sentiment_client.analyze_sentiment(document=document).document_sentiment

print('Text: {}'.format(text))
print('Sentiment: {}, {}'.format(sentiment.score, sentiment.magnitude))
Text:  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  _designjunction visit  year many installations favourites loved installation dutch aist daan roosegaarde granary square kingscrossn1c fish phone booth lumiere london 2018 nofilters   aichoketrust ever wondered people behind  read interview harry qedproductions pa panership technicians_mih techniciansmakeithappen see selection favourite installations year  aichoketrust visitlondon ldn_gov bye bye  case missed  weekend hotelcaferoyal looked  kingscrossn1c visiting kingscrossn1c  weekend indulge a pay illustrationhq visit exhibitions gerald scarfe ready perused bit peace middle central london shitshow trumpshutdown  thank  dazzled inspired delicious escape colourful wonderland aichoketrust mayoroflondon visitlondon see lumierelondon2018 weekend absolutely loved wildlife theme leicester square paicularly incredibly detailed frogs amp toad middle beautiful well done involved  visitlondon deeeeelicious meal thelightermankx pa bihday weekend london town visiting  equally awesome  2018 comes close tomorrow read ceo pattiharris 2016 op ed first festival public a positive impact cities communities  aichoketrust love video electricpedals cirquebijou dancing front rose mickfusion  highlights victoriabid released photos  flickr pity uk freedom panorama lightshows messy wikicommons album  engcathedrals wow  wabbey westminsterabbey find cosmoscope simeon nelson interdisciplinary installation looks human biology wider context via illumni_blog lighting   wearewaterloouk repurposed christmas decorations make nice new entrance leakestreet  switched light dot lumiere  lumierelondon latergram spent pa weekend checking  pretty cool guys get lumiere london 2018 king cross incl battle bridge place granary square light festival walk  see sights hear sounds  fcbstudios great pa  festival david batchelor 60minutespectrum lighting installation redesigned hayward gallery pyramids  aichoketrust love video electricpedals cirquebijou dancing front rose mickfusion  highlights victoriabid origin world bubble 2018 lumiere london oxford circus visit website see order prints originoftheworldbubble canon lightinstallation landscape  longexposure oxfordcircus blue sky night normally means watch broken top jokes like one   ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  aichoketrust love video electricpedals cirquebijou dancing front rose mickfusion  highlights victoriabid  zacdenman another fantastic installation lumiere 2018  producer director cameraman promo coaching music video london londonmusic londonlife sessions filming videoproduction zacvideo studiosession londontown videographer videography musicvideo zacdenman  carla_ibigroup fun graham mariana checking lights lumiere london ibipeople ibisocial lumierelondon  lumiere lumierelondon2018 a installation london festivaloflights  aichoketrust love video electricpedals cirquebijou dancing front rose mickfusion  highlights victoriabid love video electricpedals cirquebijou dancing front rose mickfusion  highlights victoriabid  greypointe  cubitt park kings cross early thursday evening celebrating brilliant winter light festival lumiere showcased 58 magical installations across wonderful capital city  londonlightfestival digitaltech projectionmapping lightshow bihday enjoyed weekend london shame weather saw  lovely visit  year many installations favourites loved installation dutch aist daan roosegaarde granary square kingscrossn1c hope enjoyed year  feel inspired light like consider visiting eluminate2018 apparently one top 53 things cambridge lighting inspiration tuesdaythoughts  postcardslond1  westminster abbey pleased see  back  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  aichoketrust  team busy dismantling thousands illuminated flower like reflectors awork entre les rangs _kanva behindthescenes jmrobes343jmr loads sunday especially  closures  toevho  showing transformative power a placemaking create memorable visitor experiences aichoketrust visitlondon inspiring case study events management students cccu stand  london eye travel londonislovinit thelondoneye lovelondon visitlondon londoneye   thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon  thegl0betrotter westminster abbey yesterday beautifully lit london light festival lumiere london  westminster abbey used giant projector screen pa lumiere festival london patrice warrener light spirit chapter 2 london davekirwinphotography  canon photography  kingscrossn1c another great night stunning light installations kingscrossn1c pa   noordinarypark miss  weekend enjoy much looking others come check promenade south park year park free enter 24 7 ispane0 mattcooperphoto letsyogalondon regram  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  aichoketrust  team busy dismantling thousands illuminated flower like reflectors awork entre les rangs _kanva behindthescenes  grosvenor_gbi mayfair london estate played host  last weekend spectacular light installations westend london appeal open diverse inclusive city reaffirmed fabulous festival light get chance see   may come enjoy new floodlights king georges park every evening book cou january receive free cou use 2018 gohitit  sadiqkhan spectacular installations lighting london londonisopen lumiere   binita_dave delayed tweeting great time friday drinksthing lot checking  exploring tiny pubs mayfair londonlife  socialinmind stunning light show hotelcaferoyal piccadilly lumierelondon  arrival oxford circus  oxford street  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  binita_dave delayed tweeting great time friday drinksthing lot checking  exploring tiny pubs mayfair londonlife dslr nightmoves 2 bankside london photography night light dslr bankside lumiere  neon a installation dslrphotography city atnight streetsoflondon southbank instagood canon 25mmpancake colourful streetlight delayed tweeting great time friday drinksthing lot checking  exploring tiny pubs mayfair londonlife faves  aichoketrust timeouta londongramer timeoutlondon missed  worry head see winterlights yourcanarywharf london free event till 27 jan  btpvolunteers miss  weekend enjoy much looking others join us monday 5th february 18 00 lighting millennium bridge london shine light sexual abuse amp sexual violence solidarity survivors  grosvenor_gbi mayfair london estate played host  last weekend spectacular light installations westend london appeal open diverse inclusive city reaffirmed fabulous festival light 2 penny  photo stream canon5dmarkiv photography professionalphotographer london lumierelondon lumiere westminsterabbey westminster church abbey tfl timeoutlondon gin facial steaming hot gin cocktails ward january nights open air terrace ham_yard couesy sipsmith better way wrap  teacupheaven ginuary celebratory itsawrap happynewyear spiritedstuff hotpoke couple pics fantastic display  visitlondon wish weather better could seen  grosvenor_gbi mayfair london estate played host  last weekend spectacular light installations westend london appeal open diverse inclusive city reaffirmed fabulous festival light kings cross spell   stpancrasint planning visiting  pop dinner champagne searcystpancras perhaps grab nice pint st pancras ipa thebetjemanarms  suzystories wish could  year round  mpsonthewater southbank lit pa   mpsonthewater southbank lit pa   theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival three photos somewhat accidental quite like carnaby street  joinin247 london lumiere light festival 2018 leciestersquare carnabystreet oxfordcircus londonisopen  see  installations weekend amazing  computingdawn colour changing umbrellas  last night beautiful tried peek underneath passed see made failed ideas caschat  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  robbingham giant nightingale berkeley square   lightfestival brightlightsbigcity london united kingdom staed go canon photos noticed someone clearly spotted projector decided shadow puppets westminster abbey bottom left slightly spoils image  joinin247 nightlife leicestersquare  lightfestival brightlightsbigcity london united  lightfestival brightlightsbigcity london united kingdom  lightfestival brightlightsbigcity london united kingdom  biuk get chance see  spectacular a display featured dazzling work 50 aists  altheaefunshile lots walking tonight experience  great evening aichoketrust londonlife  archdeaconluke lumierefestival  jacob ladder spire smitf_london  doublemacbex many awesome light installations  kingscrossn1c year  london lit tinyplanet 360video made a installations miguel_chevalier obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet  zuleikagallery  fantastic london amp community brilliant aists amp employment oppounities tourism amp fitness fitbit says walked 25k steps yesterday think record aiseverywhere aichoketrust  menswearstyle stunning streets 7dialslondon  shopping guide coming soon  mikebloomberg today best bloomberg volunteers joined cirquebijou amp lambethacademy students kick  outside new european hq running jan 21 londoners view 50 stunning aworks night 5 30pm 10 30pm bloombergservice  2018 comes close tomorrow read ceo pattiharris 2016 op ed first festival public a positive impact cities communities  nationalgallery celebrate return  today pissarro lit nocturnal scene boulevard montmare night painted 1897 view work room 43  biuk get chance see  spectacular a display featured dazzling work 50 aists  vishkumarlondon follow instagram story next four days see lumiere light festival london  lumierelondon london  thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  biuk get chance see  spectacular a display featured dazzling work 50 aists  edgillwhl woundfull images wildlife leicestersquare london lumierefestival lights   thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon still sick   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham thewave veigo  eatsleepshootuk captured using so twisted zoomburst promise get back japan photos soon interrupt period failing upload japan photos  light spirit patrice warrener meetup eatsleepshootuk looking shots people experiencing a rather  badgerust fox amp badger stars  london festival lights youtube felipetweeters iamgabrielluna yosoycordova lumierelondon lumierelondon2018  light show  badgerust fox amp badger stars  london festival lights antonio ubeda en supercube de stéphane masson lumierelondon  stephanemasson  well woh braving weather cold see   visitlondon two sleeps lumiere plan visit  aichoketrust  visitlondon wow tap love incredible voyage  installation aichoketrust piece explores journey time amp space see weekend piccadilly circus facebook page  chaterfranks  year wonderful event along winterlights canarywharf wish bit longer night could least midnight might given us better chance seeing mayoroflondon  visitlondon every day see flamingos chinatownlondon enjoy first evening  lots see next 3 nights make sure plan ahead travellousworld aichoketrust  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  waterstonespicc benefits working central london preview  leicester square tonight  timeoutlondon get ready lumierelondon launches tonight find best installations across city   bbclondonnews festival light returns london   avweekjuliet loving  southbank tonight even spied sadiqkhan lovelondon  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  ukinargentina  es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4 noches cultureisgreat  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow que tengo que hacer para estar en  r e  btpvolunteers miss  weekend enjoy much looking others join us monday 5th february 18 00 lighting millennium bridge london shine light sexual abuse amp sexual violence solidarity survivors  btpvolunteers miss  weekend enjoy much looking others join us monday 5th february 18 00 lighting millennium bridge london shine light sexual abuse amp sexual violence solidarity survivors  year wonderful event along winterlights canarywharf wish bit longer night could least midnight might given us better chance seeing mayoroflondon  secret_ldn video ten loveliest sights lumierelondon festival first night  sunday evening discover 40 illuminated installations full guide  londontheinside bloody brilliant  get ends tomorrow  visitlondon every day see flamingos chinatownlondon enjoy first evening  lots see next 3 nights make sure plan ahead travellousworld aichoketrust  saikocat one  installations forgot post saturday  thenohbankbid sad see end  two installations nohbank fantastic jacob ladder top smitf_london sounds amp light trafalgarsquare  archdeaconluke lumierefestival  jacob ladder spire smitf_london  archdeaconluke lumierefestival  jacob ladder spire smitf_london kids loved  kingscross raindropskeepfallingonmyhead dslr nightmoves 1 oxo london nightlights  dslr neon lumiere oxotowerwharf london night citylights illuminated ldn citystreets foundtype windows shadows buildings nightmoves photography ilovephotography photoatn  transforms london streets buildings amp public spaces extraordinary immersive nightly a exhibition light sound bloombergdotorg bloomberg nofilter kings cross last night way rain would stop play  21012018 stop staring uv lights  lumierelondon2018 granarysquare glad managed catch shots last evening  granary square kings cross last night train home  sinoradiouk  festival chinatownlondon looking amazing  aichoketrust legacy  lives selection permanent works across london visitlondon  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots favourite shots  last night featuring light spirit patrice warrener wave veigo snaps  instagram plus photos follow tomorrow see  weekend photos carnabylondon guessing shaida walked twice around world 2 year marathon  126 316 800 steps counting  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  noordinarypark miss  weekend enjoy much looking others come check promenade south park year park free enter 24 7 ispane0 mattcooperphoto letsyogalondon regram  theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  barkingsideac seeing chandeliers displayed  king cross london thanks took pa well done redbridge cultureteam wonderful oppounity amazing installations aichoketrust thank silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite   cheekychops  even better rain caught final day  kingscross pictures experience justice kind a lights urbana lovemesomelights  postcardslond1  westminster abbey  postcardslond1  piccadillycircus fantastic time wondering streets london  carnabylondon think walked 2 46 times around world two years carnabylondon  rare bear rare rarebear a lumiere lumierelondon   nohernlyexpo wavelength pa  exhibition took place london last four days last picture year visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  barker_langham spectacular light displays year london lumiere festival  wavelength pa  exhibition took place london last four days last picture year visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey lumiere london 2018 lumiere  westminsterabbey london westminster abbey pt 1 2 january 2018  westminster abbey  engcathedrals wow  wabbey westminsterabbey  local_dreaming new blog post saturday went lumiere_london  festival photos took  aichoketrust legacy  lives selection permanent works across london visitlondon new blog post saturday went lumiere_london  festival photos took westminster abbey lumiere london 2018 lumiere  westminsterabbey london definitely one coolest installations  light festival red telephone box transformed aquarium seven dials covent garden lumiere london central london night ii w filipa meneses  lumierelondon  fun even rain although areas woh effo others southbank waterloo complete waste time kings cross wow clever guiding people around redevelopment kings cross fair incredible though favourite  great weekend london united kingdom  jenny__wong beautifully lit westminsterabbey light festival lumiere london  photography pretty awesome yesterday london trafalgarsquare  lumiere london 2018 lumiere  leicestersquare london leicester square  thesavoylondon excited explore  next nights london lit incredible illuminated a installations  csm_live striking work icon_retail team nkirkwoodlondon celebration  went checked light based a installations called  filmed put la la land cover top sound good watch  csm_live striking work icon_retail team nkirkwoodlondon celebration  long time since last tweeted anyway went lumiere festival brilliant time video website  lumierelondon london a  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  sadiqkhan spectacular installations lighting london londonisopen lumiere   crowe_photo child hood collectif coin photo julian crowe crowe_photo visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018  badgerust fox amp badger stars  london festival lights fantastic fun  installationa hotelcaferoyal picadillycircus gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust  justin_venn  lumierelondon2018 lumierelondon nteresting night kings cross  installations aether dot waterlicht mystery entry  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  chrisschorah  kingscrossn1c looking awesome  christinegolds4 discussing favourite  lumiere installations mine westminster abbey approach heritage popular festival sho want see becky_traveller another one  lumiere london 2018 lumiere  kingscross london granary square nice experience daanroosegaarde eerie waterlicht installation first hand year  lighting climatechangeisreal wedesignfoheenvironment  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si è conclusa ed è stata semplicemente meravigliosa ecco alcune foto di leicester square temporaneamente trasformata casa per dei paicolari ospiti luminosi londra  lumierelondon lumierelondon2018 leicestersquare great night walking around  saturday  spectacular last night taken many poraits probably favourite   badgerust fox amp badger stars  london festival lights lumiere london 2018 lumiere  kingscross london granary square  aichoketrust legacy  lives selection permanent works across london visitlondon  spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible lumierelondon  london  seth_gus old wabbey reimagined ken kesey merrypranksters   engcathedrals wow  wabbey westminsterabbey  mvpicsss thank  another stunning extravaganza magic everywhere truly illuminating light a amp witchcraft visitlondon visitlondon lumierelondon london  kingscrossn1c thank everyone visited  kingscrossn1c last four days hope enjoyed much london lumiere last night lumierelondon2018 london   newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 red telephone box london londonlife thisislondon  lumierelondon travel culturetrip londonphotography stillnojob hireme  thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon  londontheinside last day  go get snapping  sadiqkhan spectacular installations lighting london londonisopen lumiere   justin_venn  lumierelondon2018 lumierelondon  croydoncollege wonderful  festival lights heading croydon weekend  aichoketrust legacy  lives selection permanent works across london visitlondon  aichoketrust coming  2018 plan visit 50 aworks 4 nights 6 destinations visitlondon beautiful name installation appropriate gorgeous vivid full spectrum palette lighta colouryourcity  trafalgar square lumière festival 2018 lumierelondonfestival  london  visitlondon 5 gorgeous aworks discover explore  beautiful fitzrovia area let us know favourite incredible  hats aichoketrust producing marvellously creative amp impactful festival lighta colouryourcity colouryourcity  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  barkingsideac seeing chandeliers displayed  king cross london thanks took pa well done redbridge cultureteam wonderful oppounity amazing installations aichoketrust thank discussing favourite  lumiere installations mine westminster abbey approach heritage popular festival sho want see photos  went installations kings cross 18 01 2018 aurora borealis kings cross lumiere  lumierelondon kingscross london  fletcherpriest anyone manage get trafalgar square weekend see  lights loved  festival  engcathedrals wow  wabbey westminsterabbey went london saturday see installations  absolutely breathtaking going post photos blog later week london lumierelondon rain stop us getting weekend armed umbrellas checked beautiful  light show make sure watch full video  lumierelondon lumierelondon2018 visitlondon anyone manage get trafalgar square weekend see  lights  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht   ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  csm_live striking work icon_retail team nkirkwoodlondon celebration   wearewaterloouk repurposed christmas decorations make nice new entrance leakestreet  switched light  kingscrossn1c excited full programme installations  released check pieces kingscrossn1c sta planning visit  lightinstallation awork london trafalgarsquare trafalgar square  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag cube pa  exhibition took place london last four days visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  btpvolunteers miss  weekend enjoy much looking others join us monday 5th february 18 00 lighting millennium bridge london shine light sexual abuse amp sexual violence solidarity survivors carnabylondon win carnaby  think walked round world 2 3 times  zebraprodunique loved  one lamps office please lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon  stmaininthefields london trafalgarsquare creative break london besties   ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon aichoketrust nights like please wonderful event  lumierelondon2018 lights recently built marquee lumiere installations london noticed incredible installations around london   ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag great seeing many people enjoying  across london quick time lapse wabbey yesterday missed fear bealocaltourist year round  engcathedrals wow  wabbey westminsterabbey miss  weekend enjoy much looking others join us monday 5th february 18 00 lighting millennium bridge london shine light sexual abuse amp sexual violence solidarity survivors  aichoketrust explored south bank amp waterloo yet lots see 17 30 evening  cantwait  barker_langham spectacular light displays year london lumiere festival   mvpicsss thank  another stunning extravaganza magic everywhere truly illuminating light a amp witchcraft visitlondon visitlondon lumierelondon london  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  badgerust fox amp badger stars  london festival lights  egondesign fantastic light installations  kingscross  thebroadwaysw1 thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon  lm_westminster wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon  justin_venn  lumierelondon2018 lumierelondon thanks aichoketrust visitlondon amazing experience walking around london evenings searching fascinating light installations put together little montage enjoy  lumierelondon visitlondon  tflbusales travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find nights ago   aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  playlondongame seen uk largest light festival happening london right  quick look dazzling installations around london right hurry around sunday harmonic poal  pa two sroosegaarde design innovation medal l_d_f 2016 catch waterlicht granary square weekend   londonwestend stay thebeaumontldn duration  addition exclusive rates offered special lumiere light amp day cocktail privacy cub room american bar venturing foh light deals  badgerust fox amp badger stars  london festival lights  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon lights last night   sarah_wall nightingale berkeley square even playing song lumierelondon   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  biuk get chance see  spectacular a display featured dazzling work 50 aists someone capturing duration dot installation soundtracked solomongreyband kingscrossn1c  lumierelondon  misslondon_city  fantastic southbank  misslondon_city  fantastic southbank  barbararich_law pictures lumierelondon  last night waterlicht granary square king cross  barbararich_law lumierelondon  waterlicht granary square king cross  barbararich_law lumierelondon  king cross  smithyshere dazzling multicoloured doorways bring sculpted saints vivid life wabbey lumierelondon2018  visitlondon  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  bablu121  people force yesterday night central london sight props aichoketrust visitlondon impressive work putting year event us enjoy trappedinzoneone  csm_live striking work icon_retail team nkirkwoodlondon celebration   visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  toevho  showing transformative power a placemaking create memorable visitor experiences aichoketrust visitlondon inspiring case study events management students cccu   winkball londonlumiere big hit londoners suppoed mayoroflondon festival weekend lumierelondon2018  festivaloflights lights ldn_culture loveldnlovecul aichoketrust thank victoriabid terrific lights january  lumierelondon2018  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito  experiencias londres2018 alloaconnecting  rbs_sculptors great see markbeattie_a mrbs taking pa  neon sculpture  aichoketrust london west end alight 16 stunning installations  open 17 30 22 30 evening sunday 21 january favourite  vickyecaer repo lumierelondon2018  check london biggest as festival repoing winkball vickywinkball aichoketrust visitlondon creativeas a london ldn repoer presenter freelancer repurposed christmas decorations make nice new entrance leakestreet  switched light  vickyecaer repo lumierelondon2018  check london biggest as festival repoing winkball vickywinkball aichoketrust visitlondon creativeas a london ldn repoer presenter freelancer repo lumierelondon2018  check london biggest as festival repoing winkball vickywinkball aichoketrust visitlondon creativeas a london ldn repoer presenter freelancer miss  weekend enjoy much looking others come check promenade south park year park free enter 24 7 ispane0 mattcooperphoto letsyogalondon regram londonlumiere big hit londoners suppoed mayoroflondon festival weekend lumierelondon2018  festivaloflights lights ldn_culture loveldnlovecul aichoketrust  justin_venn  lumierelondon2018 lumierelondon  ilyasayub_photo went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  electricpedals rose mickfusion human interaction electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  electricpedals rose mickfusion human interaction electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018 went favourite installation  londonisopen aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson bit late  sadly anyway london always closes mondays  engcathedrals wow  wabbey westminsterabbey  postcardslond1  westminster abbey  fouhstreetdan benjamingammon blown away  year aichoketrust outdone  electricpedals rose mickfusion human interaction electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  rbs_sculptors great see markbeattie_a mrbs taking pa  neon sculpture  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via great see markbeattie_a mrbs taking pa  neon sculpture rose mickfusion human interaction electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  aichoketrust  team busy dismantling thousands illuminated flower like reflectors awork entre les rangs _kanva behindthescenes thank  letting broadway team pa westminster city hall projection well done incredible weekend event visitlondon dot lumiere london 2018  via youtube  markpinneyassoc couple a installations  weekend  izzy2503 good year  totastemaker  hennasam wave veigo   markpinneyassoc couple a installations  weekend  helenebaos  brilliant year care take look put selection photos flickr account mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  thedroidlife ray catcher  50mm  barker_langham spectacular light displays year london lumiere festival   zebraprodunique loved  one lamps office please lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  fouhstreetdan benjamingammon blown away  year aichoketrust outdone weekend light displays pure creativity amp inspiration lumiere light festival dot philippe morvan seeing 175 light bulbs flash front exciting london filled exhilarating light transformations  totastemaker  trudyakelly pa gift  roads handed crowds picadillycircus without buses cars magical  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  team busy dismantling thousands illuminated flower like reflectors awork entre les rangs _kanva behindthescenes abstract pa  exhibition took place london last four days visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  zebraprodunique loved  one lamps office please lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  westminsterabbey london londonlife lovelondon londoners londonnights lumiere london light festival year giant birdcage illuminates colours rainbow amp releases energy accumulated day ifo identified flying object jacques rival love md  totastemaker lumiere  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  bye  london thisislondon toplondonphoto lumiere2018 oxfordstreet travel londonlife hireme lookingforajob londonphotographer  simon_burgess lumiere london wave veigo south bank  thewave look lovely lights lumierelondon2018 lumierelondon  mesmerising see london iconic streets buildings transformed light world talented light aists light display called waterlicht daan roosegaarde love md  lumierelondon totastemaker kingscross lumiere  simon_burgess lumiere london wave veigo south bank  thewave lumire london great wildlife related installations leicester square chinatown last weekends event  londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london 2018 field flower like reflectors went low angle pointing eliminate background distractions isolate night sky olympus omd em1 7 14mm pro aichoketrust  olympusuk  visitlondon 2 weeks  arrives capital keep eye updates aichoketrust kingscrossn1c  mcandsonslondon roses red violets blue gin costs less dinner two mondaymotivation ginoclock  ginuary  grosvenor_gbi mayfair london estate played host  last weekend spectacular light installations westend london appeal open diverse inclusive city reaffirmed fabulous festival light  exitmagazine  maxcoopermax  exitmagazine  maxcoopermax  2nickjones music light fantastic  mayfair grosvenor_ldn grosvenor_gbi  justin_venn  lumierelondon2018 lumierelondon success  aichoketrust moves processions2018 celebrate centenary women gaining vote 1418now processions2018  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  mpsonthewater southbank lit pa  staing jan 18  transform capital streets buildings public spaces extraordinary immersive nightly a exhibition light sound today bloomberg new european hq got fun kicking four benjamingammon blown away  year aichoketrust outdone  tgjenkins westminster abbey looking magical evening lumierelondon  visitbritain visitlondon loveuk  aichoketrust legacy  lives selection permanent works across london visitlondon  zebraprodunique loved  one lamps office please lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature loved  one lamps office please lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance pic foot rambe aist david ward feel free forward friendly kindly explained work collaboration owners feet   carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon  forgather luminous lumiere  aichoketrust spectacular light displays year london lumiere festival   postcardslond1  piccadillycircus harmonic poal  pa one ray catcher  50mm anyone see london lit weekend  festival transformed favourite buildings spectacular light show see photos festival biggsytravels pinks flamingos flamingoflyway lumierelondon2018 lanterncompany jopocock nightlife chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon  biuk get chance see  spectacular a display featured dazzling work 50 aists  justin_venn  lumierelondon2018 lumierelondon  darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon  brilliant year care take look put selection photos flickr account mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  biuk get chance see  spectacular a display featured dazzling work 50 aists  paul_mcq walked miles around london rain last night trying hit many 50  locations possible cycled phone box favourite  justin_venn  lumierelondon2018 lumierelondon  londontheinside missed  fear still get lit winterlights yourcanarywharf  londontheinside missed  fear still get lit winterlights yourcanarywharf  darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon mariontravers ohlala j aurais tellement aimé pouvoir assister aux  décidément notre timing était mauvais peut être pour l édition 2019 lt 3  teamldn  magical even innovative use light a architecture volunteers wonderful ever cheerful enthusiastic thanks  carnabylondon missing  fear giving chance win lomo instant camera lomo lightpainter lomographyuk  londontheinside missed  fear still get lit winterlights yourcanarywharf roses red violets blue gin costs less dinner two mondaymotivation ginoclock  ginuary  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  weekendaswa bravo  2018 next year couple a installations  weekend  justin_venn  lumierelondon2018 lumierelondon missed  fear still get lit winterlights yourcanarywharf  thegl0betrotter westminster abbey yesterday beautifully lit london light festival lumiere london   justin_venn  lumierelondon2018 lumierelondon  carnabylondon missing  fear giving chance win lomo instant camera lomo lightpainter lomographyuk  csm_live striking work icon_retail team nkirkwoodlondon celebration   justin_venn  lumierelondon2018 lumierelondon  great yes think video highlights thanks aichoketrust amp mayoroflondon  justin_venn  lumierelondon2018 lumierelondon  aichoketrust legacy  lives selection permanent works across london visitlondon amazing work sroosegaarde lumiere london  lighta missing  fear giving chance win lomo instant camera lomo lightpainter lomographyuk showing mum pictures  favourite  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon wave veigo   visitlondon sweet dreams thelondoneye   fletcherpriest happy friday everyone weekend sure head piccadilly circus check  lights fridayfeeling  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere  kingscrossn1c  beauty_blah  visitlondon kingscrossn1c  matthewgeorgewh nightingale berkeley square lights including king cross sunday final day   visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  visitlondon sweet dreams thelondoneye   biuk get chance see  spectacular a display featured dazzling work 50 aists spectral lumiere london metroldn timeoutlondon lumierelondon  lightfestival  visitlondon sweet dreams thelondoneye   cultureteam amazing night representing london borough redbridge  regents st thank cirquebijou amp aichoketrust incredible oppounity well done redbridgelive umbrellaproject thisisredbridge mylocalculture  engcathedrals wow  wabbey westminsterabbey  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium working big city like london get see bizarre sights last night found fish swimming happily phonebox aichoketrust  lumierelondon2018 lumiere eventprofs aquarium fish bizarre a  biuk get chance see  spectacular a display featured dazzling work 50 aists today best bloomberg volunteers joined cirquebijou amp lambethacademy students kick  outside new european hq running jan 21 londoners view 50 stunning aworks night 5 30pm 10 30pm bloombergservice  biuk get chance see  spectacular a display featured dazzling work 50 aists good year  totastemaker  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london lumierelondon  london chinatown flamingo animatronics soho panasonicfz2500 fz2500  misslondon_city  fantastic southbank lit   badgerust fox amp badger stars  london festival lights  fantastic southbank  justin_venn  lumierelondon2018 lumierelondon chinese lantern festival lumiere london lighting moment age spend much time staring screens standing crowd sharing moment really impoant  lumiere lighting festival london outdoor performance event  qpark_uk  light festival find get 15 parking event visitlondon lumiere london  biuk get chance see  spectacular a display featured dazzling work 50 aists aishmv year year  keeps surpassing treat watch happy finally getting using camera feeling proud shots   justin_venn  lumierelondon2018 lumierelondon  justin_venn  lumierelondon2018 lumierelondon  lm_westminster wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  justin_venn  lumierelondon2018 lumierelondon  theresidentmag farewell  hello winterlights yourcanarywharf one top 15 thingstodo london weekend gt gt gt mondaymotivation  aichoketrust ever wondered people behind  read interview harry qedproductions pa panership technicians_mih techniciansmakeithappen instagram captured beauty lumiere london uk largest light festival   badgerust fox amp badger stars  london festival lights  justin_venn  lumierelondon2018 lumierelondon  biuk get chance see  spectacular a display featured dazzling work 50 aists  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  toevho  showing transformative power a placemaking create memorable visitor experiences aichoketrust visitlondon inspiring case study events management students cccu  kaybuxton opening night lumierelondon  sore feet definite favourites far  badgerust fox amp badger stars  london festival lights  justin_venn  lumierelondon2018 lumierelondon  badgerust fox amp badger stars  london festival lights amazing umbrellaproject cirquebijou  weekend performance combined kathak dance styles led umbrellas photos via instagram valeria_amodeo  biuk get chance see  spectacular a display featured dazzling work 50 aists  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  justin_venn  lumierelondon2018 lumierelondon city exist invent london child hood collectif coin  mayfair london estate played host  last weekend spectacular light installations westend london appeal open diverse inclusive city reaffirmed fabulous festival light  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via trafalgar square lumiere light festival   thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  biuk get chance see  spectacular a display featured dazzling work 50 aists  toevho  showing transformative power a placemaking create memorable visitor experiences aichoketrust visitlondon inspiring case study events management students cccu  2018 comes close tomorrow read ceo pattiharris 2016 op ed first festival public a positive impact cities communities fun wondering around  yesterday next stop winterlights canary wharf  adamscottg huge thanks lovely london walkers eschewed pleasures  walk dark side londonwalks ghosts old city tour tonight expectations vs reality thanks lumierelondon2018  walking thro central london amp still musing sights amp sounds  last night great night amp lovely bump illumaphonium cirquebijou streets spectral lumierelondon  stjamessquare oxfordstreet regentstreet westend  cultureteam amazing night representing london borough redbridge  regents st thank cirquebijou amp aichoketrust incredible oppounity well done redbridgelive umbrellaproject thisisredbridge mylocalculture farewell  hello winterlights yourcanarywharf one top 15 thingstodo london weekend gt gt gt mondaymotivation  thinkingcity addition fun amp sensory delight  brings city streets central roads pedestrianised joyful experience  zumtobelgroup creative light a installation trafalgarsquare london collectifcoin  suppoed brand zumtobel_light  bduchesne1 weekend festival lights  saw spectacular installations many pas great city included canadian aists thank londonisopen making accessible tracyemin designed neon sign befaithfultoyourdreams stjamesschurch  latest camden daily thanks lovecamden sundayreads  loving photos amp vids lumierelondon go  lumierelondon2018 lumiere catch  weekend  newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  visitlondon sweet dreams thelondoneye   aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  biuk get chance see  spectacular a display featured dazzling work 50 aists  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  badgerust fox amp badger stars  london festival lights really loved light installation trees mount street gardens atsara  like fireflies tiny glowing animals climbing branches  bakerlooline oxford circus piccadilly circus extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere  visitlondon sweet dreams thelondoneye  dewdropbook glad see fab time marlo  photos  around waterloo  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon best today homesweethome   biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists rose lumiere  lumierelondon westminster cathedral  biuk get chance see  spectacular a display featured dazzling work 50 aists  nigelblakephoto hare square london lumiere aichoketrust  sliceofthecity visitlondon londonlumiere flickr hea aichoketrust compact powerhouse creative minds open world as street level level playing field as need suppo loved  think take peek  lm_westminster wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon action  weekend westminsterabbey london looking lit weekend  lumierelondon2018 eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye thelondoneye westminsterabbey instagram sneequaye london looking lit weekend  lumierelondon2018 eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye thelondoneye westminsterabbey instagram sneequaye london looking lit weekend  lumierelondon2018 eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey wabbey instagram sneequaye london looking lit weekend  eyelovelondon lumierelondon2018 visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey wabbey instagram sneequaye couple london last night  lights london beautiful  biuk get chance see  spectacular a display featured dazzling work 50 aists  newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london nofilters westminster  westminsterabbey light london  engcathedrals wow  wabbey westminsterabbey  biuk get chance see  spectacular a display featured dazzling work 50 aists  newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  menswearstyle stunning streets 7dialslondon  shopping guide coming soon hare square london lumiere aichoketrust  sliceofthecity visitlondon londonlumiere flickr hare square london lumiere aichoketrust  sliceofthecity visitlondon londonlumiere flickr  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  aichoketrust legacy  lives selection permanent works across london visitlondon  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium westminster abbey london lumiere 2018 pics going flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk  flickr  installation oxotower weekend lumierelondon londonlife londontown  biuk get chance see  spectacular a display featured dazzling work 50 aists  dewdropbook dewdrop ay abi loved every moment  mayoroflondon thank aists stewards loved therose pedalpower petalpower great weekend lumierelondon photos highlights thanks aichoketrust events like one reasons lovelondon much lumierelondon2018  alovers  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists couauldgall aichoketrust  got us sofas walking amp interacting city streets laughed lots looked places never seen engaged a different perspective enjoyed winter fuelled thought revelled pleasure  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  nickede wait go aichoketrust lumierelondon2018  visitlondon  livonshoestring last minute decision check  kingscross woh really wish so installation year round perfect way end ace weekend  lovecamden kicking tomorrow  dutch aist innovator daan roosegaarde transform granary square ethereal dream like landscape aichoketrust check full programme  csm_live striking work icon_retail team nkirkwoodlondon celebration   aichoketrust legacy  lives selection permanent works across london visitlondon  bduchesne1 weekend festival lights  saw spectacular installations many pas great city included canadian aists thank londonisopen making accessible  bloombergdotorg  2018 comes close tomorrow read ceo pattiharris 2016 op ed first festival public a positive impact cities communities  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists enjoyed exploring lumiere london sights  lumierelondon visitlondon  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists  biuk get chance see  spectacular a display featured dazzling work 50 aists get chance see  spectacular a display featured dazzling work 50 aists lumiere festival light   lm_westminster wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon lumiere light festival returns london lumierelightfestival lumierelightfestival2018   exitmagazine  maxcoopermax led ballerinas illuminated international venues kensington palace henley festival savoy amp ductack theatre dubai  lumierelondon2018 flamingo flyway lumierelondon2018 lanterncompany jopocock nightlife chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018 lumiere london 2018 lumierelondon lumierelondon2018  meizu meizumx6  showing transformative power a placemaking create memorable visitor experiences aichoketrust visitlondon inspiring case study events management students cccu  engcathedrals wow  wabbey westminsterabbey  greatbritain london lights  back 50 aworks display across capital got 3 nights left visit  paul_mcq   charsuibuns light spirit patrice warrener westminster abbey  lumierelondon2018  hooverit omg one incredible weekend london thank  rambedance couauldgall davidward aichoketrust rocked walked amp embraced january incredible city a amp culture much magnificence deva premal  kellybushdesign lighten  lights  justin_venn  lumierelondon2018 lumierelondon  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  lm_westminster wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon  openyoureyesldn show lumierelondon lumierelondon2018  visitlondon  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere  dewdropbook dewdrop ay abi loved every moment  mayoroflondon thank aists stewards loved therose pedalpower petalpower  zumtobelgroup creative light a installation trafalgarsquare london collectifcoin  suppoed brand zumtobel_light  visitlondon sweet dreams thelondoneye  thank everyone visited  kingscrossn1c last four days hope enjoyed much  visitlondon sweet dreams thelondoneye   srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  fletcherpriest happy friday everyone weekend sure head piccadilly circus check  lights fridayfeeling  visitlondon sweet dreams thelondoneye   aichoketrust ever wondered people behind  read interview harry qedproductions pa panership technicians_mih techniciansmakeithappen luminous lumiere  aichoketrust  asturn enjoyed wandering  paicularly giant chill zone trafalgar sq suspended arabelladorman st james creative light a installation trafalgarsquare london collectifcoin  suppoed brand zumtobel_light  newwestend  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  facltd teams busy lumierelondon  lumiere date critical care amp medical response teams dealt calls ranging breathing difficulties chest pain diabetic collapses drug overdoses keeping londoners safe eventprofs firstaid  leakestarches walk rainbow tunnel see progress made leakestreetarches development  really wanted go  year herroyalj visitlondon thelondoneye kingscrossn1c wabbey yes loved  lumierelondon lumierelondon2018  treniq  aichoketrust legacy  lives selection permanent works across london visitlondon london amazing weekend  visit  jackiemcnerney favourite  installation today cycling keep lit fun give light people find way  regentstreet london city citycentre  csm_live striking work icon_retail team nkirkwoodlondon celebration  striking work icon_retail team nkirkwoodlondon celebration  incredible days seeing victoria illuminated let us know favourite installation forget tag us  victoria snaps thanks aichoketrust visitlondon london lit weekend annual light festival lumiere 50 works created uk international aists illuminating inspirational festival popped kings cross ethereal experience wonderful   jubileeline travelling tube evening forget  switches 17 30 jubilee line baker street waterloo busy find  lumierelondon2018 londonlights mayoroflondon wonderful time interactive fun brilliant stewards exceptional aists ay city  thenohbankbid sad see end  two installations nohbank fantastic jacob ladder top smitf_london sounds amp light trafalgarsquare dewdrop ay abi loved every moment  mayoroflondon thank aists stewards loved therose pedalpower petalpower lumiere back across london last weekend 50 installations spread across noh south city felt like long time since last one 2016  lumierelondon2018 lumierelondon london one  installations forgot post saturday  esquarehotel beautiful photograph  levanterman lumierelondon aichoketrust southbanklondon  postcardslond1 lumiere london royalacademy love motion lumierelondon2018 londonlumiere  lumierelondon  cccutourres power a transform experience place creativeplacemaking   croydoncollege wonderful  festival lights heading croydon weekend  thenohbankbid sad see end  two installations nohbank fantastic jacob ladder top smitf_london sounds amp light trafalgarsquare wonderful  festival lights heading croydon weekend  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks beautiful photograph  levanterman lumierelondon aichoketrust southbanklondon  come end relive magic dazzling lights westend aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  archdeaconluke trafalgarsquare tonight sound amp light lumierefestival  smitf_london wonderful westminster hosted much  weekend amazing chris looking forward next time atransformslives aichoketrust visitlondon  thenohbankbid sad see end  two installations nohbank fantastic jacob ladder top smitf_london sounds amp light trafalgarsquare sad see end  two installations nohbank fantastic jacob ladder top smitf_london sounds amp light trafalgarsquare lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london  kingscrossn1c  russellofeah lights plus music equals dot hands favourite  installation aichoketrust visitlondon kingscrossn1c roamingrequired  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  southbanklondon love south bank installation lumiere wave included highlight  hope enjoyed festival year folks lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london love south bank installation lumiere wave included highlight  hope enjoyed festival year folks  cccutourres power a transform experience place creativeplacemaking   cultureteam amazing night representing london borough redbridge  regents st thank cirquebijou amp aichoketrust incredible oppounity well done redbridgelive umbrellaproject thisisredbridge mylocalculture  aichoketrust discover british aist amp lighting designer simon corder new commission bough 3  18 21 january admire vivid tubes fluorescent light grow facade sponsored cain_int  badgerust fox amp badger stars  london festival lights lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london  visitlondon sweet dreams thelondoneye   cultureteam amazing night representing london borough redbridge  regents st thank cirquebijou amp aichoketrust incredible oppounity well done redbridgelive umbrellaproject thisisredbridge mylocalculture  livonshoestring last minute decision check  kingscross woh really wish so installation year round perfect way end ace weekend  lumierelondon2018 lumierelondon  rishimadlani fantastic go see bloomsbury amp fitzrovia pas  camden tonight snow amp rain stopped cold fantastic amp great job mayoroflondon promote city local residents londoners widely amp tourists londonisopen  2nickjones laughter southmoltonstreet musical see saws loving  lumierelondon grosvenor_ldn  badgerust fox amp badger stars  london festival lights  openyoureyesldn show lumierelondon lumierelondon2018  visitlondon  badgerust fox amp badger stars  london festival lights  cultureteam amazing night representing london borough redbridge  regents st thank cirquebijou amp aichoketrust incredible oppounity well done redbridgelive umbrellaproject thisisredbridge mylocalculture  illuminatedriv fish phone box drew crowd would make even mona lisa little green envy   visitlondon sweet dreams thelondoneye   engcathedrals wow  wabbey westminsterabbey cute bunny remind spring loved playful scene pa   aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  engcathedrals wow  wabbey westminsterabbey  mpsonthewater southbank lit pa  eslighting awesome photo eleni  somewhere purple rain amp purple haze   badgerust fox amp badger stars  london festival lights birenmisra nice pics biren glad hear enjoyed  rg disappointed missed  would loved see something go list next year  ldn_gov  see amazing instillations across city today sunday details go  bbctravelale folks  lighting centre one final night road closures remain place incl oxford st regent st piccadilly waterloo place shaftesbury ave fi  charellemarr cultureteam help please boyf went  yest involved umbrella performance mayfair middle amazing photos noticed ppl taking us help find one momento thank  ldn_gov great launch  last night deputy mayor justinesimons1 aichoketrust  ldn_gov signing lovely weekend everyone forget tag us  pics see monday  ldn_gov  continues weekend see london famous landmarks streets taken amazing installations find visitlondon aichoketrust lighten  lights waterlicht daan roosegaarde one immersive installations seen lumiere london  frog lumierelondon londonlumiere london leceistersquare  lumiere westminster abbey lit aist patrice warrener dazzling  last night lumierelondon  visitlondon last night lumierelondon  visitlondon london last night lumierelondon  visitlondon trafalgar last night lumierelondon  visitlondon south  aichoketrust legacy  lives selection permanent works across london visitlondon supermoon  2018 londonisopen lumiere streeta  sadiqkhan spectacular installations lighting london londonisopen lumiere   sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen missed  worry works going staying permanently across london dot dot dot dot dot philippe morvan london visit website connect dots order prints dot philippemorvan lightinstallation landscape  colour longexposure canon kings   highlight weekend  shone light project kingscrossn1c london  omg one incredible weekend london thank  rambedance couauldgall davidward aichoketrust rocked walked amp embraced january incredible city a amp culture much magnificence deva premal  light spirit patrice warrener westminster abbey  lumierelondon2018 another amazing stunning lumiere london aichoketrust visitlondon pleasure walk around london fantastic impressive light installations  lumiere2018 london lovelondon lightfestival light swing time lapse   wildscreens  aichoketrust 3 day tour ends w thamespulse seacontainers mondrianhotel jasonbruges jbruges biggest datavisualisation w 5000 sqm brynskov mabiennale fassade flashing blue light ie river quality improving  despite rain saw  last night   doublemacbex many awesome light installations  kingscrossn1c year  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham interactive supercube look camera appear jar kids get enough one   bhawnasaini_yml  harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival   wildscreens  aichoketrust 3 day tour ends w thamespulse seacontainers mondrianhotel jasonbruges jbruges biggest datavisualisation w 5000 sqm brynskov mabiennale fassade flashing blue light ie river quality improving balloons amp beats trafalgar sq   koalacourses looking forward  lumierelondon make great aist date london lumiere 2018 flickr iesphotos cityatnight  london a photography  postcardslond1  westminster abbey  way wrap  polaroidorignls polaroid photography  engcathedrals wow  wabbey westminsterabbey  chrissykinsella friend toddler said aichoketrust lumiere2018  beautiful must made fairies think loveliest description heard far westminstercathedral lit public peddling bicycles   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  vbp2011  daveyjay1 pretty amazing  postcardslond1  westminster abbey saw  weekend lucky experiences like doorstep  nightlife leicester sq   themayfairhotel tonight last night  favourite installation ig tmnikonian  aichoketrust get insight magic behind  browse oppounities training jobs across range exciting oppounities technicians_mih website techniciansmakeithappen tfl update tfltrafficnews  road closures removed exception oxford street btwn new bond st amp great poland st amp regent street btwn moimer st amp great marlborough st scheduled removed 0500hrs 22nd january westminster abbey looking crabby  great time walking around visiting  exhibits  tokiecoco definitely highlight   may another huge free light festival going london week  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow stunning photos show lumiere aworks lighting london night  wave   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  lovecamden kicking tomorrow  dutch aist innovator daan roosegaarde transform granary square ethereal dream like landscape aichoketrust check full programme walked miles around london rain last night trying hit many 50  locations possible cycled phone box favourite  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via possibly favourite  installation fouh final evening light spotting loved london lumiere till next time wow  wabbey westminsterabbey  kings x granary square viewing last night  greatbritain london lights  back 50 aworks display across capital got 3 nights left visit  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  lumierelondon2018  lovelondon blinking_ligths lightshow lightsofthecity ig_captu  trudyakelly pa gift  roads handed crowds picadillycircus without buses cars magical  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  sarahdobbs london lovely bihday present  lumierelondon lumiere light display outside king cross station lumiere  lights lightshow londontown uk londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c  suzystories wish could  year round  suzystories wish could  year round  southbanklondon evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt london southbank  london londra londres chance so photos canon two phone chinatown westminsterabbey  lumierelondon joinin247  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  thelondonguidee miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain miss lumiere brought city mayorofldn amp aichoketrust 2018  trafalgarsquare kingscross carnabystreet regentstreet england londonlife a architecture exhibition uk visitlondon visitgreatbritain travelgram brandgreatbritain  badgerust fox amp badger stars  london festival lights  breesims fave installation  lumiere lumierelondon kingscross granarysquare visitlondon  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  visitlondon sweet dreams thelondoneye   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   afraid someone going make happier whatthefishsaw aquarium  phoneaddict mania telephonebox bufalino deseille  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon  mpswestminster projectservator lumière  trafalgar square earlier close npglondon smitf_london wrap warm evening getting milder teamworktomakethedreamwork actioncountersterrorism welightupeverywhere  egondesign damp fun evening  kingscross  theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival  thankfully finishes tomorrow poorly looking fishes floating top  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium highlights fantastic   amsharif enjoying  great installations  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  niamaelynel easy way get free followers newcastle  fontwell crz_mankai8 awesmoeb  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  barkingsideac seeing chandeliers displayed  king cross london thanks took pa well done redbridge cultureteam wonderful oppounity amazing installations aichoketrust thank seeing chandeliers displayed  king cross london thanks took pa well done redbridge cultureteam wonderful oppounity amazing installations aichoketrust thank hours left enjoy sights lumiere london check handy guide amp share pics us using  amp brightnights twitter amp instagram gt  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  traveljunkiegrl night night london another day sets  one evening left wish longer  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  badgerust fox amp badger stars  london festival lights  euro_tour 光の祭典 ルミエール ロンドン 1 18 21 40人以上の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます  英国のホテル  newsdigest 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht   sarah_wall nightingale berkeley square even playing song lumierelondon  thought would prudent print map list installations wanted see  case wi fi erratic locations yeah turned well torrentialrain whatmap raina  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   photoflash_ceo lumierelondon2018  coventgarden londonevents fishtank phonebooth lightshow ig_l  southbanklondon evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  zumtobel_light plans weekend london miss  uk largest light a festival proud pa w collectif coin child hood aichoketrust evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  aichoketrust legacy  lives selection permanent works across london visitlondon lumiere london lumierelondon2018  lumiere london dayum filter someone make one  nofilter funky lights  priorconstruct lumiere london  westminster abbey  visitlondon sweet dreams thelondoneye   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  lucydrury21 fish phone box lumierelondon  lumierelondon2018 lumiere pretty lights leicestersquare lumierelondon  january 2018 london uk weekend lumierelondon  london january 2018 weekend friends lights beautiful uk happy seen  lumierelondon2018 shattered mapreadingskills favourite light installation lumiere london amazing blue wave king cross  photography  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  zacdenman another fantastic installation lumiere 2018  producer director cameraman promo coaching music video london londonmusic londonlife sessions filming videoproduction zacvideo studiosession londontown videographer videography musicvideo zacdenman  badgerust fox amp badger stars  london festival lights  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham beautifully lit westminsterabbey light festival lumiere london  photography fave installation  lumiere lumierelondon kingscross granarysquare visitlondon thoroughly enjoyed  tonight nice walk new instagram image neon lights   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium thank  another stunning extravaganza magic everywhere truly illuminating light a amp witchcraft visitlondon visitlondon lumierelondon london  badgerust fox amp badger stars  london festival lights  kelvintrundle waterlicht london lumiere festival 2018  flickr would like say thank  aichoketrust fab free a spectacular pity weather bit unkind today loved non less lumierelondon2018  coventgarden londonevents fishtank phonebooth lightshow ig_l  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  london light  westminster lightning  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon hestercoxprint  amazing event staed present mayoroflondon went 2016 even bigger year went two evenings still see everything  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  dj_deccy  reflection childhood aichoketrust  lumierefestival2018 aichoke trafalgarsquare london  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon london light festival  london   reflection  trudyakelly loved getting crowds perform installation clever  umbrellas  jaimelondonboy made floral field  lumierelondon  theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival harmonic poal aist chris plant  light a poal westminster abbey looking magnificent lumierelondon   visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  visitlondon sweet dreams thelondoneye   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow liked youtube video lumiere london 2018 king cross   5n_afzal  projection voyages liked pa showing people past present future walking history time   southbanklondon miss chance enjoy special  offer oxo_tower 3 courses amp cocktail 36 find amp discover great lumiere offers gt brightnights miss chance enjoy special  offer oxo_tower 3 courses amp cocktail 36 find amp discover great lumiere offers gt brightnights projection known voyages history time picadilly circus something wonderful pa 1  faithful dreams tracey emin  dreamer lighta neon traceyemin st  postcardslond1  westminster abbey light spirit patrice warrener  westminsterabbey architecture lighta kingsx putting best show  imo faithful dreams tracey emin  dreamer lighta neon traceyemin st  fox leicester square  lovely evening spent  london evening lumiere london sundayfunday flamingos chinatown    westminster abbey   ajwoodcock enjoyed spending weekend exploring  lumierelondon2018 lights publica westminster westminsterabby soho kingscross southbank lights ever changing colours sphere represents eah  2018 apollovictoria blending  weekend wickeduk tour defying gravity since 2006 wicked trafalgar square piccadilly circus chinatown amp southbank disappoint lights weekend either  visitlondon wandered round  stuff closed lots felt like scrums instagrammers westminster abbey prettiest also liked st main fields ron haselden echelle neon ladder reaching heaven light spirit patrice warrener  westminsterabbey architecture lighta lovely time seeing beautiful installations  lumierelondon lumierelondon2018 kingscross light spirit patrice warrener  westminsterabbey architecture lighta  5n_afzal  spectral pa   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon entered world light amp colours balance sphere history time lightbulbs carnaby st amp nature   2018 hat video selfie battersea power station long enjoyable night went see installations  evening wildlife leicester square great visitlondon  southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide brightnights gt  lumierelondon igerslondon londonpop thisislondon london king cross station national hugging day fella giving hugs leicester square lumiere festival  ilovelondon nationalhuggingday2018 westminster abbey different light visit website see order prints lumierelondon facade landmark architecture iconic lumiere westminsterabbey  colour timeout streetphotog  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   2018 hat details lighting bleak january day  2018  tfltrafficnews  road closures removed exception oxford street btwn new bond st amp great poland st amp regent street btwn moimer st amp great marlborough st scheduled removed 0500hrs 22nd january  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium fantastic go see bloomsbury amp fitzrovia pas  camden tonight snow amp rain stopped cold fantastic amp great job mayoroflondon promote city local residents londoners widely amp tourists londonisopen bravo  2018 next year  badgerust fox amp badger stars  london festival lights  illuminatedriv fish phone box drew crowd would make even mona lisa little green envy  lumiere waterlicht daan roosegaarde london visit website see order prints waterlicht lightinstallation landscape  daanroosegaarde colour longexposure canon kingscross l  5n_afzal   badgerust fox amp badger stars  london festival lights moody installation  london king cross station  2018 hat details surprising favourite lumiere london 2018 london lumierelondon ldnlumiere   illuminatedriv fish phone box drew crowd would make even mona lisa little green envy  wonder legs ache walked 10 miles evening thanks   tfltrafficnews  road closures removed exception oxford street btwn new bond st amp great poland st amp regent street btwn moimer st amp great marlborough st scheduled removed 0500hrs 22nd january  grantchito  2018 moon like apiece oxford circus  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide brightnights gt  sick photos instagram soon  installtions really great event forces us beat januaryblues walk around london flamingo chinatown  lovelondon aichoketrust china town london  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   2018 yeah customary selfie london transpo system  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  today last day  make trip south bank see spectacular luminous installations handy guide brightnights gt hare  aichoketrust leicester square  road closures removed exception oxford street btwn new bond st amp great poland st amp regent street btwn moimer st amp great marlborough st scheduled removed 0500hrs 22nd january  illuminatedriv fish phone box drew crowd would make even mona lisa little green envy   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon photos yesterdays lumiere london  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  aichoketrust legacy  lives selection permanent works across london visitlondon london foot  magical installation danish aists veigo wave spectacular structure foy triangular interactive glowing gates respond movement sonically visually enabling visitors create aistic experience  lovelondon fish phone box drew crowd would make even mona lisa little green envy   5n_afzal   aichoketrust legacy  lives selection permanent works across london visitlondon sensational granarysquare   chinatownlondon tonight night already brace cold visit  chinatown london beyond thesnowcantstopus  aichoketrust legacy  lives selection permanent works across london visitlondon brisk excursion around luscious luminous  aichoketrust visitlondon mayoroflondon also great traffic free streets  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium visited  light festival spectacular highlight westminsterabbey westminster abbey  frogs aichoketrust  robbingham quite hard photograph fish phone box  absolutely loved bits  time today shame 1 weekend trafalgarsquare stjamespark kingscross westend aquarium fishinaphonebox  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  5n_afzal  frogs frolicking leicester square  leicester square theatre  hare leicester square another year amazing evening rain died thanks aichoketrust  experiencing life borrower king cross earlier x  lumierelondon lumierelondon2018 aichoketrust visitlondon mayoroflondon look lovely chap  leicester square theatre  2018 shop caught eyes dressed window perfect festival lights  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium highlights king cross poion  lumierelondon lights week wrote poem inspired  sroosegaarde installation waterlicht  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium loved illumaphonium grosvenorsquare   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  trudyakelly pa gift  roads handed crowds picadillycircus without buses cars magical  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  lumierelondon hare leicester square quite hard photograph fish phone box  badger  lumierelondon leicester square  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  evdjones  despite rain jumped tube see lumiere london rained stop  publica aichoketrust sadiqkhan final shift  time mayfair captured neon bikes reflection rain also met aist designed dot  aichoketrust legacy  lives selection permanent works across london visitlondon printer runs coloured ink lumiere  westminster london londonist  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  squirrel mouse aichoketrust leicester square lumiere aether kx10 omg   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  openyoureyesldn show lumierelondon lumierelondon2018  visitlondon rose westminster cathedral earlier x lumierelondon  lumierelondon2018 lightfestival visitlondon aichoketrust westminsterabbey lumiere  lumierelondon westminster abbey  great game pong tonight couesy fabulous  wonderful event lovelondon  2018 great see permanent fixture carnaby fanton sts full gear quite pretty  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via delightful memories beans  eve suchfun  aichoketrust legacy  lives selection permanent works across london visitlondon grantchito fascinated hat fitting   woxxy today  last minute decision check  kingscross woh really wish so installation year round perfect way end ace weekend  talirowland really enjoyed stunning  last night great share experience uoc_dance technical production students  grantchito  2018 regent street traffic free main awork called frictions  lumierelondon fox leicestersquare aichoketrust leicester square  theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival still pretty rainy london puddles like ponds accidental  lumierelondon images lumiere london 2018 lumierelondon2018 lumierelondon   woxxy lumiere lumierelondon  lumierelondon2018  wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy lumiere lumierelondon  lumierelondon2018  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon neon weekend  winterlights captured magic mayfair  lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy quite beautiful glad went  come rain snow brain fog shine made lumiere attempting warm lumierelondon   2018 selfie aworks oxford circus lumierelondon2018   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium piccadilly circus  lumierelondon2018  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via lumiere london 2018 fab covered blog thanks aichoketrust   aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium today  colourful lanterns around leicester square  lumierelondon2018  lumiere  archdeaconluke wet evening  lumierefestival churches hosting works a stjpiccadilly many festival goers joining taize prayer  trudyakelly pa gift  roads handed crowds picadillycircus without buses cars magical  abirds  delightful si vous voulez voir quelques vidéos que j ai prises du festival lumière à londres c est par ici   themayfairhotel tonight last night  favourite installation ig tmnikonian  redlionmayfair westend final day spectacular  amp want relax away weather call london_pride open today 4pm end weekend style piccadilly stjames jermynstreet london lit  london mayor one sad memory  many people sleeping streets fab time tonight   2018 carnaby street really spirit festival lights  aichoketrust legacy  lives selection permanent works across london visitlondon fabulous   doublemacbex many awesome light installations  kingscrossn1c year selfie london  visitlondon wrote look german digital aist ulf  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  thefouhcraw granary square   grantchito  2018 regent street traffic free main awork called frictions king cross looking lovely tonight  lumiere london   jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon wonderful evening   2018 regent street traffic free main awork called frictions another great night aichoketrust  got around every installation 2 nights yesterday faves 30slady  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via aichoketrust  absolutely brilliant brightened dreary jan thanks made happen make annual thing please    thank aichoketrust curating fabulous event hope back   aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via    cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  aichoketrust wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  aichoketrust legacy  lives selection permanent works across london visitlondon  sadiqkhan spectacular installations lighting london londonisopen lumiere  stop lumiering  westminster cathedral   london  2018 apiece called frictions regent street standing water watching dot kx2 tonight last time 10 30pm seconds ended good aichoketrust lumierelondon   suzyhamilton weekend wandering around gorgeous a installations lumiere london     fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere rudie1750  lumierelondon2018   davehill snapshots   mrholly68 cool night  many brilliant ideas amp installations flippin wet tho thanks colleague andy popcornmedia_uk wrap thank coming enjoying  us small charity big ideas believe a transforms lives help us make next project happen donating via  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow highlights weekend  2018 west  girlbakes_ aichoketrust fabulous time checking  lumiere2018 happylondon aichoketrust  a forcing us engage public space love  picadilly circus harmonic poal favourite display  back st james piccadilly final meeting event liaison team  metpoliceevents londonfire tfl paners great event increased attendance across city well done involved bringing event london  2018 walking woman carnaby street called shaida ealking 2015  londongramer westminsterabbey lit  wonderfully captured jhinlondon thisislondon  leakestarches walk rainbow tunnel see progress made leakestreetarches development   davehill snapshots  fantastic wave light display london south bank pa  city stars taken thursday going  waterlicht  glad sue dragged full day smitf_london snapshots   aichoketrust legacy  lives selection permanent works across london visitlondon  edgillwhl southbank evening  southbank travel a neon lumierelondon  2018 awork regent street called frictions two nights 50 000 steps fair amount rain incredible a around london thank  love london  lumiere london lovelondon londonlife st james lit  fun eve despite rain looking  garethsmith87 loved wasthatadream quickly back took shot awesome  lumierelondon farewell  fabulous event even rain king cross earlier x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon  outshone year londonisopen highlights londonlumiere another evening wandering around london lumierelondon   justinesimons1  pictures loved seeing years lumiere light installations around london   mpsonthewater southbank lit pa   trudyakelly  wow moment westminsterabbey ceainly  trudyakelly loved getting crowds perform installation clever  umbrellas  jaimelondonboy made floral field  lumierelondon  theladytravels ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival  2018 apiece oxford circus close ballooning marvellous trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival going ride  lumiere london  hampsteadcoach wet cold  tonight yummy dinner cooked instead cottagepie colcannon instead foodporn foodie domesticgoddess made floral field  lumierelondon westminster abbey london lumiere  loved getting crowds perform installation clever  umbrellas let light lumiere  king cross ok pretty impressive westminster abbey looking like something disney film  nofilterneeded lovelondon last  shift team facltd treatment unit alpha1 standing approximately 2300 kingscross granarysquare firstaid firstaidcover nurse nursecommunity lumiere lumierelondon great time  tonight  aichoketrust legacy  lives selection permanent works across london visitlondon lumiere  poal 3 confirmed harmonic poal lumiere  lumierelondon lumiere2018 first installation  truly magical set scene come kingscross  jackiemcnerney favourite  installation today cycling keep lit fun  london united kingdom  ryanprince_91 manages get couple pics  lights london looking pretty  badgerust fox amp badger stars  london festival lights enjoyed wandering  paicularly giant chill zone trafalgar sq suspended arabelladorman st james whilst wandering around kingscross installations found gasworks longexposures got interesting  find phone box full fish lumiere  lumierelondon london  teamldn  magical even innovative use light a architecture volunteers wonderful ever cheerful enthusiastic thanks lovely night wandering around london looking pretty  lights rain stopped perfect  trudyakelly pa gift  roads handed crowds picadillycircus without buses cars magical nohern lights pa  exhibition took place london last four days visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  wow moment westminsterabbey ceainly  southbanklondon else amp enjoying  check bough1 simon corder bargehouse south bank brightnights pics talented robwdawkins favourite  installation today cycling keep lit fun loved visitlondon  festival south bank eve glad caught least couple installations ends tonight  officialprendie best thing  mistajam danceanthems best audio guide going  ajwoodcock enjoyed spending weekend exploring  lumierelondon2018 lights publica westminster westminsterabby soho kingscross southbank lights  abirds  delightful legacy  lives selection permanent works across london visitlondon pa gift  roads handed crowds picadillycircus without buses cars magical best thing  mistajam danceanthems best audio guide going  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a ends  mesmerising installation lovemotion royalacademy as already looking forward next year edition  delightful london lumiere  took pretty picture westminster abbey lit looking magical  installation  still took park even cheese wants pa fun  2018 moon like apiece oxford circus enjoyed spending weekend exploring  lumierelondon2018 lights publica westminster westminsterabby soho kingscross southbank lights  thefouhcraw granary square  leaping charlie lumiere  lumierelondon leicestersquare london leicester square pa  finding new places london photographing things different angles first glance looked like sphere lumiere   jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon laughter southmoltonstreet musical see saws loving  lumierelondon grosvenor_ldn  zacdenman another fantastic installation lumiere 2018  producer director cameraman promo coaching music video london londonmusic londonlife sessions filming videoproduction zacvideo studiosession londontown videographer videography musicvideo zacdenman  lumiere 2018 aichoketrust  kingscrossn1c last chance explore lumiere tonight 50 incredible light installations shining 22 30 forget use  chance feature gallery aichoketrust visitlondon via c0nvey  exitmagazine  maxcoopermax fish phone box  a check  hashtag much beauty aichoketrust lumiere  lumierelondon lumiere2018  2018 piece oxfordcircus favourite selfie creative selfie hatmanoflondon wave pa  lighting southbank one last time tonight london  ldn_culture despite rain still great see many people enjoying last night  kings cross piccadilly victoria  chinatownlondon tonight night already brace cold visit  chinatown london beyond thesnowcantstopus londoners pedalling  lights cyclingpower citycyclers second night  time kingscross heres images link facebook album  smithyshere dazzling multicoloured doorways bring sculpted saints vivid life wabbey lumierelondon2018  visitlondon  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon new instagram image lights cool   south bank london lumierelondon  london westminsterabbey reflection lumiere  lumierelondon thisislondon westminster abbey took close 400 photos yesterday  so duds goods joinin247 iconic west front westminsterabbey looked incredible last night lumierelondon evening  visitbritain  thinkingcity addition fun amp sensory delight  brings city streets central roads pedestrianised joyful experience psychedelic world oxfordcircus blows mind  lumierelondon tfl lumiere  lumierelondon lumiere2018 inspiring lumierelondon  londonlumiere2018  south bank london  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  jakubkrupa absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  alisonparcell well woh braving rain lumiere london evening  lumierelondon2018  thefouhcraw granary square  brightening drizzly sunday evening  westminsterabbey  edgillwhl southbank evening  southbank travel a neon lumierelondon  2018 yeah really huge changes colours amp designs quickly beautiful  ldn_culture despite rain still great see many people enjoying last night  kings cross piccadilly victoria absolutely stunning  light display king cross granary square loads people taking pictures despite 10pm sunday mayoroflondon  jubileeline travelling tube evening forget  switches 17 30 jubilee line baker street waterloo busy find glad caught lumiere  southbank southbanklondon london united kingdom fishes inside red telephone box cool  lumierelondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   smithyshere dazzling multicoloured doorways bring sculpted saints vivid life wabbey lumierelondon2018  visitlondon  aichoketrust make seeing city new light one hour go  2018 visitlondon dontmissout  aichoketrust make seeing city new light one hour go  2018 visitlondon dontmissout ive walked 20km done handful installations  pretty  clarateddy thank aaron aichoketrust fabulous insight  tonight mastercarduk truly priceless view trafalgarsw1 spectacular despite rain still great see many people enjoying last night  kings cross piccadilly victoria  amsharif enjoying  great installations  amsharif enjoying  great installations  alisonparcell well woh braving rain lumiere london evening  lumierelondon2018  alisonparcell well woh braving rain lumiere london evening  lumierelondon2018  quocatron lumiere  lumierelondon lumiere2018 southbank evening  southbank travel a neon lumierelondon shed light  nightlights  granary square  source point  dataweb  granary square  davechapman   xtophe_williams treat  rain stopped  london thisislondon londonatnight londonlife leicester square lumiere  lumierelondon london westminsterabbey westminster abbey lumiere  lumierelondon lumiere2018  simondstanley beautiful walk station tonight enjoying  aworks hosted wabbey rcwestminster along victoria st buildings glorious  ryanprince_91 manages get couple pics  lights london looking pretty  alisonparcell well woh braving rain lumiere london evening  lumierelondon2018  amsharif enjoying  great installations  x mayoroflondon  2018 oxford circus huge globe hanging middle called orgin world bubble visitlondon  mayoroflondon piccadily alive enjoying  great installations spent today leading people play board game 1500s amp walk home stumbled light sound installation  agree london phenomenal place live whilst may issues unlike anywhere else well woh braving rain lumiere london evening  lumierelondon2018 repost browns_hotel get_repost lumiere london back  lumiere brownshotel  smithyshere dazzling multicoloured doorways bring sculpted saints vivid life wabbey lumierelondon2018  visitlondon make seeing city new light one hour go  2018 visitlondon dontmissout folks  lighting centre one final night road closures remain place incl oxford st regent st piccadilly waterloo place shaftesbury ave fi pedal power brings floral light beautiful bloom westminstercath lumierelondon2018  visitlondon keep swimming  sevendials coventgarden outsidework  greypointe  cubitt park kings cross early thursday evening  greypointe  cubitt park kings cross early thursday evening  julie_guldahl last night lumierelondon tonight everyone come say hello 22 30  piccadillycircus stjamespiccadilly chinatown oxfordcircus  julie_guldahl last night lumierelondon tonight everyone come say hello 22 30  piccadillycircus stjamespiccadilly chinatown oxfordcircus  aichoketrust one hour twenty go explore fitzrovia  dontmissout  aichoketrust one hour twenty go explore fitzrovia  dontmissout  egondesign damp fun evening  kingscross  egondesign damp fun evening  kingscross  hannah_m_crowdy woh braving cold slightly damp conditions bright joyful lights   hannah_m_crowdy woh braving cold slightly damp conditions bright joyful lights  looking forward  rain defeated us stayed home googled quokkas instead  curns  flamingo flyaway chinatown pa festival london chinatownldn festivaloflights  curns  flamingo flyaway chinatown pa festival london chinatownldn festivaloflights  2nickjones music light fantastic  mayfair grosvenor_ldn grosvenor_gbi  2nickjones music light fantastic  mayfair grosvenor_ldn grosvenor_gbi dazzling multicoloured doorways bring sculpted saints vivid life wabbey lumierelondon2018  visitlondon southbank evening london travel southbank lumierelondon  neon made aquarium total madness  lumierelondon get involved magic a incredible  lumierelondon many rainbow shades wabbey turning ancient stone dazzling light thanks lumierelondon2018  visitlondon  2018 fonum mason window display beautiful lumiere festival amazing installations lighting london  visitlondon  jonchanuk around goodge street  fouh picture interactive ping pong side imaginationuk building amazing lumiere experience king cross  london  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon many stunningly creative lumiere light displays installations seen around london weekend incredible visual feast  lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany  great physics glory nohern lights come kingscross couesy  nofilterneeded  aichoketrust one hour twenty go explore fitzrovia  dontmissout  2018 fonum masons window displays fabulous store spirit festival lights  grosvenor_ldn last chance enjoy  tonight mayfair cool night  many brilliant ideas amp installations flippin wet tho thanks colleague andy popcornmedia_uk lumiere  lumierelondon lumiere2018 photos lumiere  lumiere london light lights display january 2018 last night lumiere  around goodge street  fouh picture interactive ping pong side imaginationuk building disappointed get see   2nickjones music light fantastic  mayfair grosvenor_ldn grosvenor_gbi  curns  flamingo flyaway chinatown pa festival london chinatownldn festivaloflights heavy rainfall today led sea level rising king cross waterlicht  underwater  2018 fonum amp masons window displays beautiful different luminous tea pots standing tall leake street arches right   last night nigelblakephoto lumixuk g9  hannah_m_crowdy woh braving cold slightly damp conditions bright joyful lights   egondesign damp fun evening  kingscross one one alternating green man walking red man standing still best saw   simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon  egondesign fantastic light installations  kingscross one hour twenty go explore fitzrovia  dontmissout  westminster abbey needs light main subject methinks london  london united kingdom  flamingo flyaway chinatown pa festival london chinatownldn festivaloflights music light fantastic  mayfair grosvenor_ldn grosvenor_gbi  greypointe  cubitt park kings cross early thursday evening fantastic light installations  kingscross pleased made back london evening time see dazzling nocturnal a exhibition londonlumiere 2018 westminsterabbey looking paicularly resplendent  dazzling lights   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  damp fun evening  kingscross  benkind fantastic  displays year lumierelondon back town check video amp enjoy lights jayonlife  visitlondon  julie_guldahl last night lumierelondon tonight everyone come say hello 22 30  piccadillycircus stjamespiccadilly chinatown oxfordcircus woh braving cold slightly damp conditions bright joyful lights  last night lumierelondon tonight everyone come say hello 22 30  piccadillycircus stjamespiccadilly chinatown oxfordcircus  westhandyside canopy laugh required great evening london gevbaker watching absolutely hilarious mischiefmovienight amp seeing  way loving   2018 hatmanoflondon hat fits perfectly piece love motion tiny violin centrepiece royal academy couyard nazia_kassam love productive weekend everrr  38000steps  badgerust fox amp badger stars  london festival lights badger badger badger badger mushroom snaaaake  london piccadilly circus  ballet rambe projection foot  greypointe  cubitt park kings cross early thursday evening  lightexhibition london2018 ainstallation alight alighting  tfltrafficnews  road closures remain situ currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound shaftesbury avenue  xtophe_williams treat  rain stopped  cubitt park kings cross early thursday evening amazing installation lumierelondon oxford circus lumierelondon2018  london aquarium  lumierelondon2018 sevendials covent garden london lumierelondon  gave x ray vision thefools  talirowland really enjoyed stunning  last night great share experience uoc_dance technical production students  grosvenor_ldn last chance enjoy  tonight mayfair lumeire candy floss candyfloss london  lumierelondon light sparkling walk rainbow tunnel see progress made leakestreetarches development  cosmoscope sleety rain making us question point existence  cosmoscope sculpture lovelyweather  lightexhibition london2018 ainstallation alight alighting  janecandose4 loved  last night kingscross area familyfun gosee  themayfairhotel tonight last night  favourite installation ig tmnikonian  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon first full day london got attend church services westminster abbey minster preached miracle without homes lookatgod plus  last chance enjoy  tonight mayfair absolutely loved lumiere london week thanks mayoroflondon aichoketrust aists hope next year  visitlondon timeoutlondon londonisopen nice  projections time royalacademy piano beats lum  oxford street comfo food 18 38 21 january 2018 great intentions check  installations tonight getting soaked roaming streets afternoon one thing comfo food cocktails  aichoketrust coming  2018 plan visit 50 aworks 4 nights 6 destinations visitlondon absolutely marvellous time seeing many light installations lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife  travelbloggers lovelondon visitlondon things people a tiny people stuck jars lumiere   clarateddy thank aaron aichoketrust fabulous insight  tonight mastercarduk truly priceless view trafalgarsw1 spectacular rover  oxford circus tube station  clarateddy thank aaron aichoketrust fabulous insight  tonight mastercarduk truly priceless view trafalgarsw1 spectacular  xtophe_williams treat  rain stopped making work light rose mickfusion get pedalling see awork illuminated glory electricpedals  victoriabid  glamazonlondon lucky events like  lumiere doorstep lovely mooch mate date friday night  2018 love motion royal academy couyard  clarateddy thank aaron aichoketrust fabulous insight  tonight mastercarduk truly priceless view trafalgarsw1 spectacular treat  rain stopped thank aaron aichoketrust fabulous insight  tonight mastercarduk truly priceless view trafalgarsw1 spectacular sound design projection mapping warping mind bit  one  fish kind swim bladder infection tell sick upsidedown may also make fish sick fish check phone box check lumiere  reflections kingscross lumierelondon  light lighting colour london lumiere light spirit  nofilter shotonpixel2  menswearstyle stunning streets 7dialslondon  shopping guide coming soon  2018 hatmanoflondon apiece called love motion royal academy as couyard reflectors lewiscubbitsquare kingscross lumierelondon  light lighting colour  shaftesburyplc spotted 7dialslondon iconic red telephone box turned aquarium pa  lumiere london 2018 london  lumiere lumierelondon2018 lasers lights a sculpture exhibition people busy video cityshots snapshoot lightfestival lovelondon random pigeontalks funny prevalence light a festivals like  week must surely free public a measured instagram posts tix  coming greenwich  tomodo  london lumiere waterlicht granarysquare kingscross  lumierelondon lighting light boomerang  maxcoopermax last chance experience aether  tonight enjoy lights darkness  visitlondon london  london lumiere  alifestylerebel well never chance visit highlight  best light festival taking london lumierelondon youtube bloggersblast photographer visitlondon victoriabid createvictoria aichoketrust  teamldn  magical even innovative use light a architecture volunteers wonderful ever cheerful enthusiastic thanks well never chance visit highlight  best light festival taking london lumierelondon youtube bloggersblast photographer visitlondon victoriabid createvictoria aichoketrust amazing  lumierelondon2018 waterlicht dan roosegaarde kings cross london  magical even innovative use light a architecture volunteers wonderful ever cheerful enthusiastic thanks new instagram image big pong   lumierelondon2018 waterlicht dan roosegaarde kings cross london rainbow colours lumiere_london king cross  neon lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   reed_claire westminster abbey looking spectacular last night    sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  2018 love motion royal academy as couyard  maxcoopermax last chance experience aether  tonight enjoy lights darkness discovering dazzling london lights  lumierelondon lumierelondon2018 pa  loved gasholders preserved kings cross goodnight mayfair nohern lights grosvenor square lumiere  mayfair johansford johansfordsalon another fantastic installation lumiere 2018  producer director cameraman promo coaching music video london londonmusic londonlife sessions filming videoproduction zacvideo studiosession londontown videographer videography musicvideo zacdenman  davidburgessfr lovely evening exploring aichoketrust  tonight wonderful atmosphere hundreds people ages light seeking streets london one person complaining rain lovely evening exploring aichoketrust  tonight wonderful atmosphere hundreds people ages light seeking streets london one person complaining rain  visitlondon  2018 light installation sculpture called yhe plug bulbs ganton st carnaby st  nofilter ihealondon wabbey  julesjules77 amazing sights  despite rain  embobskie lovely  granary square lovelondon upperground lumiere kings cross lumiere  aquarium benedetto bufalino amp benoit deseille photo julian crowe crowe_photo visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet  pretty westminster abbey lit lumiere london lumierelondon  timeoutlondon grabber lumiere kings cross lumiere  wave lumierelondon2018  last night  visitlondon  girlbakes_ aichoketrust fabulous time checking  lumiere2018 happylondon guardian angels lumiere kings cross lumiere  guardian angels lumiere kings cross lumiere  guardian angels lumiere kings cross lumiere   umusicuk last chance see switched 10 30pm four pancras square  last chance see switched 10 30pm four pancras square   lanterncompany  brightens spirits long dark winter months aistic director jo pocock quoted aicle lumiere festival fantastic darkest time year great way bringing visitors city bottle festoon lumiere kings cross lumiere  child hood collectif coin photo julian crowe crowe_photo visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018  freedom fish far best exhibit night lol  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon well explains weird prank calls  lights lead dark tonight provided  lumierelondon waterlicht lumiere kings cross lumiere  aichoketrust fabulous time checking  lumiere2018 happylondon feeling active get interactive  22 30 waterlicht lumiere kings cross lumiere  saw amazing illuminated installations london west end weekend  continues 10 30pm tonight still got time see  priorconstruct lumiere london  westminster abbey  aichoketrust explored south bank amp waterloo yet lots see 17 30 evening  cantwait  tfltrafficnews  road closures remain situ currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound shaftesbury avenue waterlicht lumiere kings cross lumiere   nickeardleybbc loving  week incredible light installations around city waterlicht lumiere kings cross lumiere   mr_simms_hx get fun lumiere london 2018 last night londonlumiere london lumierelondon2018 lights  fun westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather  leakestarches incredible four days  tonight last oppounity see triptych aist imakefings leakestreet miss miss walked streets london last night see  one faves kinda spooky london workaday illuminations prove interesting  lumierelondon waterlicht abstract lumiere kings cross lumiere  woh rain amazing  cycle powered illumination westminstercath  nickeardleybbc weird london stuff 94533 fish telephone box  butterfly fly away  weekendplans leicestersquare instalights instalife  aichoketrust  full swing wrap warm head outdoors explore dazzling lights open till 22 30 evening cold wet definitely woh  lumierelondon westminsterabbey dot lumiere kings cross lumiere  dot lumiere kings cross lumiere   2018 umbrella project performance piccadilly beautiful  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking refuel nandosuk   badgerust fox amp badger stars  london festival lights lampounette lumiere kings cross lumiere   aichoketrust 3 day tour ends w thamespulse seacontainers mondrianhotel jasonbruges jbruges biggest datavisualisation w 5000 sqm brynskov mabiennale fassade flashing blue light ie river quality improving cold bright lumierelondon londonsmallyt youtubers working vlog editing sure  lumierelondon2018 thanks rachelmshannon lampounette lumiere kings cross lumiere   reed_claire westminster abbey looking spectacular last night   meleey_xo last day today much fun  lumierelondon  road closures remain situ currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound shaftesbury avenue lampounette lumiere kings cross lumiere  lumiere london lit lumiere london  spectral powerfully poetic installation natural constructed elements combine st james square  thecrownestate created polish duo katarzyna malejka joachim slugocki  2018 plug bulbs ganton street one permanent works included festival wild beauty leicester square gardens pa nightlife thelanterncompany brilliant  aichoketrust  bablu121  people force yesterday night central london sight props aichoketrust visitlondon impressive work putting year event us enjoy trappedinzoneone  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere child hood collectif coin favourite installation  freea publica  hampsteadcoach wet cold  tonight yummy dinner cooked instead cottagepie colcannon instead foodporn foodie domesticgoddess identified flying object lumiere kings cross lumiere  manages get couple pics  lights london looking pretty wet cold  tonight yummy dinner cooked instead cottagepie colcannon instead foodporn foodie domesticgoddess  badgerust fox amp badger stars  london festival lights  embobskie lovely  granary square lovelondon  grantchito  2018 umbrella project regent st  london england photography iphonese thisislondon iphonephotography amateurphotography lights colour last day today much fun  lumierelondon  2018 umbrella project regent st westminster abbey shabby   edgillwhl fantastic  westminsterabbey london aichoketrust impressive  westminster abbey gorgeous  visitlondon sweet dreams thelondoneye   kulbinderm enjoyed wandering around  installations yesterday evening seen festival hurry ends evening well woh checking visitlondon bealocaltourist fantastic  westminsterabbey london aichoketrust trafalgarsquare tonight sound amp light lumierefestival  smitf_london harmonic poal hypnotic lumierelondon  timeoutlondon london_only lovely  granary square lovelondon  surely tour uk imagine elaborate project 3 day life anyone lovely time  taste rainbow king cross   2018 apiece called voyage piccadilly circus narrative fascinating   heawarming like xmas lights classy a sorry wish would put money towards better cheesy xmas lights december also road closures buses pouring rain irritating make note stay home next yr    emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a light spirit westminsterabbey lumierelondon  light festival checking  ltda lumiere piccadilly burlington house rank last night festival light extremely well volumes work last 3 nights well suppoed look updates theltda tonyqpr123 lumierelondon  lumiere awesome  granary square  maxcoopermax last chance experience aether  tonight enjoy lights darkness light light lumiere london lumierelondon  timeoutlondon lightfestival  glamazonlondon lucky events like  lumiere doorstep lovely mooch mate date friday night  julesjules77 amazing sights  despite rain  exitmagazine  maxcoopermax  visitlondon sweet dreams thelondoneye  new instagram image watering cans   kingscross  spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible hey hal winterlights  great balls fire lumiere  lumierelondon oxfordstreet london oxford street  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  amazing sights  despite rain someone high obviously heard likes finally stopped raining head get  business lucky events like  lumiere doorstep lovely mooch mate date friday night lumiere  kingscross london kings cross  londonviewpts  tonight tomorrow last chance watch new video see  christiana72  going walk  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon last night  bond street london underground station tfltravelales london greater london projectservator oxford circus regents street spot plain clothes officers evening oxfordstreetw1 regentstreetw1 citywestminster  festival actioncountersterrorism teamworktomakethedreamwork  revdsimonharvey enjoyed  kings cross last night hours left enjoy sights lumiere london check handy guide amp share pics us using  amp brightnights twitter amp instagram gt round applause lumierelondon putting light display next brightest billboard planet eah light display left dark bit  leicester square   bduchesne1 weekend festival lights  saw spectacular installations many pas great city included canadian aists thank londonisopen making accessible  nickede wait go aichoketrust lumierelondon2018  visitlondon  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  youtube london light festival  exitmagazine  maxcoopermax  daveyjay1 pretty amazing  lovecamden today last day  sad see go pop today fill light a passing kings cross check amazing sculptures across city aichoketrust trafalgar square stairway heaven   loki_lego lumierelondon  trafalgar square leicester square  lumiere lumiere london  suzystories wish could  year round everyday light show take look rbehotels monmouthkitchen light show sevendials  lumierelondon  ianbeetlestone westminsterabbey   exitmagazine  maxcoopermax  ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum lumierefestival  jacob ladder spire smitf_london  christiana72  going walk trafalgar square  weekend festival lights  saw spectacular installations many pas great city included canadian aists thank londonisopen making accessible wet evening  lumierefestival churches hosting works a stjpiccadilly many festival goers joining taize prayer dear visitlondon amp mayoroflondon staing tomorrow going head offices 4 consecutive days sit fucking desks holding torch faces name a see inconvenienced  leicester square lumierelondon2018  last chance experience aether  tonight enjoy lights darkness come get warm seeing  festival great selection craft beer food tickle tastebuds  going walk  2018 apiece called voyage piccadilly circus  giving free hot chocolate carnaby street enjoy  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  maxcoopermax meant go  lumierelondon napped rainy sofa pal  mpsprinces team keeping princes safe us patrolling   camillachild london treated  weekend beautiful dancing couple one favourites royalacademy last night  sarah_wall nightingale berkeley square even playing song lumierelondon  snaps  right divas flamingos want humans carry lumierelondon  chinatown  badgerust fox amp badger stars  london festival lights lights lumiere  london trafalgarsquare balloons childhood  bhawnasaini_yml  harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival seen wonderful  displays weekend may want find world light colour latest pinterest board selection books help wave pa  exhibition taking place london tonight last chance visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey  visitlondon lumierelondon  lumierelondon soed dslr lumiere london  lumiere lumierelondon aichoketrust visitlondon  tfltrafficnews  road closures implemented currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound charing cross road elsewhere west end area wish could  year round  spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible  aichoketrust mader wiermann frictions found 103 regent street check  sponsored great poland estates west end panership  2018 piccadilly circus scene apiece called voyage  badgerust fox amp badger stars  london festival lights  themayfairhotel tonight last night  favourite installation ig tmnikonian  christiana72  ganton sttreet carnaby street  k_etherington photos king cross section lumiere london lasers great  lumiere lumierelondon lumierelondon2018 photos king cross section lumiere london lasers great  lumiere lumierelondon lumierelondon2018  ganton sttreet carnaby street  badgerust fox amp badger stars  london festival lights  themayfairhotel tonight last night  favourite installation ig tmnikonian tonight last night  favourite installation ig tmnikonian  youtube london light festival  georgekimm last day lumiere london check insta stories full tour  lumierelondon  haywardgallery really excited pa  2018 annual free outdoor light festival showcases london architecture includes david batchelor 60minutespectrum top haywardgallery explore lumiere london programme thinking back  last night one best bits knocking aworks way walking middle regent street among crowds traffic surreal experience pics wandering round lumiere london last night see ends 10 30pm tonight lumierelondon lumiere   badgerust fox amp badger stars  london festival lights lumiere festival weekend awesome hope like video lumiere2018 lumierefestival  lumierelondon lumiere lumierelondon2018 last night lumiere ldn festival spectacle  lumierelondon light love london friends experiences  edgillwhl lumierelondon leicestersquare  a london travel amateur photography quick visit  last night  full swing wrap warm head outdoors explore dazzling lights open till 22 30 evening child hood dancing lightbulbs  lumierelondon timeoutlondon lightfestival unprofessional images quick visit  last night another upcoming visitor rules  leicester square  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels visited lumiere yet live london put coat turn telly get 10 30pm last night awesome lumierelondon2018  fishinaphonebox  locket25  aichoketrust beautiful brilliant thank please come back  kate_travels yes snowing today excuse catch  check highlights past nights london lumiere lumierelondon light photography lantern westminster westminsterabbey highlights citylife travelblogger child hood collectif coin  trafalgar square london street bnw_planet tfl update tfltrafficnews  road closures implemented currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound charing cross road elsewhe haley hare coming plate rules soon  moon water jd  southbanklondon last chance see amazing  installations tonight pop south bank see wave brightnights  tfltrafficnews  road closures implemented currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound charing cross road elsewhere west end area dot light selfie kingscrossn1c visitlondon aichoketrust solomongreyband philippemorvan  london lighta gavriiluxwarm light attracts people people take photos enormous bank light bulbs pulse flash  2018 leicester square looking funky beautiful light sculptures  sparkleyesxx ya gonna call lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth fish a ainstallation lovelondon benoitdeseille benedettobufalino sevendials 7dialslondon droplets pa lumiere festival  lumiere lumiere neon drolpets london today last chance see spectacular a installations across regent street pa lumiere london 2018 miss origin world bubble chevaliermiguel action tonight  carnabylondon 126 316 800 steps   road closures implemented currently slow moving traffic around trafalgar square approaches nohbound charing cross road directions pall mall westbound charing cross road elsewhere west end area  benjamingammon another installation wonderful   visitlondon sweet dreams thelondoneye   really light dry january also pleased outcome google pixel 2 camera low light shooting lumierelondon  ball oxfordstreet regentstreet regent street alberich   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  fantastic idea many londoners others braving rain appreciate lights absolutely blown away  last night  ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  aichoketrust beautiful brilliant thank please come back  loki_lego trafalgar square  lumierelondon  jubileeline travelling tube evening forget  switches 17 30 jubilee line baker street waterloo busy find  tflbusales travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find  benjamingammon another installation wonderful   visitlondon sweet dreams thelondoneye   2018 leicester square garden whole piece called nightlife hatmanoflondon  southbanklondon last chance see amazing  installations tonight pop south bank see wave brightnights enjoy tasty dairy free hot chocolate tonight rococochocs directly opp aquarium  installation check  grantchito  2018 leicester square really embracing festival lights pretty  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  mader wiermann frictions found 103 regent street check  sponsored great poland estates west end panership en route back manchester first london trip 2018 nazia_kassam done dusted wait next one london gulaabjamun meatmarket  kingscross harmonic poal chris plant lumierelondon  london light st james  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon last chance explore lumiere tonight 50 incredible light installations shining 22 30 forget use  chance feature gallery aichoketrust  southbanklondon last chance see amazing  installations tonight pop south bank see wave brightnights  cheekychops  even better rain  cheekychops  even better rain  grantchito  2018 leicester square really embracing festival lights pretty london lights weekend lumierelondon  a music lights lovelondon  visitlondon sweet dreams thelondoneye   truly phenomenal event went 3 4 days try amp capture last chance see amazing  installations tonight pop south bank see wave brightnights  bbctravelale tweeps  soon lighting kingscross fitzrovia mayfair westend westminster victoria southbank amp waterloo final night road closures incl oxford st regent st piccadilly waterloo place shaftesbury ave expect delays fi  king poals  2018 leicester square really embracing festival lights pretty  light lightfestival waves tinyplanet insta360 night london southbank  brightens spirits long dark winter months aistic director jo pocock quoted aicle lumiere festival fantastic darkest time year great way bringing visitors city  leakestarches incredible four days  tonight last oppounity see triptych aist imakefings leakestreet miss miss ya gonna call lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth fish a ainstallation lovelondon benoitdeseille benedettobufalino sevendials 7dialslondon  even better rain  loki_lego trafalgar square  lumierelondon  badgerust fox amp badger stars  london festival lights fantastic  displays year  wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a  wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy  openyoureyesldn show lumierelondon lumierelondon2018  visitlondon  robbrown678 lumierelondon bandwagon lastnight  aichoketrust visitlondon  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere incredible four days  tonight last oppounity see triptych aist imakefings leakestreet miss miss  badgerust fox amp badger stars  london festival lights  culturetrip get planning amazing light installations going see  handy guide  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  madlinsudn woh braving rains joyful light  wish could  year round hayward gallery neon tower kinetic sculpture philip vaughan storage since 2008 vimeo christine goldsmith 1st stop francistibbalds trail takes london  festival  chrissykinsella friend toddler said aichoketrust lumiere2018  beautiful must made fairies think loveliest description heard far  neillangdesign  lumierelondon lumiere leicestersquare  chrissykinsella friend toddler said aichoketrust lumiere2018  beautiful must made fairies think loveliest description heard far  debkellyldn totally loving wrapped seeing london new light  evening congratulations visitlondon amp aichoketrust teams amazing free event everyone enjoy  lumierelondon lumiere leicestersquare  magiclorne sketch  kingscross london braving rain woh great installations  aichoketrust woh braving rains joyful light   chrissykinsella friend toddler said aichoketrust lumiere2018  beautiful must made fairies think loveliest description heard far  sheenieshaikh seen first vlog 2018 lumiere london  photo credit donotrefreeze retweeted susie richardson srmlondon still buzzing whizz around stunning  last night busy days 45 mpscamden mpsislington msc worked weekend responding 999 calls keeping safe  local patrols hampstead force suppo regular colleagues oneteam  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  mrcravenracont enjoyed exploring  last night another installation wonderful   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  badgerust fox amp badger stars  london festival lights given 10 000 glow sticks painted 5 000 faces pa  hope enjoy final evening tonight  suzyhamilton weekend wandering around gorgeous a installations lumiere london  managed miss  lights today think busy talking nice seen first vlog 2018 lumiere london  photo credit donotrefreeze enjoyed exploring  last night friend toddler said aichoketrust lumiere2018  beautiful must made fairies think loveliest description heard far excited heading final evening  could kindly stop raining would rather nice physical energy royalacademy illuminated rhys coren love motion  watts  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere turned  talk jheeeeeeze fans bulb  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   watermansas venture  question lights london lumierelondon christmas lights month   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   aichoketrust last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  venture  question lights london lumierelondon  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  kingscrossn1c make sure check night market luma pop bar visit  kingscrossn1c lots restaurants special menus celebrate festival well weekend wandering around gorgeous a installations lumiere london   aichoketrust last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  juliane_thm  last night final time tonight take stroll outside stopped snowing lumierelondon2018 mean incredible frost bite pneumonia wohy   freyawilcox tonight last day visit  read really thought famous light festival  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon  last night final time tonight take stroll outside stopped snowing lumierelondon2018  aichoketrust ten top installations explore south bank amp waterloo  back 17 30 evening southbankbid southbankcentre wearewaterloouk leakestarches want see hundreds people climbing walls westminster city hall danielcanogar brought asalto london  victoriabid embspainuk spaincultureuk  kingscrossn1c make sure check night market luma pop bar visit  kingscrossn1c lots restaurants special menus celebrate festival well  thegl0betrotter westminster abbey yesterday beautifully lit london light festival lumiere london   bhawnasaini_yml  harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  thegl0betrotter patrice warrener dazzling installation light spirit  london westminster  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   hotelkensington tonight last chance catch incredible lumiere london aichoketrust  sliceofthecity umbrella project cirque bijou photo andre pattenden couesy aichoke aists rainbow lumierelondon  timeoutlondon rainbow lightfestival  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  switched tonight south bank amp westminster  aichoketrust last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  well total waste time half hour wandering around cold wet saw absolutely nothing   carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon   bbclondonnews  bbctravelale tweeps  soon lighting kingscross fitzrovia mayfair westend westminster victoria southbank amp waterloo final night road closures incl oxford st regent st piccadilly waterloo place johnjraftery lumierelondon southbank great night anyway   loki_lego trafalgar square  lumierelondon  bhawnasaini_yml  harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival noveltyat  time sea granary square lumiere london lumierelondon 2018 light lightinstallation night granarysquare rain keep away   aichoketrust last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring  bhawnasaini_yml  harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  aichoketrust last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring aichoketrust visitlondon rain easing droplets unrelenting come enter calming space fitzroy place aichoketrust visitlondon timeoutlondon  lumierelondon2018 lumiere lumierelondon lightfestival lighta  kingscrossn1c  highlights last couple days kingscrossn1c make sure visit tonight final chance well lumiere london fabulous wish time see painted facade westminster abbey magical level detail nothing sho extraordinary   harmonic poal chrisplant one found eerie yet stop looking hypnotizing indeed visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking last night last chance explore  open till 22 30 50 installations across 6 destinations discover get exploring  mazerestaurant nice little challenge create something light light bulb  finally bar team celebrating perfect serve throughout festival 18 21st january  thegl0betrotter patrice warrener dazzling installation light spirit  london westminster  thegl0betrotter westminster abbey yesterday beautifully lit london light festival lumiere london    marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  badgerust fox amp badger stars  london festival lights haring around london bag canonuk cameras shooting lumiere2018 thanks aichoke great work westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere adored animal nightlife leicester square  unmissable event  londonisopen mayoroflondon aichoketrust stunning photos show lumiere aworks lighting london night evening standard  visitlondon sweet dreams thelondoneye   lumiere night 2 fantastic night thanks aichoke great work westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere  soas case heard somehow  weekend check blog spots close soas  lumierelondon2018 westminsterabbey tonight night already brace cold visit  chinatown london beyond thesnowcantstopus cold amp tired amp wet outside metline join mastercarduk priceless  group hoping fir awesome photos yes snowing today excuse catch  check highlights past nights london lumiere lumierelondon light photography lantern westminster westminsterabbey highlights citylife travelblogger popular thornton heath cr7market back 27 jan head ambassador house forecou 12pm 6pm array local as crafts goods trumble gardens 4pm 9pm mix hot cold food enjoying thlf2018  croydon enjoyed wandering around  installations yesterday evening seen festival hurry ends evening well woh checking visitlondon bealocaltourist phone 18 months realised today straighten photos  numpty little bit adam leakestreettunnel  emmaallendesign greymatters timeoutlondon  visitlondon sweet dreams thelondoneye   loki_lego lumierelondon  trafalgar square leicester square  loki_lego leicester square lumierelondon   loki_lego trafalgar square  lumierelondon  sadiqkhan spectacular installations lighting london londonisopen lumiere   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels pa beauty  discovering new places idea existed  hotelkensington tonight last chance catch incredible lumiere london aichoketrust  sliceofthecity umbrella project cirque bijou photo andre pattenden couesy aichoke aists  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon thursday 18 sunday 21 january  light festival happening central london trains maybe busier normal please check travel find lumiere london visit tonight last chance catch incredible lumiere london aichoketrust  sliceofthecity umbrella project cirque bijou photo andre pattenden couesy aichoke aists  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a  cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  bbctravelale tweeps  soon lighting kingscross fitzrovia mayfair westend westminster victoria southbank amp waterloo final night road closures incl oxford st regent st piccadilly waterloo place shaftesbury ave expect delays fi  badgerust fox amp badger stars  london festival lights  wearewaterloouk reimagine london architecture see city new light lumierelondon aichoketrust   carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon regent street piccadilly circus  painted glowing light  cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  thegl0betrotter patrice warrener dazzling installation light spirit  london westminster  2018 plants look pretty oozing luminously taking many sights  tonight take advantage 100s specialoffers london businesses visitlondon traceyemin  lumierelondon neon light lighting colour london swipeleft fish chats happily mesmerised fish phonebox aquarium benedetto bufalino benoit deseille lumierelondon2018 event lumiere   smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust tweeps  soon lighting kingscross fitzrovia mayfair westend westminster victoria southbank amp waterloo final night road closures incl oxford st regent st piccadilly waterloo place shaftesbury ave expect delays fi  thegl0betrotter westminster abbey yesterday beautifully lit london light festival lumiere london   rhianbwatts really enjoyed exploring  festival past days  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a  redlionmayfair westend final day spectacular  amp want relax away weather call london_pride open today 4pm end weekend style piccadilly stjames jermynstreet  smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust  carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon  badgerust fox amp badger stars  london festival lights projectservator reassuring businesses southbank lambethmps lumiere festival use uniform plain clothes officers pa ongoing operations dress warm evening  actioncountersterrorism teamworktomakethedreamwork  2018 butterflies hanging trees leicester square pretty  loki_lego trafalgar square  lumierelondon trafalgarsquare  lumierelondon balloons lighting light london swipeleft westminster abbey yesterday beautifully lit london light festival lumiere london  reflections mayfair lumierelondon  neon light lighting colour london mayfair lumierelondon  neon light lighting colour london  thegl0betrotter patrice warrener dazzling installation light spirit  london westminster  smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust  7dialslondon tonight last chance see amazing aquarium seven dials pa  head earlham street 5 30 10 30pm find nohernlights grosvenorsquare  lumierelondon lighting lights london  cheriecity mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  carnabylondon last chance see  tonight check light shows 5 30pm lumierelondon  imakefings last day  last chance come amazing leakestreetarches last day  last chance come amazing leakestreetarches  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  robwdawkins stunning light display oxotowerwharf lumierelondon  photograghy  lizziemidd favourites  yesterday evening tad chilly well woh visit good map visitlondon app  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a patrice warrener dazzling installation light spirit  london westminster  smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust  aichoketrust  back tonight 17 30 cold wrap warm discover 50 dazzling installations like child hood collectif coin trafalgarsquare sponsored zumtobel_light  redlionmayfair westend final day spectacular  amp want relax away weather call london_pride open today 4pm end weekend style piccadilly stjames jermynstreet last chance see  tonight check light shows 5 30pm lumierelondon  emmabennett29 flying flamingos pa  west end london tonight last chance enjoy free light installations a  rhianbwatts really enjoyed exploring  festival past days westminsterabbey  thing looks best sure bothered 12 minutes walk  southbanklondon evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  helbron thanks second magical night lights  visitlondon  2018 beautiful frogs look real sound water fountain mimicking habitat fantastic work  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon  aichoketrust learn origin world bubble 2018 took flight  timelapse chevaliermiguel newwestend wave created danish installation company obscuraveigo responds movement amp sound 40 arches walk amp interact beacon light darkness riverfront  southbank  traveljunkiegrl made tonnes empty plastic bottles rose window outside westminster cathedral epic   southbanklondon evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon  random_helen pics  weekend babcockwalk step count thethroneseekers team pounded streets london  seen fish phone box celebrated friend 50th amp watched beautiful performance wiltonmusichall flying lovers vitebsk fun culture fitness done  stuff last night bothered need get dinner though might swing past trafalgar leicester squares way tesco least done mesmerising waterlicht sroosegaarde pa  catch tonight kingscrossn1c festival ends lumierelondon  southbanklondon evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  evening raise glass  two ingeniously original amp luminous cocktails intriguing names gillrays choose bat catching amp pandora box brightnights gt  ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  tflbusales travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find  visitlondon 5 gorgeous aworks discover explore  beautiful fitzrovia area let us know favourite  visitlondon sweet dreams thelondoneye  child hood pulse movement light amp sound across trafalgarsquare collectifcoin  really enjoyed exploring  festival past days see  bundle warm hot toddy flying flamingos pa  west end london tonight last chance enjoy free light installations a  nickede wait go aichoketrust lumierelondon2018  visitlondon  fuzzworks_uk waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere  openyoureyesldn show lumierelondon lumierelondon2018  visitlondon  ontheroadtoyou  really put great installations weekend final night go check visitlondon  alifestylerebel well never chance visit highlight  best light festival taking london lumierelondon youtube blogger photographer visitlondon visitlondon createvictoria  tanjaphotograph magical lumière london  lumierelondon2018  2018 animal galore leicester square great creative way educate remind people love amp care animals fantastic works crowd gatherer stairway heaven amp kinetic energy spread across trafalgarsq child hood light amp sound scape collectifcoin echelle ronhaselden illuminate buzz  big lumiere  lumierelondon lumierelondon2018 mayfair streeta last night lumiere london tonight westminster abbey paicular favourite even got ghostly copper pic last night  wabbey  2018 leicester square turned jungle city plants different animals luminously amp beautifully staring beautiful saturday night lumiere london   badgerust fox amp badger stars  london festival lights  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon magical lumière london  lumierelondon2018  badgerust fox amp badger stars  london festival lights magical lumière london  lumierelondon2018  7dialslondon tonight last chance see amazing aquarium seven dials pa  head earlham street 5 30 10 30pm find  grantchito  2018 giant beautifully crafted flamingos look pretty gliding along busy streets chinatown  badgerust fox amp badger stars  london festival lights  postcardslond1 lumiere london royalacademy love motion lumierelondon2018 londonlumiere  lumierelondon  aichoketrust  back tonight 17 30 cold wrap warm discover 50 dazzling installations like child hood collectif coin trafalgarsquare sponsored zumtobel_light tonight last chance see amazing aquarium seven dials pa  head earlham street 5 30 10 30pm find westend final day spectacular  amp want relax away weather call london_pride open today 4pm end weekend style piccadilly stjames jermynstreet  loki_lego leicester square lumierelondon   ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  2018 giant beautifully crafted flamingos look pretty gliding along busy streets chinatown thanks lovely write flamingoflyway _kwaters_  tonight lastchance magical lumière london  lumierelondon2018  great installations impulse pa  exhibition taking place london tonight last chance visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  installations   sadiqkhan spectacular installations lighting london londonisopen lumiere   southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt e e r e  london united kingdom  2018 st main fields red ladder top spire hallelujah chorus patricewarrener second coming light spirit chpt 2 westminster abbey masterful quite disney amp wholly god damn marvellous catch evaporates tonight 10 30pm   ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  badgerust fox amp badger stars  london festival lights tonight last day visit  read really thought famous light festival gasholders reimagined architectural drawings staring years finally reality gasholders gasholderiplets kingscross  lumiere  levanterman behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon  highlights last couple days kingscrossn1c make sure visit tonight final chance  16 beautiful works discover london westend last chance see tonight 17 30  holbid newwestend shaftesburyplc regentst_assoc thecrownestate  really put great installations weekend final night go check visitlondon  visitlondon sweet dreams thelondoneye   srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust every event branded amp  sweets sugar  aichoketrust get insight magic behind  browse oppounities training jobs across range exciting oppounities technicians_mih website techniciansmakeithappen  smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust  ottersrowing final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  smitf_london tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust  thesavoylondon excited explore  next nights london lit incredible illuminated a installations day 21 take seat spent 5 minutes reflecting origin world bubble chevaliermiguel pa  mesmerised colour transforming shapes feels like new planet discovered oxford street thejanuarychallenge 64millionaists tonight last chance see ron haselden echelle illuminated spire  stop café couyard open evning 4 7pm aichoketrust really enjoyed stunning  last night great share experience uoc_dance technical production students  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  warm spirit running round catching final night sparkling  london   visitlondon sweet dreams thelondoneye  lumierelondon regentstreet piccadilly  a london travel  loki_lego trafalgar square  lumierelondon  wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy final night see us climb westminster city hall tonight 5 30pm  check exclusive cast commentary first saw warning contains word bum  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon get chance check  last night tonight leicestersq chinatown trafalgarsq southbank london  lumierelondon  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  last chance see installations  tonight miss flamingoflyway nightlife  postcardslond1  piccadillycircus  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  londonlumiere lumiere london  wattsgallery weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy  visitlondon sweet dreams thelondoneye  child hood lumiere  lumierelondon trafalgarsquare trafalgar square  niamaelynel easy way get free followers newcastle  fontwell crz_mankai8 awesmoeb  badgerust fox amp badger stars  london festival lights easy way get free followers newcastle  fontwell crz_mankai8 awesmoeb  adithatsme cool   last night granary square westminster abbey lumiere london impossible project 1 polaroidorignls type 600 film exposure f22 15 seconds  lumierelondon2018  edgillwhl woundfull images wildlife leicestersquare london lumierefestival lights   sadiqkhan spectacular installations lighting london londonisopen lumiere  london lumiere friends bench  lumierelondon friendship ipreview  badgerust fox amp badger stars  london festival lights  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham lumierelondon leicestersquare  a london travel  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  waterlight daan roosegaarde  london kingcrossn1c lumiere london london king  badgerust fox amp badger stars  london festival lights  ivysohobrass really excited  staing tomorrow soho miss playful lightbulb installation ganton street around corner us carnaby soho lumierelondon carnabylondon  southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt  badgerust fox amp badger stars  london festival lights woundfull images wildlife leicestersquare london lumierefestival lights   badgerust fox amp badger stars  london festival lights engineering works final day  seems like really sma idea hell organises things  ldn_culture westminster mayfair soho southbank installation  aichoketrust londonisopen  badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  ldn_culture westminster mayfair soho southbank installation  aichoketrust londonisopen enjoyed strolling across city taking different aworks  clairefurner fave child hood collectif coin trafalgar square hypnotic  iesphotos london lumiere 2018 flickr iesphotos cityatnight  london a photography  2018  mrsmmain chance go see  tomorrow blown away pictures justice thanks aichoketrust harmonic poal st james church last chance see tonight lumierelondon  london tfl update tfltrafficnews travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find fantastic evening seeing light a works   tflbusales travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find  visitlondon sweet dreams thelondoneye   postcardslond1 lumiere london royalacademy love motion lumierelondon2018 londonlumiere  lumierelondon getting spirit last day lumiere london  lumierelondon piccadillycircus  tfltrafficnews travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find  tflbusales travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find travelling car bus evening forget  switches 17 30 roads around west end south bank king cross closed buses diveed event find sorry missed  year least make canary wharf winter lights last night amazing lumiere london royalacademy love motion lumierelondon2018 londonlumiere  lumierelondon loving glissando action illumophonium lumierelondon2018  time sta talking amazing city ldn shahmbles hi sita brave weather join us one last night  fun  badgerust fox amp badger stars  london festival lights granary square lumierelondon  london londontown  badgerust fox amp badger stars  london festival lights  traveljunkiegrl night night london another day sets  one evening left wish longer fun night  last night brilliant light displays  badgerust fox amp badger stars  london festival lights  greekphotoguy westminster abbey  london londonbynight  samsungs7 nofilter cityscape urbana westminsterabbey timeoutlondon  kingscrossn1c planning trip  keep eye visitlondon website updates incredible installations  year great see many families take look culturallearning  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  mpsonthewater southbank lit pa  imakefings looked brilliant never seen many people leakestreet one night long take one video  visitlondon  badgerust fox amp badger stars  london festival lights miss mader wiermann grabber computer simulated version architectural creation set backdrop coal drops yard kingscrossn1c bamconstructuk  last day lumiere london check insta stories full tour  lumierelondon  badgerust fox amp badger stars  london festival lights  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon hea warming a work  royal academy as london waltz piano mandela hands visit website see order prints lumierelondon mandela statue lumiere westminsterabbey  colour timeout streetphotography longexposure weroamtheworl lumière festival piccadillycircus building lights music video  igerslondon  lumierelondon2018 thelondoneye waterlicht  one coolest things ever encountered resembling something scifi movie brilliant work sroosegaarde a light granarysquare kingscrossn1c london lumiere  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster  lumierelondon lighting light colours  tomdingleyphoto  snaps lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  piccadillyline travelling tube evening forget  switches 17 30 piccadilly line king cross st pancras hyde park corner busy find  lumiere2018 southbank leicestersquare westminsterabbey london united kingdom westminsterabbey westminster  lumierelondon london lighting light  londontheinside last day  go get snapping travelling tube evening forget  switches 17 30 piccadilly line king cross st pancras hyde park corner busy find behind scenes shot  canonukandie visitlondon aichoketrust southbanklondon slightly obvious still amazing westminster westminsterabbey  light  tfltravelales travelling tube evening forget  switches 17 30 central london lines stations busy find weekend  lighting capital including physical energy royalacademy make sure see g f watts monumental sculpture new light tag wattsgallery photos watts physicalenergy  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  flowers lumierelondon lumierelondon2018  lumiere  airheadhell last night lumierelondon2018  nightlife leicestersquare lumiere  lumierelondon leicester square   mpsonthewater southbank lit pa   back tonight 17 30 cold wrap warm discover 50 dazzling installations like child hood collectif coin trafalgarsquare sponsored zumtobel_light  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  airheadhell national theatre  lumierelondon2018  badgerust fox amp badger stars  london festival lights visitlondon yesterday wonderful known turn 10 30 wld planned better see  saw timings faqs page front page wld helped aichoke amazing installation pa 2  regents canal kings cross glow  london oxfordstreet bike lumierelondon brown ha gardens get fun lumiere london 2018 last night londonlumiere london lumierelondon2018 lights  fun westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather amazing installation pa 1  regents canal kings cross  igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon travelling tube evening forget  switches 17 30 central london lines stations busy find  nohernline travelling tube evening forget  switches 17 30 nohern line euston waterloo busy find tiny taste amazing   2018 appropriate piece called child hood feel like child seeing flickering white balloons dancing music amp wind everyone fun including hatmanoflondon travelling tube evening forget  switches 17 30 nohern line euston waterloo busy find  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon  mrg48 images take  leicester square photograghy london lumierelondon  ivysohobrass really excited  staing tomorrow soho miss playful lightbulb installation ganton street around corner us carnaby soho lumierelondon carnabylondon london lumiere 2018 flickr  london a photography  reed_claire westminster abbey looking spectacular last night   ivysohobrass really excited  staing tomorrow soho miss playful lightbulb installation ganton street around corner us carnaby soho lumierelondon carnabylondon london lumiere 2018 flickr iesphotos cityatnight  london a photography  lumiere london point last night amazing  westminster abbey looking spectacular last night   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   last chance tonight rediscover city lumiere london hot tip king cross   last night packed people csm_news background wonderful events  tfltravelales travelling tube evening forget  switches 17 30 central london lines stations busy find travelling tube evening forget  switches 17 30 jubilee line baker street waterloo busy find  mrg48 images take  leicester square photograghy london lumierelondon loved  last night  2018 trafalgar square looks pretty white balloon lights scattered around emitting dancing lights music  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  mrg48 images take  leicester square photograghy london lumierelondon lumiere london 2018 illuminated umbrellas regent street piccadilly light festival walk lumierelondon  lumierelondon2018 lumiere saw 20  exhibits last night brrrrr missed cuties thanks pic badgermoon stopthecull  tfltravelales travelling tube evening forget  switches 17 30 central london lines stations busy find nice coverage cosmoscope al jazeera one night   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   tfltravelales travelling tube evening forget  switches 17 30 central london lines stations busy find  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  oh gee wait go check  later looks window  sadiqkhan spectacular installations lighting london londonisopen lumiere   badgerust fox amp badger stars  london festival lights neon bike pa  exhibition taking place london tonight last chance visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  waterlicht sroosegaarde simply stunning kingscrossn1c inspired changing relationship water additional suppo royal netherlands embassy csm_news   mpsonthewater southbank lit pa  oh man really hope stops raining snowing run check  southbank  circleline travelling tube evening forget  switches 17 30 central london lines stations busy find  centralline travelling tube evening forget  switches 17 30 central line holborn marble arch busy paicularly oxford circus find  tfltravelales travelling tube evening forget  switches 17 30 central london lines stations busy find  southbanklondon miss chance enjoy special  offer oxo_tower 3 courses amp cocktail 36 find amp discover great lumiere offers gt brightnights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  travelling tube evening forget  switches 17 30 central london lines stations busy find travelling tube evening forget  switches 17 30 central line holborn marble arch busy paicularly oxford circus find travelling tube evening forget  switches 17 30 central london lines stations busy find  badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust miss chance enjoy special  offer oxo_tower 3 courses amp cocktail 36 find amp discover great lumiere offers gt brightnights lumierelondon  excellent light exhibit leicester square christchurchn14 woody vicaragecat says stay warm afternoon brave winterweather epiphanytide carolservice 6 30 southgatechoir candlelit   eye love london pre dusk magic atmosphere along river thames london  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   badgerust fox amp badger stars  london festival lights  londontheinside last day  go get snapping  londonviewpts  tonight tomorrow last chance watch new video see  badgerust fox amp badger stars  london festival lights  helbron thanks second magical night lights  visitlondon show lumierelondon lumierelondon2018  visitlondon  londontheinside last day  go get snapping  londontheinside last day  go get snapping  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt  tomdingleyphoto  snaps lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham want brave snow check last day lumierelondon day brunch course aichoketrust   badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  figuehisout london turned city sized sensory room   badgerust fox amp badger stars  london festival lights travelling tube evening forget  switches 17 30 district line victoria embankment busy find  wright1carole light yonder window breaks romeo amp juliet shakespearesunday  walk1000miles londonisopen lovelondonwalklondon  badgerust fox amp badger stars  london festival lights  alifestylerebel well never chance visit highlight  best light festival taking london lumierelondon youtube blogger photographer visitlondon visitlondon createvictoria  tomdingleyphoto  snaps lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   mrg48 images take  leicester square photograghy london lumierelondon  snaps lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  spent yesterday evening exploring  light festival  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  fox amp badger stars  lets use oppounity save real thing tighten loopholes hunting laws pics   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  waterlicht london lumiere festival 2018  flickr  badgerust fox amp badger stars  london festival lights  5to9traveller  visitlondon go go go  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  lumierelondon2018 lumierelondon  visitlondon  londontheinside last day  go get snapping  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   westminsterabbey  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   biggsytravels  take bow many smiles faces amp rather wonderfully lots people talking  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   ioe_london check  light festival weekend including lots installations nearby fitzrovia king cross visitlondon aichoketrust last day  go get snapping images take  leicester square photograghy london lumierelondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   royalacademy catch  ra 5 30 10 30pm tonight tomorrow rhys coren love motion light burlington house colourful matisse inspired animations find latest central pas herald  listudenttravelaward  crowe_photo dream cédric le borgne photo julian crowe crowe_photo visitlondon aichoketrust  cedricleborgne london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 tktslondon  leicestersquare bloom  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   aichoketrust inspiringa projected royalacademy  aichoketrust learn origin world bubble 2018 took flight  timelapse chevaliermiguel newwestend  badgerust fox amp badger stars  london festival lights  krittstweets heading  tonight 50 installations see top 5 installations see gt visitlondon inlondon visitlondon final night quite event many visitors weekend thank aichoketrust visitlondon  lumierelondon2018 lumiere lumierelondon lightfestival lighta lightaist lightinginstallation sounda pics   badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  sarah_wall nightingale berkeley square even playing song lumierelondon   badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights brilliant 3 days  enjoying every single installation congratulations amp many thanks aichoketrust involved really outstanding give light  lightontheirfeet   badgerust fox amp badger stars  london festival lights travelinglens cool hope managed catch  festival spectacular westminsterabbey detail lamp london  lumière lumierefestival lights colours  darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon  badgerust fox amp badger stars  london festival lights  chinatownlondon time life catch flamingoflyway  last chance ends tonight aichoketrust charity chinatownlondon  aichoketrust get insight magic behind  browse oppounities training jobs across range exciting oppounities technicians_mih website techniciansmakeithappen  badgerust fox amp badger stars  london festival lights  badgerust fox amp badger stars  london festival lights  tonyrdb  kingscross  badgerust fox amp badger stars  london festival lights talking  umbrellas soho westminster abbey night lumiere  nightlights brightlights londonbynight  badgerust fox amp badger stars  london festival lights  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  fox amp badger stars  london festival lights amazing visitlondon  next year get surrounding buildings turn lights max impact lumiere  london westminsterabbey westminster lightfeature lights  southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt loving lights   southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  hotelcaferoyal last day  miss journey time space voyage hotelcaferoyal piccadillycircus lmaosuk visitlondon london londonlumiere  wright1carole light yonder window breaks romeo amp juliet shakespearesunday  walk1000miles londonisopen lovelondonwalklondon  lizziemidd favourites  yesterday evening tad chilly well woh visit good map visitlondon app  southbanklondon today last day  make trip south bank see spectacular luminous installations handy guide gt  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon  krittstweets heading  tonight 50 installations see top 5 installations see gt visitlondon inlondon visitlondon today last day  make trip south bank see spectacular luminous installations handy guide gt westminsterabbey  london lumière lumierefestival lights colours westminster  facltd teams busy lumierelondon  lumiere date critical care amp medical response teams dealt calls ranging breathing difficulties chest pain diabetic collapses drug overdoses keeping londoners safe eventprofs firstaid crowds streaming watch lumiere london king cross sometimes best photos obvious ones kingscross  atmosphere eventplanning bizarre see regentstreet picadilly london full people instead traffic one night  london night londonlife londonlights londoneye  lumiere nightlights  mpsprinces team keeping princes safe us patrolling   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  tonight last chance see fab light designs performances london lumiere 2018 see thames pulse mondrian hotel sea containers house translating live data health river light displays plus much  westminsterabbey  london lumière lumierefestival lights colours westminster  londongramer westminsterabbey lit  wonderfully captured jhinlondon thisislondon  bakerlooline oxford circus piccadilly circus extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  victorialine oxford circus king cross st pancras extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  ivysohobrass really excited  staing tomorrow soho miss playful lightbulb installation ganton street around corner us carnaby soho lumierelondon carnabylondon  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   muffled1 droplets full flow aichoketrust lumierelondon lumierelondon2018  lumierelondon lighta lightaist lightinstallations installationa alovers raindrops droplets  muffled1 droplets running sound resonates nicely couyard lumierelondon aichoke  lights camera action lumierelondon  aichoketrust check latest lumierelondon2018 lumierelondon  photos friday night king cross london lumierelondon2018 lituplondon ldnlumiere  southbank water rivehames london se1  south bank london  visitlondon sweet dreams thelondoneye   aichoketrust ten top installations explore south bank amp waterloo  back 17 30 evening southbankbid southbankcentre wearewaterloouk leakestarches  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  last night finally got meet nads foy coventgarden see little bit   2018 mesmerising piece called child hood trafalgar square rain makes dramatic reflection water added another dimension westminsterabbey colours lights  lumière lumierefestival westminster abbey ghosts kingscross  igerslondon london visionlondon ilovelondon ten top installations explore south bank amp waterloo  back 17 30 evening southbankbid southbankcentre wearewaterloouk leakestarches  visitlondon sweet dreams thelondoneye   krittstweets heading  tonight 50 installations see top 5 installations see gt visitlondon inlondon visitlondon wave london lumiere festival 2018 flickr  a lighta canonukandie eos6dm2 canon festival  visitlondon sweet dreams thelondoneye  ceainly enjoyed  year great evening family photography event london kingscross ccampbellmusic maybe pink neon bike idea lumierelondon2018 lumierelondon  visitlondon  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  childrenandas trafalgar square lights  opens london landmarks lit colour next four days gt gt gt  lumiere lighta lighting kingscross southbank westminsterabbey london england unitedkingdom greatbritain  2018 called asalto london cleverly done lumierelondon2018 lumierelondon  visitlondon photos yesterdays lumiere london  beaut love city time life catch flamingoflyway  last chance ends tonight aichoketrust charity chinatownlondon seen bottle festoon south bank mayfair king cross yet last chance tonight see chandeliers made used plastic bottles  sponsored veoliauk afterdark  great pop see   gordonramsaygrp visiting  today helpful map get around mayfair something quick pick mazerestaurant young child stares awe aquarium  lumiere festival  lumiere spotted 7dialslondon iconic red telephone box turned aquarium pa  experience sensory stroll around unusual field entre les rangs rami bebawi kanva installation features thousands illuminated flower like reflectors still time catch pa  visit kingscrossn1c tonight  mpsonthewater southbank lit pa  sketch  kingscross london close oxfordcircus  lumierelondon lighting light  visitlondon sweet dreams thelondoneye  town today lumiere london treat bloomsbury tea charlotte st hotel warming delicious amp frankly ticks every box ahead last night london light show  teatime sundayfeels indulge another favourites oxfordcircus  lumierelondon lighting light colours  simply wonderful looking forward seeing tonight regardless weather makes one proud londoner x aichoketrust visitlondon mayoroflondon  sadiqkhan spectacular installations lighting london londonisopen lumiere  follow instagram thestevestubbs photography shenanigans various bits bobs instagram  admire vivid tubes fluorescent light grow facade mayfair building climbing like ivy wall last chance see bough 3 british aist lighting designer simon corder  evening sponsored cain_int dontmissout lumiere london last night fraction show arabella dorman suspended st james church uses clothes shoes discarded refugees arrival greece   sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen little bit   victorialine oxford circus king cross st pancras extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  visitlondon sweet dreams thelondoneye   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   lumierelondon  lovecamden today last day  sad see go pop today fill light a passing kings cross check amazing sculptures across city aichoketrust  sadiqkhan spectacular installations lighting london londonisopen lumiere  last day  today heading capital please plan journey advance tube stations close atttractions exceptionally busy tfl travel info textbtp 61016 need us awesome looking pieces aichoketrust loving photographs  2018  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  aichoketrust learn origin world bubble 2018 took flight  timelapse chevaliermiguel newwestend folks still time explore dazzling display rainbow light lumierelondon today january filled much blues lumierelondon  lovelondon oxford circus king cross st pancras extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  srmlondon still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen still buzzing whizz around stunning  last night like treasure hunt beautiful city eah loved london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   wearewaterloouk reimagine london architecture see city new light lumierelondon aichoketrust  beautiful reflektor studioroso shame sunglasses st james market x visitlondon aichoketrust  lumierelondon a streeta lightfestival  wearewaterloouk reimagine london architecture see city new light lumierelondon aichoketrust  final evening  visited yet make sure come kingscrossn1c see stunning installations  sadiqkhan glad enjoyed bigger brighter bolder tonight last night  miss londonisopen reimagine london architecture see city new light lumierelondon aichoketrust  fiftyminus2 westminsterabbey ooh breathtaking last day today lot walking involved go take tube woh seeing  ooh drop gin majesty ooh glad enjoyed bigger brighter bolder tonight last night  miss londonisopen  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham lovely evening visitlondon  last night soak luminous atmosphere crowds good natured visiting  today helpful map get around mayfair something quick pick visiting  today helpful map get around mayfair something quick pick mazerestaurant love motion pa  royal academy as  londontheinside bloody brilliant  get ends tomorrow lumiere  lunierelondon2018 lumierelondon lumierelondon pics lighting london aichoketrust   sadiqkhan spectacular installations lighting london londonisopen lumiere   2018 light spirit chapter 2 shows beautiful amp intricate colours slowly fading reappearing changing hues images mesmerising official parking paner qparkuk offering 15 parking  london car parks use promo code lumiere15 pre booking online london puts pretty good light show year round  lumierelondon  deliacazzato wow beautiful westminsterabbey  good morning dee beautiful want attend  long hopefully majesty attendance pop gin happy sunday x managed catch  last chance today woh braving chill great evening checking bright lights  westminsterabbey foxy bulbs  traveljunkiegrl made tonnes empty plastic bottles rose window outside westminster cathedral epic  london treated  weekend beautiful dancing couple one favourites royalacademy last night  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  last day lumierelondon like retweet seen beautiful instalments around london come amp see lights today late find nearest ping pong amp order flashing paparazzi cocktail  visitlondon wait go aichoketrust lumierelondon2018  visitlondon  lovecamden today last day  sad see go pop today fill light a passing kings cross check amazing sculptures across city aichoketrust londontown absolutely buzzing last night  much see paicularly  newwestend watch origin world bubble installed oxford circus  morn fiftyminus2 lovely friend ooh marvellous buckinghampalace night ooh  ooh london came alive lights went dannycazzato today last day  sad see go pop today fill light a passing kings cross check amazing sculptures across city aichoketrust  hotelcaferoyal last day  miss journey time space voyage hotelcaferoyal piccadillycircus lmaosuk visitlondon london londonlumiere  doublemacbex many awesome light installations  kingscrossn1c year  2018 light spirit chapter 1 westminster abbey london lumiere 2018 collection flickr  lights a london  robbingham giant nightingale berkeley square   sadiqkhan spectacular installations lighting london londonisopen lumiere   people force yesterday night central london sight props aichoketrust visitlondon impressive work putting year event us enjoy trappedinzoneone  wright1carole light yonder window breaks romeo amp juliet shakespearesunday  walk1000miles londonisopen lovelondonwalklondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  let put seeing imakefings santiago leakestreet one installations undercover stay dry enjoy   newwestend go motions love royalacademy rhyscoren  installation lumierelondon aichoketrust holbid grosvenor_gbi thewpa thecrownestate watch origin world bubble installed oxford circus   zahidtg went  yesterday amazing use lighting westminster abbey fish tank phone box clever love motion royal academy as  lumierelondon control control daniel iregui another smaller favourite lumiere london 2018 whitfield gardens olympus omd em1 8mm f1 8 fisheye  olympus aichoketrust olympusuk best rest stjamessquare  lumierelondon lighting colours trees light hook phone line sinker covent garden x visitlondon aichoketrust  london lightfestival lumierelondon a streeta redphonebox lumiere london voyage  lumierelondon  postcardslond1  piccadillycircus  postcardslond1  piccadillycircus close ups wondrousness  lumierelondon stjamessquare lighting colour trees lumiere london wonderful experience a light   iamcaermoore london mess around comes public a impressed   lumierelondon lighting stjamessquare colours trees took many photos  going sta favourite absolute masterpiece learn origin world bubble 2018 took flight  timelapse chevaliermiguel newwestend  traveljunkiegrl made tonnes empty plastic bottles rose window outside westminster cathedral epic  ceainly enchanting piece lumiere london 2018 chinatown x visitlondon aichoketrust  london lightfestival lumierelondon a streeta one fun exhibits last night lumiere  london fun stroll last night see  exhibition lovelondon check futuristic rave like landscape ask  granary square  guided_walks  yet sho video favourite light installation got see  waterlicht dutch  postcardslond1  piccadillycircus gorgeous hedgehogs  leicester square theatre  guided_walks  yet sho video  wright1carole light yonder window breaks romeo amp juliet shakespearesunday  walk1000miles londonisopen lovelondonwalklondon  sroosegaarde aichoketrust discover  streetlife london granary square  spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible hea sole lumiere london south bank x visitlondon aichoketrust  london lightfestival lumierelondon  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  busy rainbow birdcage lumiere lumierelondon lumierelondonfestival lumiere2018   lizziemidd favourites  yesterday evening tad chilly well woh visit good map visitlondon app  biggsytravels mind getting wet weekend check  already two fun filled days ends tomorrow check visitlondon info national gallery lumiere 2018  lumiere london nationalgallery timeoutlon trafalgarsquare londonbynight samsungs7 nofilter cityscape urbana  sadiqkhan spectacular installations lighting london londonisopen lumiere   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham last day  miss journey time space voyage hotelcaferoyal piccadillycircus lmaosuk visitlondon london londonlumiere  st paul background light yonder window breaks romeo amp juliet shakespearesunday  walk1000miles londonisopen lovelondonwalklondon  timotolonen came back  catch second half thevoiceuk touch involved twitter trends ever  visitlondon sweet dreams thelondoneye  woh braving cold last night beautiful  seen yet get tonight aichoketrust esgolondon visitlondon timeoutlondon ldn londonist oxford circus piccadilly circus extremely busy evening  spectators possible walk nearby stations travel outside 17 30 20 00 travel info  2018 piece aesthetically amp physically exciting responsible light pedalling bikes around love  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   visitlondon sweet dreams thelondoneye  finally staed 2018 theatregoing yesterday busy three show day harry potter hpplayldn pas 1 amp 2 followed thelatelateshow sundayshowtunes brasseriezedel plus bit  see london less hop citycruises sightseeing boat one piers 10 00  went  yesterday amazing use lighting westminster abbey fish tank phone box clever droplets full flow aichoketrust lumierelondon lumierelondon2018  lumierelondon lighta lightaist lightinstallations installationa alovers raindrops droplets  visitlondon sweet dreams thelondoneye   visitlondon sweet dreams thelondoneye   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   2018 shows apiece works pedal power cyclists exciting see specially know mechanics piece like  piccadillycircus visitlondon weekend enhance mind  a washes away soul dust everyday life picasso thanks aichoketrust lumiere london  kingscrossn1c planning trip  keep eye visitlondon website updates london bound tonight capture lights silhouettes lumierelondon installations anyone fancy coming along snapping silhouette lingering looking cool lights  london porait silhouette canon sunse westminster abbey  london londonbynight  samsungs7 nofilter cityscape urbana westminsterabbey timeoutlondon awesome time watching lumiere lights festival around london last night   darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon  grantchito  2018 eco friendly piece called rose enjoyable amp beautiful piece creatively amp physically hatmanoflondon ball piece pretty  aichoketrust get insight magic behind  browse oppounities training jobs across range exciting oppounities technicians_mih website techniciansmakeithappen lumiere  lumierefestival london lit lights nightlife chinatown custardbuns get insight magic behind  browse oppounities training jobs across range exciting oppounities technicians_mih website techniciansmakeithappen  visitlondon sweet dreams thelondoneye   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   grantchito  2018 eco friendly piece called rose enjoyable amp beautiful piece creatively amp physically hatmanoflondon ball piece pretty much fun lumiere london last night check highlights instagram stories video post coming soon visitlondon travelblogger  lumierelondon2018  biggsytravels mind getting wet weekend check  already two fun filled days ends tomorrow check visitlondon info  2018 eco friendly piece called rose enjoyable amp beautiful piece creatively amp physically hatmanoflondon ball piece pretty bright lights  westminstercathedral amp westminsterabbey  jonathanbadyal love  womensmarchlondon  day expect crowds today last chance see london extraordinary light show  kingscrossn1c today last chance see london extraordinary light show  kingscrossn1c today last chance see london extraordinary light show  kingscrossn1c  london one giant a gallery  trafalgar square today last chance see london extraordinary light show  kingscrossn1c brighten sundayfunday heading  enjoy last night magical light installation timeoutlondon lumierelondon  2018 kx kingscross laser timelapse  scribbling_lau updated  lumierelondon guide info photos king cross handy read heading last night tonight  urbanpanersuk still visited  hurry last day check installations map sta visit kingscrossn1c  shaftesburyplc crowds carnabylondon last night see ganton street dancing light bulbs pa   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  great evening spent  fantastic see many people see great a  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   lumierelondon 2018 kingscross kx timelapse tunnel  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  dianespencerfun beautiful lights way work comedycarnival tonight  lumierelondon flamingos  go see  lumierelondon still today free feeling light headed head lights spectacularly brilliant  mpsonthewater southbank lit pa   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  last night catch amazing light installations lumiere_london 2018 visitlondon many see little time get walking boots amp get many get round mylightisyourlight reflektor illumphonium wasitadream visitlondon   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  photos old lwt tower lumiere london home itv london 45 years biggest shows sad think closing months   back look forward checking via visitlondon waterlicht interesting experience really felt like underwater still able breath hope attend last day tonight hope weather suck much  lumierelondon  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  wave veigo lumiere london riverside walkway southbank lumierelondon   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   oxotowerwharf two days celebrate  biggest outdoor lightfestival uk plan southbank waterloo trail head enjoy dazzling show cold busy lumiere last night  granary square  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   visitlondon sweet dreams thelondoneye   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying   carnabylondon celebrate  giving chance win lomo instant camera lomo lightpainter lomographyuk enter  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  final quick visit  two installations people clearly fun despite cold wet conditions organised aichoketrust suppoed visitlondon pictures  marshalljulius london leicester square invaded colossal irradiated beasts absolutely terrifying  enjoyed  last night beautiful london leicester square invaded colossal irradiated beasts absolutely terrifying   south bank 2  loki_lego trafalgar square  lumierelondon  sadiqkhan spectacular installations lighting london londonisopen lumiere   anaorsatti lumiere london   south bank 1  sadiqkhan spectacular installations lighting london londonisopen lumiere   spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible lumiere london 2018 lumiere  london videocollage lights nightlights royal festival hall  lumierelondon2018  mpsonthewater southbank lit pa   visitlondon sweet dreams thelondoneye   mpsonthewater southbank lit pa   kingscrossn1c another great night stunning light installations kingscrossn1c pa  amazing  much see needs around longer  southbanklondon managed get see  installations yet make sure stop south bank see wave brightnights  daviescoral installation favourites 13 10 6 year old boy  aichoketrust climbing high  lumierelondon  anaorsatti lumiere london  last night lumiere_london drew incredibly diverse crowd londonisopen  lumierelondon2018 seen photos videos  make aberdeencc half arsed attempt spectraaberdeen look like gnats lighting fas oxo tower wharf lumierelondon2018   lizziemidd favourites  yesterday evening tad chilly well woh visit good map visitlondon app  helbron thanks second magical night lights  visitlondon  john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon south bank  lumierelondon2018 light light  lumierelondon2018 lumiere beautiful stark powerful sad yet bright potential hope like updated  lumierelondon guide info photos king cross handy read heading last night tonight  visitlondon 5 gorgeous aworks discover explore  beautiful fitzrovia area let us know favourite  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  londonviewpts  tonight tomorrow last chance watch new video see  visitlondon sweet dreams thelondoneye   mpsonthewater southbank lit pa  really enjoyed  last night miss last chance tonight see incredible aworks around london  went  last night saw a south bank kings cross time considering going tonight  doublemacbex  fun time origin world oxford circus love festival lumierelondon  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  visitlondon sweet dreams thelondoneye  lumiere london neon   aichoketrust make sure pick souvenir guide evening  featuring details aworks aists map exclusive content 5 cards mobile payments accepted thanks squareuk  sanj80  aichoketrust amazinga aichoketrust  want use open boat next year go nearby islingtontunnel   2018  aichoketrust amazinga  jonathanbadyal love  loved illuminated umbrellas dancing lumierelondon   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  aichoketrust inspired  2018 highlights well woh visit busy lumiere showing sheer appetite a public spaces  visitlondon eros ball  still visited  hurry last day check installations map sta visit kingscrossn1c seen light   never seen anything like westminster abbey lumiere festival 2018 tonight last evening incredible illuminated a displays dotted around capital super way enjoy stroll get exercise enjoy a free  lumierelondon a photography londonlife london fab displays kings cross  last night tonight want see london  southbanklondon else amp enjoying  check bough1 simon corder bargehouse south bank brightnights pics talented robwdawkins  loki_lego enjoying  lumierelondon transformed granarysquare  kingscross  sw_help thursday 18 sunday 21 january  light festival happening central london trains maybe busier normal please check travel find lumiere london visit  last night regent street  southbanklondon pay visit leake street  see emma allen triptych ruby santiago amp adam grey matters 750 photos ruby sees allen painted face change skull star filled sky brightnights gt  kingscrossn1c another great night stunning light installations kingscrossn1c pa   sadiqkhan spectacular installations lighting london londonisopen lumiere  southbank centre  lumierelondon2018 kaleidoscope beautiful butterflies  light festival iphoneonly nofilter national theatre  lumierelondon2018  beefeaterdave  evening great pieces leicestersquare raven westminsterabbey  sadiqkhan spectacular installations lighting london londonisopen lumiere   aichoketrust discover mesmerising origin world bubble 2018 oxford circus chevaliermiguel  interactive piece specially commissioned fit world famous site last night lumierelondon2018  another amazing evening enjoying lumierelondon last three nights breathtaking catch last night tonight wear fitbit mayoroflondon aichoketrust visitlondon tfl  london lumiere londonlumiere london  lumierelondon londonlife city a moderna freea london lumiere londonlumiere london  lumierelondon londonlife city a  visitlondon sweet dreams thelondoneye  lumierelondon bandwagon lastnight  aichoketrust visitlondon  nigelblakephoto waterlicht kings cross london lumiere 2018  aichoketrust wundrouslondon timeout londonlumiere  stefanoboski laser vision  lumierelondon lasers light bokeh candid event london kingscross lowlight sonyalpha sigmalens twitter  visitlondon    laser vision  lumierelondon lasers light bokeh candid event london kingscross lowlight sonyalpha sigmalens twitter  berkeleyst_bar  amazing lighting london berkeleyst_bar mayfair cocktail lounge mayoroflondon london_newz mayfairmagazine  hansomldncabbie light bulb ox circus working  embarrassing  londontheinside bloody brilliant  get ends tomorrow managed see  installations origin world bubble  oxfordcircus theoriginoftheworldbubble exercise mean going gym spent great evening wandering london seeing amazing  khchiropractic clairemichie  sadiqkhan spectacular installations lighting london londonisopen lumiere   visitlondon sweet dreams thelondoneye   mpsonthewater southbank lit pa   lights time pedal powered stained glass window victoria visitlondon  mpsonthewater southbank lit pa   visitlondon sweet dreams thelondoneye   ivysohobrass illuminated ivy perfect drink celebrate  weekend weekendvibes soho ivysohobrasserie paulwf  ivysohobrass really excited  staing tomorrow soho miss playful lightbulb installation ganton street around corner us carnaby soho lumierelondon carnabylondon old wabbey reimagined ken kesey merrypranksters   postcardslond1 goodnight trafalgarsquare  visitlondon londonist aichoketrust photos last night visitlondon  london lumierelondon photos last night visitlondon  london lumierelondon photos last night visitlondon  london lumierelondon photos last night visitlondon  london lumierelondon  sadiqkhan spectacular installations lighting london londonisopen lumiere   sadiqkhan spectacular installations lighting london londonisopen lumiere  colour changing umbrellas  last night beautiful tried peek underneath passed see made failed ideas caschat  7dialslondon still time check aquarium seven dials pa  take closer look evening 5 30 10 30pm find exclusive offers shops restaurants download map crazy light reflecting lollipops think king cross loved   visitlondon sweet dreams thelondoneye   mpsonthewater southbank lit pa   thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  grantchito  2018 london eye looks pretty changing rainbow colours colourfully lit surroundings reflected river  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  memoirsofametro child hood  trafalgar square londonisopen  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  sadiqkhan spectacular installations lighting london londonisopen lumiere   westend oxford circus day today characters cite training milne fantastic hundred acre wood characters exhibition v_and_a kathleendrum supper bluebirdchelsea maybe  going tiggerific day  sw_help thursday 18 sunday 21 january  light festival happening central london trains maybe busier normal please check travel find lumiere london visit  visitlondon sweet dreams thelondoneye   visitlondon sweet dreams thelondoneye  annenberg couyard lumierelondon  london londontown  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow loved cloud led balloons wafting cold winter chill last night childhood collectifcoin pa  2018 trafalgarsquare lightinstallation restlessthinking lighta zumtobel  sw_help thursday 18 sunday 21 january  light festival happening central london trains maybe busier normal please check travel find lumiere london visit thursday 18 sunday 21 january  light festival happening central london trains maybe busier normal please check travel find lumiere london visit  7dialslondon discover aquarium seven dials 18 21 january pa uk largest light festival   visitlondon sweet dreams thelondoneye   visitlondon sweet dreams thelondoneye   lifestylings stunning  piccadillycircus via arvinddevalia light lumierelondon architecture  playlondongame seen uk largest light festival happening london right  quick look dazzling installations around london right hurry around sunday  londonacritic great time  highlights still need see rest aim next nights lighta lightfestival lumierelondon lumiere feeling  brightnights  lumierelondon 2018 lumierelondon2018 stepped rainbow never stops garden lollipops lumierelondon vss   loki_lego trafalgar square  lumierelondon  kazbrella  stas tomorrow selection amazing lighting installations favourite cirquebijousumbrellas thats us  visitlondon sweet dreams thelondoneye   sadiqkhan spectacular installations lighting london londonisopen lumiere   visitlondon sweet dreams thelondoneye  future tech laser beams hope swirl electric dreams lumierelondon  vss  visitlondon sweet dreams thelondoneye   londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  sadiqkhan spectacular installations lighting london londonisopen lumiere   childrenandas trafalgar square lights  opens london landmarks lit colour next four days gt gt gt  kingscrossn1c another great night stunning light installations kingscrossn1c pa  lumiere festival london 2018   visitlondon sweet dreams thelondoneye   downloader_vid video downloader android gt gt  priorconstruct lumiere london  westminster abbey  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  travelodgeuk wrap warm head london weekend uk biggest light festival  40 installations across city free book  lizziehendy city looking pretty   nationalgallery celebrate return  today pissarro lit nocturnal scene boulevard montmare night painted 1897 view work room 43  helbron thanks second magical night lights  visitlondon  mpsonthewater southbank lit pa   spoonsontrays oh  treat see wabbey beautifully lit polychrome patrice warrener incredible  visitlondon sweet dreams thelondoneye   traveljunkiegrl made tonnes empty plastic bottles rose window outside westminster cathedral epic   loki_lego lumierelondon  trafalgar square leicester square  loki_lego enjoying  lumierelondon  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust take look mondrianldn weekend amp see transformed thames pulse jason bruges dynamic awork reflects river health real time discover brightnights  gt  thelondoneye stunning  back south bank miss specially created eyelovelondon light show running 6 30pm 10 30pm tonight sunday share favourite shots  kingscrossn1c another great night stunning light installations kingscrossn1c pa  4 days look many people ridiculous  lumierelondon2018 timeoutlondon visitlondon  sadiqkhan spectacular installations lighting london londonisopen lumiere   southbanklondon make trip  south bank even special trip along thames sit back amp watch city lights go thamesclippers brightnights gt thelondoneye looks absolutely incredible cheers  another reason visit london high bucketlist england visitlondon travel travelinspires londoneye wabbey westminster abbey westminsterabbey bbc  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow london lit lumiere festival   southbanklondon make trip  south bank even special trip along thames sit back amp watch city lights go thamesclippers brightnights gt make trip  south bank even special trip along thames sit back amp watch city lights go thamesclippers brightnights gt  sadiqkhan spectacular installations lighting london londonisopen lumiere  enjoyed a installations lumiere london light festival 2018   lovecamden  yet go see amazing aworks displayed kings cross weekend look programme aichoketrust sho montage images london lumiere festival   antsteer  piccadillycircus 1 3  visitlondon sweet dreams thelondoneye   visitlondon sweet dreams thelondoneye   facltd teams busy lumierelondon  lumiere date critical care amp medical response teams dealt calls ranging breathing difficulties chest pain diabetic collapses drug overdoses keeping londoners safe eventprofs firstaid  louisatreger freezing cold loving   visitlondon sweet dreams thelondoneye  cold   thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee  thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee miss lumiere week brought city mayorofldn amp aichoketrust 2018  kingscross carnabystreet regentstreet cityoflondon londonlife londoner a architecture exhibition uk visitlondon visitgreatbritain travelgram thelondonguidee found froggen feel like get satisfying results kinda photography cosplay shoots   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  visitlondon get taste  high life mayfair fish phone box  traffic regent street nofilters  oxfordcircus oxford thank awesome evening aichoketrust  incredible wait return london lumierelondon lumierelondon2018 lumiere  3  light festival aopédelondres london visitlondon igerslondon wanderlust  4  2  light festival aopédelondres london visitlondon igerslondon wanderlust  shiiv spontaneous trip town catch lumierelondon festive fantastic free a lumierelondon2018   visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  mpsprinces team keeping princes safe us patrolling  massive love aichoketrust  festival wonderful awork awesome see festival engage many people huge scale already wait next year  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust lumiere london regent street nofilters  oxfordcircus oxford oxfordstreet  postcardslond1 goodnight trafalgarsquare  visitlondon londonist aichoketrust lumiere london nofilters  oxfordcircus oxford oxfordstreet london thisislondon  ldn_culture westminster mayfair soho southbank installation  aichoketrust londonisopen   exhibits  lumiere london oxford street nofilters  oxfordcircus oxford oxfordstreet  mpsonthewater southbank lit pa  think fave  awork many beautiful vivid colours roaming city checking  stuff tonight really amazing stuff see  loved lights felt home balloons  lights london trafalgar  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels granary square lumiere 11pm noir bahnhofsvieel afterglow post  favourite shots amazing lumiere festival   hmorphitis  stunning kingscrossn1c visitlondon londonist shining shimmering splendid  westminster abbey great see many people walking streets london fabulous   lumierelondon aichoketrust london night beautiful lumiere light festival westminster abbey aist patrice warrener visitlondon  lumiere westminsterabbey lumierelondon  lumierelondon aichoketrust  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow chance go see  tomorrow blown away pictures justice thanks aichoketrust  culturetrip wait  aichoketrust taking london interactive illuminating installations 18 21 january 2018 plan works see highlights guide  visitlondon sweet dreams thelondoneye   mpsonthewater southbank lit pa   londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow favourite lumiere places   impressive light installations lumierelondon2018 check ends across central london photos walk around king cross granary square  saturdaymotivation favorite lumiere places   loki_lego trafalgar square  lumierelondon  sadiqkhan spectacular installations lighting london londonisopen lumiere  joy lumiere london busy saturday night people experience illumaphonium michael davis alamynews  flint_pr aichoketrust especially appreciated complimentary pro brexit pep talk display trafalgar square  ever wanna cry beautiful something  lovely long walk around london see  supermathskid really enjoyed seeing  tonight  visitlondon sweet dreams thelondoneye   jaimelondonboy staring light  lumierelondon  jaimelondonboy got king cross see  good god whole world bet trump somewhere standing orange light make oranger  light festival aopédelondres london visitlondon igerslondon wanderlust pooped weekender london see  lumierelondonfestival lumierelondon  london londres uk em london united kingdom  londonacritic great time  highlights still need see rest aim next nights lighta lightfestival lumierelondon lumiere pt ii   lucydrury21 fish phone box lumierelondon  lumierelondon2018 lumiere  granary square king cross granary square  light festival aopédelondres london visitlondon igerslondon wanderlust  leakestarches  installation imakefings got mayoroflondon   light festival aopédelondres london visitlondon igerslondon wanderlust westminster abbey london lumierelondon2018  lumierelightfestival travelbloggers travelblogger london lit  westminster mayfair soho southbank installation  aichoketrust londonisopen  near king cross king cross goodnight trafalgarsquare  visitlondon londonist aichoketrust lumiere ldn   loki_lego leicester square lumierelondon   helbron thanks second magical night lights  visitlondon  visitlondon sweet dreams thelondoneye   blueprintmag highlights  wave child hood illumaphonium amp impulse sunday night nightingale berkley square obvs  aichoketrust  loki_lego trafalgar square  lumierelondon  lumierelondon aichoketrust amazing installations kings cross amp oxford circus favourites installation favourites 13 10 6 year old boy  aichoketrust city looking pretty   dianespencerfun beautiful lights way work comedycarnival tonight  lumierelondon flamingos lumiere festival  london visitlondon timeoutlondon westminsterabbey  adithatsme cool  booth onlyinlondon  seven dials london  londongramer westminsterabbey lit  wonderfully captured jhinlondon thisislondon  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham gavin7117   rossbolwill favourite thing  bright lights ideas looking around seeing wonder amp joy people faces one millions reasons love creative mass happenings public spaces thanks aichoketrust outdooras london lumierelondon lumierelondon  fabulous many stunning installations various aists pictures justice go visit london see free london fantastic installations  close voyage projection hotelcaferoyal pa  exhibits see westminsterabbey wabbey bathed light projections lumierelondon  ends tomorrow night light seeking light light light beguile find light darkness lies love labour lost shakespearesunday williamshakespeare lumierelondon  london lovelondon colour londoneye southbank rivehames reflections  amichanc found cirquebijou lumierelondon  visitlondon aichoketrust alistaircaird holland_tom pa lumière london think weekend   wave watching sroosegaarde waterlicht  kingscrossn1c  visitlondon sweet dreams thelondoneye   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  visitlondon sweet dreams thelondoneye   dandelionlights good colours london  divineintervention westminsterabbey lit  wonderfully captured jhinlondon thisislondon  simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon animal beauties  lumierelondon london chinatown a animals fish flamingo  robbingham giant nightingale berkeley square   granary square king cross granary square great time  evening amazing able wander round seeing awesome installations pics follow tomorrow lovelondon  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon  deliacazzato wow beautiful westminsterabbey  lumierelondon lumiere  fabulous  tonyrdb  kingscross  alanstweets  lumierelondon bad planning guys  kingscross spending weekend london serious milage clocked evening really recommend   darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon holy mary whatcolourdoyoucallthis colours   darraghdoyle love  aichoketrust visitlondon people cycle make lights come victoria beautiful installation london lumierelondon fun checking pretty a installations lumiere festival never seen many people crowd around phone booth  lumierelondon2018 love smell lazer evening  somethingelse newwayoflooking lumierelondon  lumierelondon2018 lumiere voyage lumierelondon  good colours london  divineintervention  sadiqkhan spectacular installations lighting london londonisopen lumiere   mpsonthewater southbank lit pa  around london weekend highly recommend check  spectacular selection light based aworks  ritatudela este fin de semana en londres la segunda edición del festival de luces  visitlondon wow beautiful westminsterabbey  home day enjoyed  knackered hope good night bed joinin247 years area avoid neon known tottenham police lights flashing lumierelondon  one day area feel safe feel proud change coming blown away wabbey evening  want move psychedelic planet anyone want join  squirrel   2018 comes close tomorrow read ceo pattiharris 2016 op ed first festival public a positive impact cities communities loved   sadiqkhan spectacular installations lighting london londonisopen lumiere  fish phone box lumierelondon  lumierelondon2018 lumiere  visitlondon sweet dreams thelondoneye   robbingham giant nightingale berkeley square  nightingale berkeley square lights including king cross sunday final day  aether architecturesocialclub  granary square  aichoketrust make sure buy printed guide  60 beautiful pages help navigate festival available purchase 5 across footprint cards mobile payments accepted thanks squareuk  piccadillycircus 3 3  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  piccadillycircus 2 3 night london full colourful lights lumierelondon kingscross granarysquare   piccadillycircus 1 3  guriinlondon tá rolando neste final de semana  com um monte de instalação massa esta piccadilly e abadia foram mais massa pra mim  mpsonthewater southbank lit pa    simonmanleyfco que haya luz segunda edición del festival de luces en londres  lumierelondon bright city lights  shiny london united kingdom  aichoketrust ldn_culture piccadilly roadclosures anyday  kaybuxton opening night lumierelondon  sore feet definite favourites far  doublemacbex many awesome light installations  kingscrossn1c year  kingscrossn1c another great night stunning light installations kingscrossn1c pa   mpsonthewater southbank lit pa   visitlondon sweet dreams thelondoneye   stephaniejay_uk way solo bop around soho piccadilly regents st want see  lumierelondon magic 2016 purdy  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels mostrei muita coisa lá instagram stories ah e wabbey tá surreal por mim podiam deixar sempre assim  stunning  piccadillycircus via arvinddevalia light lumierelondon architecture  altheaefunshile lots walking tonight experience  great evening aichoketrust londonlife  sadiqkhan spectacular installations lighting london londonisopen lumiere  harmonic poal  blackhole eclipse st james church piccadilly  tfltrafficnews  road closures removed traffic flows returning normal time day event continue tomorrow closures place 1630hrs  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon shots  tá rolando neste final de semana  com um monte de instalação massa esta piccadilly e abadia foram mais massa pra mim lumierelondon  king cross  mpsonthewater southbank lit pa   visitlondon sweet dreams thelondoneye  multicoloured westminster abbey tonight  yesterday went london   flamingo flyway lantern company jo pocock chinatown aichoketrust visitlondon totastemaker  visitlondon sweet dreams thelondoneye   tfltrafficnews  road closures removed traffic flows returning normal time day event continue tomorrow closures place 1630hrs team keeping princes safe us patrolling  shine brightest light truly well spent evening lumierelondon saturdaynight visitlondon lights  lighting thank mayoroflondon commission  visitlondon sweet dreams thelondoneye   one day comb hair selfie  loki_lego leicester square lumierelondon   learningtheway1 wabbey spectacular  please someone explain apostle  love motion rhys doren royal academy couyard aichoketrust visitlondon  mpsonthewater southbank lit pa  thanks aists aichoketrust love london buzzing a architure telling stories together   evening liver16bird amp katspur71 spectacular effo aichoketrust making pas london look amazing generating real buzz place  another great night spent  aichoketrust spontaneous trip town catch lumierelondon festive fantastic free a lumierelondon2018   visitlondon sweet dreams thelondoneye   spectral katarzyna malejka joachim slugocki st james square aichoketrust visitlondon totastemaker  road closures removed traffic flows returning normal time day event continue tomorrow closures place 1630hrs  ritatudela este fin de semana en londres la segunda edición del festival de luces  visitlondon lots walking tonight experience  great evening aichoketrust londonlife lumière london marvellous  lumierelondon  sadiqkhan spectacular installations lighting london londonisopen lumiere  night night london another day sets  one evening left wish longer  mpsonthewater southbank lit pa   nimbos cold enjoyable  nyssa1968 evening lumiere2017 lumierelondon fantastic display lumiere london  wellbeing london piccadillycircus entre les rangs rami bebawi  granary square capitalr earlier  really good good time londoners enjoying  plenty space everyone enjoying aichoketrust visitlondon voyage hotel cafe royal  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon  harmonic poal chris plant st james church aichoketrust visitlondon lumierelondon  great day volunteering  today fun seeing many people enjoyed aworks came add light january eve  visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  visitlondon 5 gorgeous aworks discover explore  beautiful fitzrovia area let us know favourite  westend  mpswestminster projectservator lumière  trafalgar square earlier close npglondon smitf_london wrap warm evening getting milder teamworktomakethedreamwork actioncountersterrorism welightupeverywhere  voyage camille gross leslie epsztein hotel cafe royal aichoketrust visitlondon totastemaker pa 2 lumiere 2018 mayfair like treasure hunting ________________________________ lumiere lumiere2018  london uk a neonlights beautiful illuminated lumierelondon go team cbd great meet cultural connectors tonight see crowds enjoying bebawi installation built b amp residents   sarah_wall nightingale berkeley square even playing song lumierelondon   dianespencerfun beautiful lights way work comedycarnival tonight  lumierelondon flamingos  binnie095 time city glow  lumierelondon cold enjoyable  nyssa1968 evening lumiere2017 lumierelondon  theatrebiz proud call west end home loving  westend london lights lumierelondon lovelondon theatreland theatre londontheatre great night aichoketrust  definitely heading back tomorrow 30slady catch rest enjoyed lumierelondon today   sadiqkhan spectacular installations lighting london londonisopen lumiere   alanstweets  lumierelondon bad planning guys spectacular walk around london tonight lumierelondon lovelondon  go regret beautiful lights way work comedycarnival tonight  lumierelondon flamingos  visitlondon sweet dreams thelondoneye   would waaaay better tonight people trying take selfies everything apparently see people see seeing matters typical  frictions mader wiermann 103 regent street aichoketrust visitlondon  visitlondon gorgeous photos first night  amyelizabethtv beautiful light installations amp shining sunday aichoketrust  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  sadiqkhan spectacular installations lighting london londonisopen lumiere   dthaynes staed holiday 9 haircut free bubbles walking round london  oh   wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow pa 1 lumiere 2018 mayfair like treasure hunting ________________________________ lumiere lumiere2018  london uk a neonlights beautiful illuminated bright lumierelondon  sarah_wall nightingale berkeley square even playing song lumierelondon  london lumiere victoria streetasuk grosvenor_ldn lumierelondon visitlondon visitbritain visitengland timeoutlondon mayoroflondon londonist   shaida walking 2015 julian opie broadwick street visitlondon aichoketrust totastemaker  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham staring light  lumierelondon great day today londonafair amp  melissa_weston_ amp rach wabbey spectacular  please someone explain apostle lovely evening going london see  westminster piccadilly big faves  tomhourigan forgotten  made journey night shift bit fun  visitlondon sweet dreams thelondoneye  even sho westminster leg  feels like modern secular pilgrimage stations pairs little crowds incredible awork  completely woh 8 miles walking saturday evening fab night always hparlett  alanstweets  lumierelondon bad planning guys  beefeaterdave  evening great pieces leicestersquare raven westminsterabbey way home sore feet lovely evening  lumierelondon  well woh wandering around cold spectacular  lumierelondon  lumierelondon   royalacademy catch  ra 5 30 10 30pm tonight tomorrow rhys coren love motion light burlington house colourful matisse inspired animations find  mpsonthewater southbank lit pa   visitlondon sweet dreams thelondoneye   westminster abbey  visitlondon sweet dreams thelondoneye  grannarysquare kingscrossn1c one best  displays year thanks coming tonight everyone loved seeing pictures keep coming let us know favourite installation back tomorrow 5 30pm closing night  2018  rambedance seen dancer feet building illuminated evening weekend  iphone photo think westminster abbey  installation  londonviewpts  tonight tomorrow last chance watch new video see   sadiqkhan spectacular installations lighting london londonisopen lumiere   sarah_wall nightingale berkeley square even playing song lumierelondon   iandmillett surfgirldeb g night deborah hope wonderful weekend went see  met flamingo china town  londonwhispers southbank night like  nightlife dontmissit thelondoneye aichoketrust find map amp details see visitlondon keeponwalking  westminster abbey wabbey   piccadilly circus fire station display really pretty   rose  maya_lakhenpaul glorious light festival piccadilly circus yesterday love london lumierelondon londonlumiere  lumiere piccadillycircus  adamscottg huge thanks lovely london walkers eschewed pleasures  walk dark side londonwalks ghosts old city tour tonight day enjoying sights   westminster abbey  zacdenman beautiful lightshow  like rave producer director cameraman promo coaching music video london londonmusic londonlife aist musician musicians bands band filming videoproduction londontown videographer videography musicvideo zacdenman impressed free outdoor  exposition organised mayoroflondon around necently rejuvenated kings cross area go ps amazing would london borough could organise something like incentivise people discover london  royalacademy catch  ra 5 30 10 30pm tonight tomorrow rhys coren love motion light burlington house colourful matisse inspired animations find  pukkahpunjabi  fabulous really wonderful see city creatively lit carless streets joyful piccadilly circus  visitlondon sweet dreams thelondoneye   john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon saw someone wearing officialrezz glasses  light festival tonight jealous looked awesome lumiere lightfestival london lighting a lumierelondon rezz gutted know  sooner would loved experience festival lights  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  mpsonthewater southbank lit pa   evening great pieces leicestersquare raven westminsterabbey  trafalgar square  loki_lego trafalgar square  lumierelondon  westminsterabbey cityofwestminster londinium  another great event london images walk friday follow second visit evening kings cross thank zebranobars great meal pinkribbonfound pinklondon2017 raffle amp able enjoy  lumierelondon  switch light baby  oxfordcircus london london united kingdom london turned city sized sensory room  lumiere festival nofilter  westminster abbey  thank truly amazing secretldn amazing_london kent_online london lumierelondon  visitlondon sweet dreams thelondoneye   nofilter london lumiere westminster abbey  visitlondon sweet dreams thelondoneye   visitlondon sweet dreams thelondoneye  surfgirldeb g night deborah hope wonderful weekend went see  met flamingo china town wicked night volunteering lumiere london home warm get ready tomorrow  lights volunteering funtimes 50 public a installations display weekend second year light festival uk capital  origin world lumiere london oxfordstreet nightlife  wtf oxford street  visitlondon sweet dreams thelondoneye  lumiere lightbench weighhouse street  2018 originoftheworld  visitlondon sweet dreams thelondoneye   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  예쁘지  visitlondon sweet dreams thelondoneye   loki_lego trafalgar square  lumierelondon  loki_lego lumierelondon  trafalgar square leicester square  wabbey  stas tonight see abbey transformed patrice warrener dazzling installation light spirit evening sunday make visit half price entry abbey 6 30 8 00pm tonight tomorrow  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  visitlondon sweet dreams thelondoneye  london lights lumiere london nightlife cold kingscross  laser granary solomongreyband listening thelastpost score outdoors kings cross bliss  sweet dreams thelondoneye   john_pahl lumiere london  brilliant like giant treasure hunt a across london night visitlondon beautiful lightshow  like rave producer director cameraman promo coaching music video london londonmusic londonlife aist musician musicians bands band filming videoproduction londontown videographer videography musicvideo zacdenman lumiere arrived lumiere london skyline westminsterabbey  westminster abbey one favourite picture  one called dot seen king brilliant beautiful lights  wrap warm get exploring ttballetwandswoh summary day far pt 3 london withthebestie   rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham enlightenment westminsterabbey  lumierelondon enlightenment london westminster  biggsytravels  take bow many smiles faces amp rather wonderfully lots people talking find  exact stuff looking lights london   helbron thanks second magical night lights  visitlondon   aichoketrust explored fitzrovia yet 5 stunning aworks discover vibrant area  fitzpanership  sadiqkhan spectacular installations lighting london londonisopen lumiere  kings cross high right london  lumiere lumierelondon2018 kingscross lights a sculpture music sounds exhibition people busy cityshots snapshoot londoncity lightfestival lovelondon random pigeontalks funny  lights water lion trafalgar square god full stars mesmerising cosmoscope simeon nelson one favourites lumiere london 2018 store st wc1e 7bs shot v close range olympus omd em1 8mm f1 8 fisheye  sculpture london olympus olympusuk london lighting weekend  london pretty lights streets beautiful   visitlondon night 3  begun put gloves amp scarf explore 50 installations across westminster fitzrovia mayfair london westend amp aichoketrust biggsytravels  helenarbon beautiful getting see  evening loved seeing pedal power action rose westminster cathedral  swing inside one queue  sadiqkhan spectacular installations lighting london londonisopen lumiere   loki_lego enjoying  lumierelondon  visitlondon 5 gorgeous aworks discover explore  beautiful fitzrovia area let us know favourite  loki_lego trafalgar square  lumierelondon  waterlicht granary square photos lumierelondon  light show kings cross tonight visitlondon londonist timeoutlondon great installation loved scale concept jbruges  aichoketrust  landscapescenes amazing evening light installations year  great work aists thank aichoketrust organising another fantastic festival  du_culture huge congratulations friends aichoketrust another great  mickfusion durhamcathedral rose window westminstercathedral  amazing evening light installations year  great work aists thank aichoketrust organising another fantastic festival  rossbolwill  aquarium telephone box finally got see fishy glory best use disused telephone box library demonstrated folk lewisham  butterflies leicester square  nofilter iphonex luminaire events  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon  lightfantastic westminster abbey wtg  aichoketrust absolutely loving westminsterabbey lumiere lumierelondon  london lovelondon lucky able decide pop town last minute london   brilliant seriously incredible work huge scale personal highlights far westminster abbey grosvenor square trafalgar square  darraghdoyle look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon  ravens leicester square look beautiful westminster abbey tonight thanks  aichoketrust lumieredub soon please london lumierelondon  adirectionk indian embassy  london illuminated aichoketrust visitlondon timeoutlondon love research fun go hand hand derbyunipgr fab day researching light attending lumiere london thank aichoketrust lightlove  phdlife scenography guardian angels pa  exhibition taking place london sunday night visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon spent evening   leicester square  kezekiel complaint  long enough thanks aichoketrust showing us london whole new light  alanstweets  lumierelondon bad planning guys  iphonex westminster abbey  theatrebiz proud call west end home loving  westend london lights lumierelondon lovelondon theatreland theatre londontheatre proud call west end home loving  westend london lights lumierelondon lovelondon theatreland theatre londontheatre
Sentiment: 0.699999988079071, 92.5
In [111]:
print(sentiment)
magnitude: 92.5
score: 0.699999988079071

Entities and Sentiment Analysis - Google Cloud

In [112]:
language_client = language.LanguageServiceClient()

# The text to analyze
text = sentence_tokenized1 #(sentence_tokenized1[:100])
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

encoding = enums.EncodingType.UTF32
    
if sys.maxunicode == 65535:
    encoding = enums.EncodingType.UTF16

entities_sentiment = language_client.analyze_entity_sentiment(document, encoding)

for entity in entities_sentiment.entities:
        print(u'Name: "{}"'.format(entity.name))
        for mention in entity.mentions:
            print(u'  Begin Offset : {}'.format(mention.text.begin_offset))
            print(u'  Content : {}'.format(mention.text.content))
            print(u'  Magnitude : {}'.format(mention.sentiment.magnitude))
            print(u'  Sentiment : {}'.format(mention.sentiment.score))
            print(u'  Type : {}'.format(mention.type))
        print(u'Salience: {}'.format(entity.salience))
        print(u'Sentiment: {}\n'.format(entity.sentiment))
Name: "project"
  Begin Offset : 4185
  Content : project
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 16384
  Content : project
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 22887
  Content : project
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 27475
  Content : project
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 32049
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 33519
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 33661
  Content : project
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 36024
  Content : project
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 44466
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 44871
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 47067
  Content : project
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 47476
  Content : project
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 48749
  Content : project
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 63971
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 69604
  Content : project
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 70327
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 73501
  Content : project
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 92222
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 94151
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 94351
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 96248
  Content : project
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 96548
  Content : project
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 96800
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 97702
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.3702075183391571
Sentiment: magnitude: 5.199999809265137
score: 0.10000000149011612


Name: "display"
  Begin Offset : 10857
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 28269
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 37501
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 37887
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 40740
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 44312
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 49149
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 50701
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 51271
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 51347
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 52180
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52527
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54284
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.37012481689453125
Sentiment: magnitude: 10.899999618530273
score: 0.699999988079071


Name: "awork entre les rangs _kanva behindthescenes grosvenor_gbi mayfair london"
  Begin Offset : 749
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 2182
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 3492
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 4862
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 4936
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 5467
  Content : awork entre les rangs _kanva behindthescenes  grosvenor_gbi mayfair london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 5615
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 5869
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 7066
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 7146
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 7676
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 7756
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 9025
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 10560
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 11529
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 11680
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 12531
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 15148
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 17014
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 17198
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 17440
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 17886
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 18034
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 18182
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 18434
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 18525
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 18708
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 19098
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 19592
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 19327
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 20907
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 21053
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 21178
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 21569
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 22080
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 22283
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 22548
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 24791
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 25647
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 25694
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 26635
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 27093
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 27965
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 28971
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 30145
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 30406
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 30571
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 31566
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 33837
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 35553
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 36474
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 41324
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 42198
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 42452
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 43439
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 44117
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 44015
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 44680
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 45548
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 1
  Begin Offset : 45710
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 46386
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 47725
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49218
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 50267
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 51082
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 50993
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 51448
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 51643
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 53119
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 56122
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 57142
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 57971
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 58702
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 58683
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 62372
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 63287
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 63410
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 64180
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65057
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65420
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65697
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65740
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65957
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 65922
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 66213
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 66327
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 67002
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 67384
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 69821
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 69705
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 73276
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 75654
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 76221
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 76585
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 77733
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 78093
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 78032
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 79221
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 79431
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 80090
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 80139
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 81390
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 81367
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 82923
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 85633
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 85751
  Content : waterlicht daan roosegaarde london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 85956
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 85999
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 87933
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 88288
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 88494
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 91097
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 1
  Begin Offset : 92350
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 95174
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 95362
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 95813
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 96889
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 97251
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 98748
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 100004
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 1
  Begin Offset : 100185
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 1
  Begin Offset : 100638
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 100929
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 100984
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 101395
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 101571
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 102274
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 102467
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 104690
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 105224
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 107714
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 110059
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 110386
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 110541
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 111539
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 112322
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 112695
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 114990
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 117466
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 117747
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 118031
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 118483
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 118853
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 119136
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 120113
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 121082
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 122014
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 123143
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 123920
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 124300
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 124564
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 124852
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 125014
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 126228
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 127689
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 127674
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 127965
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 128847
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 130417
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 130456
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 130605
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 130813
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 131592
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 132003
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 132217
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 132451
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 132725
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 132934
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 133426
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 133732
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 137184
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 138991
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 139945
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 140385
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 141202
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 141891
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 142068
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 142156
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 143510
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 144734
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 145019
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 146916
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 146808
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 147929
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 148820
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 149690
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 150492
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 151227
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 151294
  Content : london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 151506
  Content : london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 151934
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 152487
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 153250
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 153707
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 154179
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 154698
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 155312
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 155994
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 158948
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 159478
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 160448
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 160381
  Content : lumière london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 160257
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 160216
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 160758
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 161720
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 162144
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 162647
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 163054
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 164087
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 164569
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 164709
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 165236
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 165533
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 165572
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 166362
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 166882
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 166785
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 166756
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 167116
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 167069
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 167155
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 167346
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 167301
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 167669
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 167798
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 168020
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 168076
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 168132
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 168379
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 168607
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 169117
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 169768
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 170135
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 170187
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 170321
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 170378
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 170873
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 171135
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 171050
  Content : london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 172333
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 172721
  Content : london
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 172951
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 172990
  Content : london
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 173573
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 173852
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 173889
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 174258
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 174994
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 175543
  Content : london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 175703
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 176544
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 10538
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 34471
  Content : lumiere2018 oxfordstreet travel londonlife hireme lookingforajob londonphotographer  simon_burgess lumiere london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 0.024993306025862694
Sentiment: magnitude: 89.5
score: 0.20000000298023224


Name: "aists"
  Begin Offset : 10450
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 45158
  Content : aists
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 48981
  Content : aists
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 49057
  Content : aists
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 51229
  Content : aists
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 51305
  Content : aists
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 52214
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52561
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52637
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53491
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53567
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53643
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53719
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53795
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53871
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53947
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54023
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54099
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54175
  Content : aists
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 54318
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54394
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54470
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54546
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54622
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54698
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54774
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54850
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 54926
  Content : aists
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.009003369137644768
Sentiment: magnitude: 11.399999618530273
score: 0.30000001192092896


Name: "leicester square"
  Begin Offset : 943
  Content : leicester square
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 12547
  Content : leicester square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 73592
  Content : leicester square
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 77368
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 80540
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 80638
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 80616
  Content : marshalljulius london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
  Begin Offset : 84478
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 84898
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 86522
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 86500
  Content : marshalljulius london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 86911
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 86870
  Content : china town london  marshalljulius london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 87217
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 87415
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89450
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89419
  Content : leicester square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89665
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 90874
  Content : leicester square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 90797
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 91529
  Content : leicester square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 106281
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 106274
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 107422
  Content : leicester square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 112702
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 118490
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 124172
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 127165
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 129682
  Content : leicester square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 133298
  Content : leicester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 134685
  Content : leicester square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 138321
  Content : leicester square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 142710
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 142688
  Content : marshalljulius london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 142891
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 143113
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 143091
  Content : marshalljulius london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 143970
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 143948
  Content : marshalljulius london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 145026
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 145124
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 145102
  Content : marshalljulius london
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
  Begin Offset : 145452
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 145729
  Content : leicester square
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 146057
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 146035
  Content : marshalljulius london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 146155
  Content : leicester square
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 146133
  Content : marshalljulius london
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 148604
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 160087
  Content : leicester square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 161862
  Content : leicester square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 164576
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 165579
  Content : leicester square
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 167162
  Content : leicester square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 167294
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 172997
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 174757
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 175423
  Content : leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 175416
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 175847
  Content : leicester square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 176213
  Content : leicester square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.007908349856734276
Sentiment: magnitude: 20.5
score: -0.10000000149011612


Name: "festival"
  Begin Offset : 33184
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 55181
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 118015
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154162
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 159462
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0022680754773318768
Sentiment: 

Name: "work"
  Begin Offset : 10883
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 37527
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 37913
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 40766
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 45150
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 48973
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 49049
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 50372
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 50727
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 51221
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 51297
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52206
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52282
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52553
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 52629
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53483
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53559
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53635
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53711
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53787
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53863
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53939
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54015
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54091
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54167
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54310
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54386
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54462
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54538
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54614
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54690
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54766
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54842
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54918
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 54988
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0018272475572302938
Sentiment: 

Name: "light installations"
  Begin Offset : 5587
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 7118
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 7728
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 35525
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 44652
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0017155271489173174
Sentiment: magnitude: 4.800000190734863
score: 0.8999999761581421


Name: "dreams"
  Begin Offset : 47341
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 57323
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 78222
  Content : dreams
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 81907
  Content : dreams
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 150279
  Content : dreams
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0015754628693684936
Sentiment: magnitude: 3.4000000953674316
score: 0.6000000238418579


Name: "lights"
  Begin Offset : 21621
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 50430
  Content : lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 58066
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 122748
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 133116
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.001548128784634173
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations amp"
  Begin Offset : 15391
  Content : light installations amp
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 28871
  Content : light installations amp
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 29213
  Content : light installations amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 40612
  Content : light installations amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 91448
  Content : light installations amp
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 128467
  Content : light installations amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.001483282190747559
Sentiment: magnitude: 2.9000000953674316
score: 0.699999988079071


Name: "installations"
  Begin Offset : 14195
  Content : installations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 59568
  Content : installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 60337
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 61182
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0014494014903903008
Sentiment: magnitude: 1.2999999523162842
score: 0.30000001192092896


Name: "work"
  Begin Offset : 40330
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 48465
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 56893
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 97366
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 124510
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 139747
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 142584
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 159174
  Content : work
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 171665
  Content : work
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00141461833845824
Sentiment: magnitude: 6.400000095367432
score: 0.699999988079071


Name: "amp"
  Begin Offset : 7002
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 13398
  Content : amp
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 13587
  Content : amp
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 25053
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 26127
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0013763554161414504
Sentiment: magnitude: 0.8999999761581421
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 16550
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 23053
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 75433
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 75589
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0013611754402518272
Sentiment: magnitude: 2.799999952316284
score: 0.699999988079071


Name: "installations"
  Begin Offset : 46490
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 53191
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 96931
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 129324
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0011756190797314048
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "bridge london"
  Begin Offset : 13548
  Content : bridge london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 25014
  Content : bridge london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 26088
  Content : bridge london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0011265557259321213
Sentiment: magnitude: 0.5
score: -0.10000000149011612


Name: "aichoketrust biggsytravels newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium"
  Begin Offset : 12
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 38840
  Content : mondaymotivation ginoclock  ginuary  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  weekendaswa
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 41120
  Content : wabbey westminsterabbey  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 51479
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなっ
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 70941
  Content : westminsterabbey  lumierelondon joinin247  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 74565
  Content : aichoketrust biggsytravels  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 76290
  Content : ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 85233
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 88638
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 90012
  Content : waterlicht  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 94379
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.0010874784784391522
Sentiment: magnitude: 3.700000047683716
score: 0.10000000149011612


Name: "installations"
  Begin Offset : 143031
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 143583
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 145974
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 147067
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 147363
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 148181
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.0010838861344382167
Sentiment: magnitude: 1.5
score: -0.20000000298023224


Name: "event"
  Begin Offset : 4753
  Content : event
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 10677
  Content : event
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 24008
  Content : event
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 26822
  Content : event
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0010816248832270503
Sentiment: magnitude: 2.299999952316284
score: 0.5


Name: "installations"
  Begin Offset : 64928
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 134215
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 136682
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 137639
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 138017
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0010199201060459018
Sentiment: magnitude: 3.5
score: 0.699999988079071


Name: "city"
  Begin Offset : 5652
  Content : city
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 7183
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 7793
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 44717
  Content : city
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0009826116729527712
Sentiment: magnitude: 1.100000023841858
score: 0.20000000298023224


Name: "work"
  Begin Offset : 9215
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 41811
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 42626
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 43570
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0009651865693740547
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "beasts"
  Begin Offset : 73637
  Content : beasts
  Magnitude : 0.8999999761581421
  Sentiment : -0.8999999761581421
  Type : 2
  Begin Offset : 75814
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 77413
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 80585
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 80683
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 84943
  Content : beasts
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
  Begin Offset : 86567
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 86956
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 106326
  Content : beasts
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
  Begin Offset : 112747
  Content : beasts
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
  Begin Offset : 118535
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 127210
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 142755
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 142936
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 143158
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 144015
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 145071
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 145169
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 145497
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 145774
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 146102
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 146200
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 148649
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 157866
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 164621
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 165624
  Content : beasts
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 167207
  Content : beasts
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
  Begin Offset : 173042
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
  Begin Offset : 175468
  Content : beasts
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
Salience: 0.0009520838502794504
Sentiment: magnitude: 22.700000762939453
score: -0.699999988079071


Name: "aichoketrust mayoroflondon visitlondon"
  Begin Offset : 842
  Content : aichoketrust mayoroflondon visitlondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 831
  Content : wonderland
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0009227250120602548
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "show"
  Begin Offset : 15526
  Content : show
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 45023
  Content : show
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 47257
  Content : show
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 69981
  Content : show
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 95603
  Content : show
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 158271
  Content : show
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00087244767928496
Sentiment: magnitude: 2.5999999046325684
score: 0.4000000059604645


Name: "telephone box library"
  Begin Offset : 11203
  Content : telephone box library
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 66780
  Content : telephone box library
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 67844
  Content : telephone box library
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 79326
  Content : telephone box library
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 135708
  Content : telephone box library
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 136087
  Content : telephone box library
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 136997
  Content : telephone box library
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 140127
  Content : telephone box library
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 141809
  Content : telephone box library
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 166987
  Content : telephone box library
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0008327019168063998
Sentiment: magnitude: 1.2000000476837158


Name: "installation"
  Begin Offset : 59059
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 100819
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 132073
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.000814691768027842
Sentiment: magnitude: 3.5999999046325684
score: 0.699999988079071


Name: "professionalphotographer london lumierelondon lumiere westminsterabbey westminster"
  Begin Offset : 4691
  Content : westminster
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 7271
  Content : professionalphotographer london lumierelondon lumiere westminsterabbey westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 10615
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 11029
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 21911
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 23946
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 26760
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 26866
  Content : westminster
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 32398
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 42861
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 49456
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 50578
  Content : westminster
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 55052
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 56606
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 60923
  Content : westminster
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 80727
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 129084
  Content : westminster
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 135899
  Content : westminster
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 145897
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 145882
  Content : south bank amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 158082
  Content : westminster
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 161359
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 162421
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 163809
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 165059
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 167912
  Content : westminster
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 172306
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 172615
  Content : westminster
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 96999
  Content : westminster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 144413
  Content : westminster
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 0.0007875790470279753
Sentiment: magnitude: 10.899999618530273
score: 0.20000000298023224


Name: "lumiere"
  Begin Offset : 82484
  Content : lumiere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 84663
  Content : lumiere
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0007807473302818835
Sentiment: magnitude: 1.2000000476837158
score: 0.10000000149011612


Name: "lightinstallation awork london"
  Begin Offset : 21525
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 24570
  Content : lightinstallation awork london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 0.0007585528073832393
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "event"
  Begin Offset : 11091
  Content : event
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 21973
  Content : event
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 32460
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0007452575373463333
Sentiment: magnitude: 1.100000023841858
score: 0.30000001192092896


Name: "lumiere installations"
  Begin Offset : 20082
  Content : lumiere installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 23108
  Content : lumiere installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0006768921157345176
Sentiment: magnitude: 1.600000023841858
score: 0.800000011920929


Name: "instagram"
  Begin Offset : 10480
  Content : instagram
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 15677
  Content : instagram
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 43338
  Content : instagram
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 43254
  Content : interview harry qedproductions
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 44251
  Content : instagram
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 79571
  Content : instagram
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 104649
  Content : instagram
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 117419
  Content : instagram
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 118321
  Content : instagram
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 126912
  Content : instagram
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 128044
  Content : instagram
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.000675997871439904
Sentiment: magnitude: 3.5999999046325684
score: 0.20000000298023224


Name: "entrance leakestreet"
  Begin Offset : 1684
  Content : entrance leakestreet
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 24424
  Content : entrance leakestreet
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 30327
  Content : entrance leakestreet
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0006751035689376295
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "lamps office"
  Begin Offset : 25184
  Content : lamps office
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 32950
  Content : lamps office
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 33979
  Content : lamps office
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 36521
  Content : lamps office
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 36629
  Content : lamps office
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.0006670279544778168
Sentiment: magnitude: 1.899999976158142
score: 0.30000001192092896


Name: "visitor experiences"
  Begin Offset : 4457
  Content : visitor experiences
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 43810
  Content : visitor experiences
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 45233
  Content : visitor experiences
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 55761
  Content : visitor experiences
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0006649464485235512
Sentiment: magnitude: 2.299999952316284
score: 0.699999988079071


Name: "wave"
  Begin Offset : 47634
  Content : wave
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 56410
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 56522
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 60537
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 61549
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 61661
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 61831
  Content : wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0006254544132389128
Sentiment: magnitude: 0.5
score: 0.5


Name: "photos"
  Begin Offset : 12805
  Content : photos
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 15346
  Content : photos
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0005908877355977893
Sentiment: magnitude: 1.2000000476837158
score: 0.6000000238418579


Name: "oxford"
  Begin Offset : 2189
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 6094
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 47883
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 64474
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 68321
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 85073
  Content : oxford
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 86302
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 86485
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 87465
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 93651
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 99841
  Content : oxford
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 102792
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 107878
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 108581
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 114122
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 115911
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 127712
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 138224
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 146555
  Content : oxford
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 151822
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 152969
  Content : oxford
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.0005731345154345036
Sentiment: magnitude: 0.699999988079071


Name: "trafalgar square"
  Begin Offset : 22486
  Content : trafalgar square
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 24617
  Content : trafalgar square
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 24601
  Content : trafalgarsquare
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 44899
  Content : trafalgar square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 74032
  Content : trafalgar square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 83258
  Content : trafalgar square
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 113896
  Content : trafalgar square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 121690
  Content : trafalgar square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 123746
  Content : trafalgar square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 128796
  Content : trafalgar square
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 128736
  Content : trafalgar square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 129265
  Content : trafalgar square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 131144
  Content : trafalgar square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 133877
  Content : trafalgar square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 134009
  Content : trafalgar square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 134354
  Content : trafalgar square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 135250
  Content : trafalgar square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 136204
  Content : trafalgar square
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 138926
  Content : trafalgar square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 146669
  Content : trafalgar square
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 150414
  Content : trafalgar square
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 154001
  Content : trafalgar square
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 164823
  Content : trafalgar square
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 175921
  Content : trafalgar square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.0005729453987441957
Sentiment: magnitude: 9.899999618530273
score: 0.30000001192092896


Name: "front"
  Begin Offset : 1324
  Content : front
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 2103
  Content : front
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 3185
  Content : front
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0005305141094140708
Sentiment: 

Name: "lumierelondon"
  Begin Offset : 39133
  Content : lumierelondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.0005229630623944104
Sentiment: magnitude: 1.100000023841858
score: 0.30000001192092896


Name: "city hall projection"
  Begin Offset : 21923
  Content : city hall projection
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 23958
  Content : city hall projection
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 26772
  Content : city hall projection
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 32410
  Content : city hall projection
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0005012310575693846
Sentiment: magnitude: 1.600000023841858
score: 0.4000000059604645


Name: "people"
  Begin Offset : 4014
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 15914
  Content : people
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 81310
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 95900
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 103232
  Content : people
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 104588
  Content : people
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 105446
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 105975
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0004955618642270565
Sentiment: magnitude: 1.2999999523162842


Name: "spire"
  Begin Offset : 9363
  Content : spire
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 14401
  Content : spire
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 14336
  Content : spire
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.000494323787279427
Sentiment: magnitude: 1.100000023841858
score: 0.30000001192092896


Name: "chance"
  Begin Offset : 10390
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 52501
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0004884327645413578
Sentiment: magnitude: 0.5
score: 0.5


Name: "crowds"
  Begin Offset : 33355
  Content : crowds
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 70163
  Content : crowds
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 90569
  Content : crowds
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 102315
  Content : crowds
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00048713726573623717
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "waterlicht daan roosegaarde love md lumierelondon totastemaker kingscross lumiere simon_burgess lumiere london"
  Begin Offset : 33257
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 34782
  Content : waterlicht daan roosegaarde love md  lumierelondon totastemaker kingscross lumiere  simon_burgess lumiere london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 0.00048496946692466736
Sentiment: magnitude: 0.10000000149011612


Name: "shots"
  Begin Offset : 45082
  Content : shots
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 47316
  Content : shots
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 70040
  Content : shots
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 95662
  Content : shots
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 158330
  Content : shots
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0004742695309687406
Sentiment: magnitude: 3.700000047683716
score: 0.8999999761581421


Name: "londoners"
  Begin Offset : 63119
  Content : londoners
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 85535
  Content : londoners
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.000467038742499426
Sentiment: 

Name: "chance"
  Begin Offset : 12157
  Content : chance
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 13746
  Content : chance
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00045367778511717916
Sentiment: magnitude: 1.7999999523162842
score: 0.8999999761581421


Name: "selection favourite installations"
  Begin Offset : 477
  Content : selection favourite installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0004506278783082962
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "folks"
  Begin Offset : 56462
  Content : folks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 61601
  Content : folks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 61713
  Content : folks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00042768538696691394
Sentiment: magnitude: 1.2000000476837158
score: 0.4000000059604645


Name: "installations"
  Begin Offset : 192
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00042374173062853515
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation"
  Begin Offset : 223
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00042374173062853515
Sentiment: 

Name: "aists"
  Begin Offset : 46542
  Content : aists
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 53243
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0004158902447670698
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 1546
  Content : installation
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0004134414193686098
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visit exhibitions"
  Begin Offset : 678
  Content : visit exhibitions
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0004109161382075399
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "king cross granary square"
  Begin Offset : 81278
  Content : king cross granary square
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 95868
  Content : king cross granary square
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 103200
  Content : king cross granary square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 104556
  Content : king cross granary square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 105278
  Content : king cross granary square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 105943
  Content : king cross granary square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0004030588024761528
Sentiment: magnitude: 1.600000023841858
score: 0.10000000149011612


Name: "lumierelondon"
  Begin Offset : 114961
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137451
  Content : lumierelondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00038827621028758585
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "abuse"
  Begin Offset : 6996
  Content : abuse
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 13392
  Content : abuse
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 13581
  Content : abuse
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 25047
  Content : abuse
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 26121
  Content : abuse
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0003877361596096307
Sentiment: magnitude: 0.5


Name: "festival"
  Begin Offset : 1211
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00038148576277308166
Sentiment: 

Name: "cities"
  Begin Offset : 1245
  Content : cities
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 10235
  Content : cities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00037768681067973375
Sentiment: magnitude: 0.6000000238418579
score: 0.20000000298023224


Name: "violence"
  Begin Offset : 7013
  Content : violence
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 13598
  Content : violence
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
  Begin Offset : 25064
  Content : violence
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 26138
  Content : violence
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00037728543975390494
Sentiment: magnitude: 0.8999999761581421
score: -0.20000000298023224


Name: "students"
  Begin Offset : 4541
  Content : students
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 29418
  Content : students
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 55845
  Content : students
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00036642790655605495
Sentiment: magnitude: 1.2999999523162842
score: 0.30000001192092896


Name: "lights"
  Begin Offset : 48063
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 50785
  Content : lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 60704
  Content : lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00036230075056664646
Sentiment: magnitude: 2.200000047683716
score: 0.5


Name: "chinatown london"
  Begin Offset : 88391
  Content : chinatown london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 104235
  Content : chinatown london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 149487
  Content : chinatown london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.0003551542467903346
Sentiment: magnitude: 0.699999988079071


Name: "south bank"
  Begin Offset : 15472
  Content : south bank
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00035366317024454474
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "winter light festival"
  Begin Offset : 3313
  Content : winter light festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00035132377524860203
Sentiment: 

Name: "display"
  Begin Offset : 10416
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00034972213325090706
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lights"
  Begin Offset : 23384
  Content : lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0003456326376181096
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "decorations"
  Begin Offset : 1658
  Content : decorations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 24398
  Content : decorations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.0003317332302685827
Sentiment: magnitude: 1.2000000476837158
score: 0.6000000238418579


Name: "visitlondon"
  Begin Offset : 26969
  Content : visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00032299087615683675
Sentiment: 

Name: "team"
  Begin Offset : 24326
  Content : team
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 29112
  Content : team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0003225700929760933
Sentiment: magnitude: 1.0
score: 0.5


Name: "biuk"
  Begin Offset : 9154
  Content : biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00031899905297905207
Sentiment: magnitude: 0.800000011920929
score: 0.4000000059604645


Name: "installations"
  Begin Offset : 12638
  Content : installations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00031559151830151677
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "king cross"
  Begin Offset : 1826
  Content : king cross
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0003148938121739775
Sentiment: 

Name: "light installations"
  Begin Offset : 126266
  Content : light installations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 139301
  Content : light installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 151544
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 153288
  Content : light installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 155350
  Content : light installations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 156032
  Content : light installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 158986
  Content : light installations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0003148034738842398
Sentiment: magnitude: 3.799999952316284
score: 0.4000000059604645


Name: "kingscross woh"
  Begin Offset : 52749
  Content : kingscross woh
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 62834
  Content : kingscross woh
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 92446
  Content : kingscross woh
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0003145617665722966
Sentiment: magnitude: 0.10000000149011612


Name: "ilovephotography photoatn"
  Begin Offset : 14657
  Content : ilovephotography photoatn
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 14645
  Content : photography
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0003126648662146181
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "display visitlondon"
  Begin Offset : 7601
  Content : display  visitlondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0003081517934333533
Sentiment: magnitude: 0.5
score: 0.5


Name: "works"
  Begin Offset : 65407
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 92337
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 96876
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 102261
  Content : works
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.0003080577589571476
Sentiment: magnitude: 0.8999999761581421


Name: "nkirkwoodlondon celebration"
  Begin Offset : 24331
  Content : nkirkwoodlondon celebration
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 39487
  Content : nkirkwoodlondon celebration
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 53029
  Content : nkirkwoodlondon celebration
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002996555995196104
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "favourites"
  Begin Offset : 206
  Content : favourites
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.0002928028698079288
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "westminster abbey"
  Begin Offset : 3812
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 4788
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 4870
  Content : westminster abbey
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 8901
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 16929
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 17682
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 17970
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 20109
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 23135
  Content : westminster abbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 31656
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 36324
  Content : westminster abbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 56048
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 65130
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 66143
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 67472
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 67945
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 68469
  Content : westminster abbey
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 78185
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 81716
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 82676
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 82966
  Content : westminster abbey
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 83428
  Content : westminster abbey
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 84548
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 88847
  Content : westminster abbey
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 100167
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 100312
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 102675
  Content : westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 107486
  Content : westminster abbey
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 112200
  Content : westminster abbey
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 114884
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 115024
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 118578
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 120083
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 121508
  Content : westminster abbey
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 123582
  Content : westminster abbey
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 125300
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 125397
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 137374
  Content : westminster abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 144660
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 147773
  Content : westminster abbey
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 148498
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 153065
  Content : westminster abbey
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 154105
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 159997
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 162276
  Content : westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 166499
  Content : westminster abbey
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 170359
  Content : westminster abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 175028
  Content : westminster abbey
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 175350
  Content : westminster abbey
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 0.0002900139079429209
Sentiment: magnitude: 18.100000381469727
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 15227
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0002890642499551177
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lights"
  Begin Offset : 10973
  Content : lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.0002862843975890428
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "things"
  Begin Offset : 40263
  Content : things
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 48398
  Content : things
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 56826
  Content : things
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 97299
  Content : things
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 124443
  Content : things
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 139680
  Content : things
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 142517
  Content : things
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 159107
  Content : things
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 171598
  Content : things
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002822526730597019
Sentiment: magnitude: 6.099999904632568
score: 0.699999988079071


Name: "others"
  Begin Offset : 5162
  Content : others
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 6902
  Content : others
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00027992416289635
Sentiment: magnitude: 0.800000011920929
score: 0.4000000059604645


Name: "others"
  Begin Offset : 13487
  Content : others
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 16020
  Content : others
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.000277019920758903
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "others"
  Begin Offset : 26027
  Content : others
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 30739
  Content : others
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00027491713990457356
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "event"
  Begin Offset : 12055
  Content : event
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.000270027230726555
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "southbank amp"
  Begin Offset : 138170
  Content : southbank amp
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 146501
  Content : southbank amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 151768
  Content : southbank amp
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 152915
  Content : southbank amp
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00026939023518934846
Sentiment: magnitude: 2.0
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 18744
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00026774880825541914
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photos"
  Begin Offset : 1379
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0002674050338100642
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 25673
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0002668855304364115
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival thegl0betrotter patrice warrener"
  Begin Offset : 6167
  Content : patrice
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 8580
  Content : patrice
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 11413
  Content : patrice warrener
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 13081
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 19151
  Content : patrice
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 56031
  Content : patrice warrener
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 65157
  Content : patrice warrener
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 66126
  Content : patrice warrener
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 68681
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 68855
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 69094
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 75888
  Content : patrice
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 76062
  Content : patrice
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 78804
  Content : patrice
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 81004
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 81972
  Content : patrice
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 83544
  Content : patrice warrener
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 83699
  Content : patrice warrener
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 97774
  Content : patrice
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 144837
  Content : visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  thegl0betrotter patrice warrener
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 148409
  Content : patrice warrener
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 150565
  Content : patrice
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 152279
  Content : lumierelondon  thegl0betrotter patrice warrener
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 154330
  Content : patrice warrener
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 165801
  Content : patrice
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 176063
  Content : patrice
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.000263947993516922
Sentiment: magnitude: 8.600000381469727
score: 0.20000000298023224


Name: "producer director cameraman promo coaching music video london"
  Begin Offset : 2669
  Content : producer director cameraman promo coaching music video london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002630717644933611
Sentiment: 

Name: "installation london"
  Begin Offset : 2996
  Content : installation london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002630717644933611
Sentiment: 

Name: "bridge london"
  Begin Offset : 6963
  Content : bridge london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00026083673583343625
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "leicestersquare london"
  Begin Offset : 10934
  Content : leicestersquare london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0002595381229184568
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bridge london"
  Begin Offset : 13359
  Content : bridge london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.0002590461226645857
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "king cross london"
  Begin Offset : 16457
  Content : king cross london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00025824597105383873
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "red telephone box london londonlife"
  Begin Offset : 21744
  Content : red telephone box london londonlife
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00025760885910131037
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "king cross london"
  Begin Offset : 22960
  Content : king cross london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0002573331003077328
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "photos"
  Begin Offset : 28826
  Content : photos
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 91403
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002568979689385742
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "london"
  Begin Offset : 27560
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00025684526190161705
Sentiment: magnitude: 0.5
score: 0.5


Name: "hit londoners"
  Begin Offset : 30868
  Content : hit londoners
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0002566272160038352
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "hit londoners"
  Begin Offset : 29461
  Content : hit londoners
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0002566272160038352
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon"
  Begin Offset : 108938
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 113128
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002556164690759033
Sentiment: 

Name: "lights"
  Begin Offset : 23765
  Content : lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00025097717298194766
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lights"
  Begin Offset : 109550
  Content : lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 111882
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 113109
  Content : lights
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0002447072183713317
Sentiment: magnitude: 1.7000000476837158
score: 0.5


Name: "city"
  Begin Offset : 56228
  Content : city
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 66063
  Content : city
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00024178823514375836
Sentiment: magnitude: 1.7000000476837158
score: 0.800000011920929


Name: "festival lights"
  Begin Offset : 20914
  Content : festival lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00023335780133493245
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "people"
  Begin Offset : 369
  Content : people
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00023222460004035383
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "survivors"
  Begin Offset : 7033
  Content : survivors
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 25084
  Content : survivors
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 26158
  Content : survivors
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00023013795726001263
Sentiment: magnitude: 0.20000000298023224


Name: "festival"
  Begin Offset : 45396
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 53368
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022831327805761248
Sentiment: 

Name: "city"
  Begin Offset : 46519
  Content : city
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 53220
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002279058244312182
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "neon lumiere"
  Begin Offset : 14519
  Content : neon lumiere
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00022768074995838106
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "archdeaconluke lumierefestival"
  Begin Offset : 14356
  Content : archdeaconluke lumierefestival
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00022768074995838106
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "archdeaconluke lumierefestival"
  Begin Offset : 14291
  Content : archdeaconluke lumierefestival
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00022768074995838106
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "event"
  Begin Offset : 29044
  Content : event
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00022751485812477767
Sentiment: magnitude: 0.5
score: 0.5


Name: "checking lights"
  Begin Offset : 2902
  Content : checking lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022685642761643976
Sentiment: 

Name: "light"
  Begin Offset : 3676
  Content : light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022685642761643976
Sentiment: 

Name: "lumierelondon"
  Begin Offset : 21163
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002267899108119309
Sentiment: 

Name: "lumierelondon"
  Begin Offset : 23673
  Content : lumierelondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0002265471121063456
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierelondon"
  Begin Offset : 27013
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022611761232838035
Sentiment: 

Name: "thank"
  Begin Offset : 780
  Content : thank
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022584639373235404
Sentiment: 

Name: "festival light"
  Begin Offset : 5677
  Content : festival light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00022572690795641392
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "light"
  Begin Offset : 5075
  Content : light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00022572690795641392
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "photography night light"
  Begin Offset : 6444
  Content : photography night light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022492889547720551
Sentiment: 

Name: "festival light"
  Begin Offset : 7208
  Content : festival light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022492889547720551
Sentiment: 

Name: "dream"
  Begin Offset : 52933
  Content : dream
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 69326
  Content : dream
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022403139155358076
Sentiment: 

Name: "festival lights"
  Begin Offset : 11536
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00022380895097739995
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival lights"
  Begin Offset : 11687
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00022380895097739995
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "city bbclondonnews festival light"
  Begin Offset : 12659
  Content : city   bbclondonnews festival light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.000223384631681256
Sentiment: 

Name: "amp light"
  Begin Offset : 14264
  Content : amp light
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00022301771969068795
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "uv lights"
  Begin Offset : 14901
  Content : uv lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00022301771969068795
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lights"
  Begin Offset : 16881
  Content : lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00022269457986112684
Sentiment: magnitude: 0.5
score: 0.5


Name: "lighting"
  Begin Offset : 20345
  Content : lighting
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00022240592807065696
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "light"
  Begin Offset : 18841
  Content : light
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00022240592807065696
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival lights"
  Begin Offset : 22182
  Content : festival lights
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00022214511409401894
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "light"
  Begin Offset : 21371
  Content : light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00022214511409401894
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lights"
  Begin Offset : 25595
  Content : lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0002216887369286269
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival lights"
  Begin Offset : 26642
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002216887369286269
Sentiment: 

Name: "light"
  Begin Offset : 26408
  Content : light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0002216887369286269
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 27972
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00022148658172227442
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lights"
  Begin Offset : 28081
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00022148658172227442
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "light"
  Begin Offset : 27920
  Content : light
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00022148658172227442
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lights"
  Begin Offset : 29624
  Content : lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00022129854187369347
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "streets london"
  Begin Offset : 119544
  Content : streets london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 122322
  Content : streets london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00022124176030047238
Sentiment: 

Name: "installations"
  Begin Offset : 84321
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 86676
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 87354
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.0002173562825191766
Sentiment: magnitude: 2.200000047683716
score: 0.699999988079071


Name: "plan"
  Begin Offset : 12292
  Content : plan
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 14073
  Content : plan
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00021703900711145252
Sentiment: magnitude: 0.4000000059604645


Name: "mrbs"
  Begin Offset : 29955
  Content : mrbs
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 31904
  Content : mrbs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 32101
  Content : mrbs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002167623897548765
Sentiment: magnitude: 0.10000000149011612


Name: "levanterman lumierelondon aichoketrust southbanklondon postcardslond1 lumiere london"
  Begin Offset : 59789
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 60011
  Content : levanterman lumierelondon aichoketrust southbanklondon  postcardslond1 lumiere london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 0.00021624098008032888
Sentiment: magnitude: 0.10000000149011612


Name: "lighting installation"
  Begin Offset : 1985
  Content : lighting installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020324552315287292
Sentiment: 

Name: "installation"
  Begin Offset : 2642
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020324552315287292
Sentiment: 

Name: "installations"
  Begin Offset : 3542
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020324552315287292
Sentiment: 

Name: "installation"
  Begin Offset : 3573
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020324552315287292
Sentiment: 

Name: "installation"
  Begin Offset : 2413
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020324552315287292
Sentiment: 

Name: "pubs"
  Begin Offset : 5987
  Content : pubs
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 6386
  Content : pubs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 6692
  Content : pubs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0002028441522270441
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "south bank installation"
  Begin Offset : 5295
  Content : south bank installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0002022334811044857
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 5846
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0002022334811044857
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 5081
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0002022334811044857
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 8384
  Content : installations
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.000200965630938299
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installations"
  Begin Offset : 9488
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.000200965630938299
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations"
  Begin Offset : 9409
  Content : light installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.000200965630938299
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 10727
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00020051504543516785
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 12392
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00020013486209791154
Sentiment: 

Name: "installations"
  Begin Offset : 14128
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0001998061197809875
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 18064
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00019951659487560391
Sentiment: magnitude: 0.5
score: 0.5


Name: "installations"
  Begin Offset : 18855
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00019925796368625015
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "waterlicht installation"
  Begin Offset : 20304
  Content : waterlicht installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00019925796368625015
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 19904
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00019925796368625015
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 19304
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019925796368625015
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 20430
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019902428903151304
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 22057
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019902428903151304
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "name installation"
  Begin Offset : 22396
  Content : name installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019902428903151304
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "programme installations"
  Begin Offset : 24489
  Content : programme installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installation"
  Begin Offset : 24196
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 24666
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 24058
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 23804
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 23476
  Content : installations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00019881120533682406
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installation"
  Begin Offset : 25734
  Content : installation
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00019861538021359593
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 26508
  Content : installation
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00019861538021359593
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 25420
  Content : installation
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00019861538021359593
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "light installations"
  Begin Offset : 26680
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019861538021359593
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "marquee lumiere installations"
  Begin Offset : 25617
  Content : marquee lumiere installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00019861538021359593
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 27594
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00019843425252474844
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations"
  Begin Offset : 27131
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00019843425252474844
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "duration dot installation"
  Begin Offset : 28327
  Content : duration dot installation
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00019843425252474844
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 29690
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0001982657704502344
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 31082
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0001982657704502344
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 30035
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001982657704502344
Sentiment: magnitude: 0.5
score: 0.5


Name: "installation"
  Begin Offset : 31437
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00019810830417554826
Sentiment: 

Name: "installations"
  Begin Offset : 32541
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00019810830417554826
Sentiment: 

Name: "installations"
  Begin Offset : 32646
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00019810830417554826
Sentiment: 

Name: "thelightermankx"
  Begin Offset : 1074
  Content : thelightermankx
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00019542562949936837
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visitlondon"
  Begin Offset : 11873
  Content : visitlondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001944424002431333
Sentiment: magnitude: 0.5
score: 0.5


Name: "mayoroflondon visitlondon"
  Begin Offset : 12171
  Content : mayoroflondon  visitlondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.0001944424002431333
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "nightlife"
  Begin Offset : 8964
  Content : nightlife
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00019417773000895977
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nightingale"
  Begin Offset : 8728
  Content : nightingale
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00019417773000895977
Sentiment: magnitude: 0.5
score: 0.5


Name: "oxo london nightlights"
  Begin Offset : 14490
  Content : oxo london nightlights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00019305736350361258
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sta planning visit"
  Begin Offset : 24550
  Content : sta planning visit
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00019279013213235885
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light"
  Begin Offset : 106507
  Content : light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 108462
  Content : light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00019105877436231822
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "london town"
  Begin Offset : 1108
  Content : london town
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00018933467799797654
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 44124
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 47732
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 63417
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018888841441366822
Sentiment: 

Name: "light"
  Begin Offset : 33123
  Content : light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018841959536075592
Sentiment: 

Name: "westend amp"
  Begin Offset : 12450
  Content : westend amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018664106028154492
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "festival sho"
  Begin Offset : 20153
  Content : festival sho
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 23179
  Content : festival sho
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.0001865727244876325
Sentiment: magnitude: 1.5
score: 0.699999988079071


Name: "volunteers"
  Begin Offset : 9961
  Content : volunteers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 41574
  Content : volunteers
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00018644612282514572
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "westend amp"
  Begin Offset : 15285
  Content : westend amp
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001863344805315137
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "south bank amp"
  Begin Offset : 26191
  Content : south bank amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00018522398022469133
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "event"
  Begin Offset : 6836
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.000183016003575176
Sentiment: 

Name: "pa festival"
  Begin Offset : 1939
  Content : pa  festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018296677444595844
Sentiment: 

Name: "hq"
  Begin Offset : 10046
  Content : hq
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 41659
  Content : hq
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00018235575407743454
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "festival"
  Begin Offset : 4845
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018205566448159516
Sentiment: 

Name: "projector screen pa lumiere festival"
  Begin Offset : 4899
  Content : projector screen pa lumiere festival
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00018205566448159516
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival"
  Begin Offset : 5365
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018205566448159516
Sentiment: 

Name: "mickfusion highlights"
  Begin Offset : 1335
  Content : mickfusion  highlights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001819532917579636
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 8308
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018091425590682775
Sentiment: 

Name: "festival"
  Begin Offset : 10529
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001805086067179218
Sentiment: 

Name: "festival"
  Begin Offset : 13827
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00018016633111983538
Sentiment: 

Name: "night train home sinoradiouk festival"
  Begin Offset : 15015
  Content : night train home  sinoradiouk  festival
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00017987037426792085
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 19045
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017937688971869648
Sentiment: 

Name: "westminsterabbey light festival"
  Begin Offset : 18485
  Content : westminsterabbey light festival
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00017937688971869648
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival"
  Begin Offset : 19599
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017937688971869648
Sentiment: 

Name: "photos"
  Begin Offset : 23201
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001792624098015949
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumière festival"
  Begin Offset : 22503
  Content : lumière festival
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00017916651268023998
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "festival"
  Begin Offset : 22727
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017897467478178442
Sentiment: 

Name: "ospiti luminosi londra lumierelondon lumierelondon2018 leicestersquare"
  Begin Offset : 20702
  Content : ospiti luminosi londra  lumierelondon lumierelondon2018 leicestersquare
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 0.00017880489758681506
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "london lumiere festival"
  Begin Offset : 26300
  Content : london lumiere festival
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00017879839288070798
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "chrisplant one"
  Begin Offset : 66927
  Content : chrisplant one
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 130530
  Content : chrisplant one
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 144774
  Content : chrisplant one
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.00017851816664915532
Sentiment: magnitude: 0.30000001192092896


Name: "festival"
  Begin Offset : 30163
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017848364950623363
Sentiment: 

Name: "mayoroflondon festival"
  Begin Offset : 29483
  Content : mayoroflondon festival
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00017848364950623363
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "mayoroflondon festival"
  Begin Offset : 30890
  Content : mayoroflondon festival
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00017848364950623363
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival"
  Begin Offset : 30424
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017848364950623363
Sentiment: 

Name: "festival"
  Begin Offset : 30589
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017848364950623363
Sentiment: 

Name: "london lumiere festival"
  Begin Offset : 32897
  Content : london lumiere festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017834187019616365
Sentiment: 

Name: "works"
  Begin Offset : 17873
  Content : works
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00017731101252138615
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 27541
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017429023864679039
Sentiment: 

Name: "kingscross london"
  Begin Offset : 20233
  Content : kingscross london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 20959
  Content : kingscross london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 0.00017213402315974236
Sentiment: magnitude: 1.7000000476837158
score: 0.800000011920929


Name: "photos"
  Begin Offset : 11342
  Content : photos
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00017211036174558103
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust"
  Begin Offset : 33094
  Content : aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00017205784388352185
Sentiment: 

Name: "visitlondon mayoroflondon"
  Begin Offset : 88568
  Content : visitlondon mayoroflondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 107944
  Content : visitlondon  mayoroflondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 107931
  Content : world bubble
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00017196143744513392
Sentiment: magnitude: 0.699999988079071
score: 0.20000000298023224


Name: "event"
  Begin Offset : 13644
  Content : event
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00017090750043280423
Sentiment: magnitude: 0.5
score: 0.5


Name: "park kings"
  Begin Offset : 3251
  Content : park kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001704973547020927
Sentiment: 

Name: "floodlights king"
  Begin Offset : 5728
  Content : floodlights king
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00016964830865617841
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "event"
  Begin Offset : 25570
  Content : event
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00016960981884039938
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "regent"
  Begin Offset : 108591
  Content : regent
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 138234
  Content : regent
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 146565
  Content : regent
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 151832
  Content : regent
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 152979
  Content : regent
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00016927396063692868
Sentiment: magnitude: 1.600000023841858
score: 0.20000000298023224


Name: "festival light kings"
  Begin Offset : 7818
  Content : festival light kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001690484641585499
Sentiment: 

Name: "kingdom"
  Begin Offset : 9088
  Content : kingdom
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00016858465096447617
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kingdom"
  Begin Offset : 9145
  Content : kingdom
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00016858465096447617
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kingdom"
  Begin Offset : 8806
  Content : kingdom
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00016858465096447617
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "illumaphonium grosvenorsquare newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille"
  Begin Offset : 78229
  Content : thelondoneye   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89069
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89227
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 89753
  Content : newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 90345
  Content : illumaphonium grosvenorsquare   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 90903
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 119867
  Content : benoit deseille
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 119863
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001678833068581298
Sentiment: 

Name: "nofilter kings"
  Begin Offset : 14821
  Content : nofilter kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001676118845352903
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "granary square kings"
  Begin Offset : 14983
  Content : granary square kings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0001676118845352903
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "kings"
  Begin Offset : 18315
  Content : kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00016715200035832822
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "redevelopment kings"
  Begin Offset : 18360
  Content : redevelopment kings
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00016715200035832822
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "kingdom"
  Begin Offset : 18448
  Content : kingdom
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00016715200035832822
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "kings"
  Begin Offset : 19809
  Content : kings
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00016715200035832822
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installations kings"
  Begin Offset : 23214
  Content : installations kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001667772012297064
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aurora borealis kings"
  Begin Offset : 23251
  Content : aurora borealis kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001667772012297064
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "king"
  Begin Offset : 28634
  Content : king
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00016646095900796354
Sentiment: magnitude: 0.5
score: 0.5


Name: "king"
  Begin Offset : 28565
  Content : king
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00016646095900796354
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations"
  Begin Offset : 103715
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 137515
  Content : light installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00016298206173814833
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "night road closures"
  Begin Offset : 64436
  Content : night road closures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 108543
  Content : night road closures
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00016281017451547086
Sentiment: magnitude: 0.10000000149011612


Name: "guys"
  Begin Offset : 1797
  Content : guys
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00016276440874207765
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "westminster fitzrovia mayfair"
  Begin Offset : 12413
  Content : westminster fitzrovia mayfair
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 15248
  Content : westminster fitzrovia mayfair
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 43665
  Content : westminster fitzrovia mayfair
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 74516
  Content : westminster fitzrovia mayfair
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 133396
  Content : westminster fitzrovia mayfair
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 150776
  Content : westminster fitzrovia mayfair
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 158417
  Content : westminster fitzrovia mayfair
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 167924
  Content : mayfair
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 109902
  Content : mayfair
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 138112
  Content : kingscross fitzrovia mayfair
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 146443
  Content : kingscross fitzrovia mayfair
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 151710
  Content : kingscross fitzrovia mayfair
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 152857
  Content : kingscross fitzrovia mayfair
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 0.0001619339018361643
Sentiment: magnitude: 5.099999904632568
score: 0.30000001192092896


Name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  Begin Offset : 31349
  Content : electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.0001612865162314847
Sentiment: 

Name: "amp"
  Begin Offset : 85104
  Content : amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 87496
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00015814551443327218
Sentiment: magnitude: 0.4000000059604645
score: -0.10000000149011612


Name: "fox amp badger stars"
  Begin Offset : 44095
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 47703
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00015708708087913692
Sentiment: 

Name: "nofilters"
  Begin Offset : 330
  Content : nofilters
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00015509076183661819
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "carnaby street joinin247 london"
  Begin Offset : 8261
  Content : carnaby street  joinin247 london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 0.00015369955508504063
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "marshalljulius london"
  Begin Offset : 73570
  Content : marshalljulius london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 127143
  Content : marshalljulius london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 145430
  Content : marshalljulius london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 145707
  Content : marshalljulius london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 0.00015289821021724492
Sentiment: magnitude: 1.100000023841858
score: -0.30000001192092896


Name: "oxotowerwharf london"
  Begin Offset : 14532
  Content : oxotowerwharf london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 0.00015281264495570213
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "leicestersquare london"
  Begin Offset : 18623
  Content : leicestersquare london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 0.0001523933606222272
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "communities"
  Begin Offset : 1252
  Content : communities
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00015210975834634155
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumiere lumierelondon kingscross london"
  Begin Offset : 23279
  Content : lumiere  lumierelondon kingscross london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 0.00015205162344500422
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "abbey"
  Begin Offset : 6149
  Content : abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00015162646013777703
Sentiment: 

Name: "abbey"
  Begin Offset : 8562
  Content : abbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00015121042088139802
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "abbey"
  Begin Offset : 13063
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00015058525605127215
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "abbey"
  Begin Offset : 19133
  Content : abbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0001499253703514114
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "biuk"
  Begin Offset : 49114
  Content : biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00014949135947972536
Sentiment: magnitude: 0.5
score: 0.5


Name: "andy popcornmedia_uk lumiere lumierelondon lumiere2018"
  Begin Offset : 103915
  Content : lumierelondon lumiere2018
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 107513
  Content : lumierelondon lumiere2018
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 111173
  Content : andy popcornmedia_uk lumiere  lumierelondon lumiere2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 111163
  Content : colleague
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001473164593335241
Sentiment: magnitude: 0.699999988079071
score: 0.10000000149011612


Name: "chance"
  Begin Offset : 10831
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001473126030759886
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations amp"
  Begin Offset : 12850
  Content : light installations amp
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 81836
  Content : light installations amp
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00014659097359981388
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "event"
  Begin Offset : 27338
  Content : event
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00014617929991800338
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "church abbey"
  Begin Offset : 7354
  Content : church abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001461276551708579
Sentiment: 

Name: "aichoketrust"
  Begin Offset : 36292
  Content : aichoketrust
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 96276
  Content : aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 0.0001460060739191249
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "dot"
  Begin Offset : 1721
  Content : dot
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00014574425586033612
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "king cross granary square"
  Begin Offset : 3982
  Content : king cross granary square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00014572215150110424
Sentiment: 

Name: "aichoketrust wrap"
  Begin Offset : 4072
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00014560652198269963
Sentiment: 

Name: "berkeley square"
  Begin Offset : 8740
  Content : berkeley square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0001440872874809429
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "king cross granary square"
  Begin Offset : 15882
  Content : king cross granary square
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00014325580559670925
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "granary square"
  Begin Offset : 20977
  Content : granary square
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001426951785106212
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "davekirwinphotography canon photography"
  Begin Offset : 4990
  Content : davekirwinphotography  canon photography
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00014254597772378474
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival lights"
  Begin Offset : 151941
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 160765
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 165540
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 170038
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00014115516387391835
Sentiment: magnitude: 1.100000023841858
score: 0.20000000298023224


Name: "favourites"
  Begin Offset : 3556
  Content : favourites
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001404155045747757
Sentiment: 

Name: "pa"
  Begin Offset : 16487
  Content : pa
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001386212679790333
Sentiment: magnitude: 0.5
score: 0.5


Name: "pa"
  Begin Offset : 22990
  Content : pa
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00013813108671456575
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "berkeley square"
  Begin Offset : 28124
  Content : berkeley square
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00013711237988900393
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "piccadilly lumierelondon"
  Begin Offset : 6060
  Content : piccadilly lumierelondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 0.00013616099022328854
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "capital city"
  Begin Offset : 3395
  Content : capital city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00013598677469417453
Sentiment: 

Name: "photography"
  Begin Offset : 7259
  Content : photography
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00013521530490834266
Sentiment: 

Name: "canon photos"
  Begin Offset : 8823
  Content : canon photos
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00013484428927768022
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "photos"
  Begin Offset : 8223
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00013484428927768022
Sentiment: 

Name: "installation dslrphotography city"
  Begin Offset : 6498
  Content : installation dslrphotography city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001348310470348224
Sentiment: 

Name: "photos"
  Begin Offset : 11392
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00013454190047923476
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visitlondon visitlondon lumierelondon london"
  Begin Offset : 21394
  Content : visitlondon visitlondon lumierelondon london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 26431
  Content : visitlondon visitlondon lumierelondon london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 80012
  Content : visitlondon visitlondon lumierelondon london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 0.00013422162737697363
Sentiment: magnitude: 1.0
score: 0.20000000298023224


Name: "weekend photos"
  Begin Offset : 15720
  Content : weekend photos
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00013406614016275853
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "kingscross london"
  Begin Offset : 140928
  Content : kingscross london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 140920
  Content : sketch
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00013396443682722747
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "festival photos"
  Begin Offset : 17804
  Content : festival photos
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00013387184299062937
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival photos"
  Begin Offset : 17949
  Content : festival photos
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00013387184299062937
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "child hood collectif coin photo"
  Begin Offset : 19369
  Content : child hood collectif coin photo
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00013369826774578542
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photography"
  Begin Offset : 18533
  Content : photography
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00013369826774578542
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "citylights"
  Begin Offset : 14559
  Content : citylights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00013368514191824943
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "photos"
  Begin Offset : 32726
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001329267252003774
Sentiment: 

Name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  Begin Offset : 31774
  Content : human interaction
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 31792
  Content : electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.00013292551739141345
Sentiment: 

Name: "south bank"
  Begin Offset : 44969
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00013207287702243775
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "south bank"
  Begin Offset : 47203
  Content : south bank
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00013200059765949845
Sentiment: magnitude: 0.5
score: 0.5


Name: "work"
  Begin Offset : 18945
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.000131775057525374
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "work"
  Begin Offset : 18777
  Content : work
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.000131775057525374
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "works"
  Begin Offset : 21040
  Content : works
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001316205016337335
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "works"
  Begin Offset : 22270
  Content : works
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001316205016337335
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "work"
  Begin Offset : 24309
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00013147955178283155
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "work"
  Begin Offset : 29026
  Content : work
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.0001312302192673087
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "work"
  Begin Offset : 28295
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.0001312302192673087
Sentiment: magnitude: 16.700000762939453
score: 0.4000000059604645


Name: "work"
  Begin Offset : 29095
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00013111878070048988
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 41513
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00013021299673710018
Sentiment: magnitude: 10.899999618530273
score: 0.699999988079071


Name: "display"
  Begin Offset : 45124
  Content : display
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00013013843272347003
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "display"
  Begin Offset : 48947
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00012999906903132796
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 49023
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00012999906903132796
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 47540
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012999906903132796
Sentiment: magnitude: 10.899999618530273
score: 0.699999988079071


Name: "display"
  Begin Offset : 50346
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001299337309319526
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 51195
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001299337309319526
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 52256
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001298709976254031
Sentiment: 

Name: "display"
  Begin Offset : 52603
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001298709976254031
Sentiment: 

Name: "display"
  Begin Offset : 51852
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001298709976254031
Sentiment: 

Name: "display"
  Begin Offset : 53913
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53533
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54141
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54892
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54065
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53457
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00012981065083295107
Sentiment: 

Name: "display"
  Begin Offset : 54816
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53837
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53609
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54962
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54360
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54740
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53685
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54512
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54436
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53761
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54588
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 53989
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 54664
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012981065083295107
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photos"
  Begin Offset : 29168
  Content : photos
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00012979617167729884
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "england"
  Begin Offset : 71538
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 71776
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72014
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72252
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72473
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72694
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72915
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 73136
  Content : england
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 125135
  Content : england
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 125100
  Content : umbrella project regent st  london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001297385897487402
Sentiment: magnitude: 4.5
score: -0.30000001192092896


Name: "festival lights"
  Begin Offset : 60443
  Content : festival lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00012922374298796058
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "times"
  Begin Offset : 17054
  Content : times
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012914551189169288
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "times"
  Begin Offset : 25150
  Content : times
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00012856203829869628
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "works"
  Begin Offset : 15135
  Content : works
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012734536721836776
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "circus"
  Begin Offset : 47890
  Content : circus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 93658
  Content : circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00012659763160627335
Sentiment: magnitude: 0.699999988079071


Name: "aichoketrust wrap"
  Begin Offset : 22774
  Content : aichoketrust wrap
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00012655816681217402
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bye bye case"
  Begin Offset : 550
  Content : bye bye  case
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.0001265198807232082
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "red telephone box"
  Begin Offset : 18094
  Content : red telephone box
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00012632709695026278
Sentiment: magnitude: 0.5
score: 0.5


Name: "city hall"
  Begin Offset : 129096
  Content : city hall
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 135911
  Content : city hall
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 158094
  Content : city hall
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 161371
  Content : city hall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 162433
  Content : city hall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 163821
  Content : city hall
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 165071
  Content : city hall
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.0001262984296772629
Sentiment: magnitude: 1.7000000476837158


Name: "penny photo stream"
  Begin Offset : 7225
  Content : penny  photo stream
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00012615928426384926
Sentiment: 

Name: "streetlight"
  Begin Offset : 6604
  Content : streetlight
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00012615928426384926
Sentiment: 

Name: "streets"
  Begin Offset : 9876
  Content : streets
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.0001258130942005664
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "streets"
  Begin Offset : 17006
  Content : streets
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00012490575318224728
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chandeliers"
  Begin Offset : 16434
  Content : chandeliers
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.0001248967892024666
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "chandeliers"
  Begin Offset : 22937
  Content : chandeliers
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00012445512402337044
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "fitzrovia pas camden"
  Begin Offset : 62995
  Content : fitzrovia pas  camden
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 62980
  Content : bloomsbury amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 85411
  Content : fitzrovia pas  camden
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 85396
  Content : bloomsbury amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 0.00012426680768840015
Sentiment: magnitude: 0.8999999761581421
score: -0.10000000149011612


Name: "fox amp badger stars"
  Begin Offset : 11507
  Content : fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012419087579473853
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "badgerust fox amp badger stars"
  Begin Offset : 11648
  Content : badgerust fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012419087579473853
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "fox amp badger stars"
  Begin Offset : 19570
  Content : fox amp badger stars
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012341213005129248
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "badgerust fox amp badger stars"
  Begin Offset : 20875
  Content : badgerust fox amp badger stars
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00012326736759860069
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "festival lights"
  Begin Offset : 141898
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00012316019274294376
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "london ibipeople ibisocial lumierelondon lumiere lumierelondon2018"
  Begin Offset : 2926
  Content : london ibipeople ibisocial lumierelondon  lumiere lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.000123133126180619
Sentiment: 

Name: "display"
  Begin Offset : 9189
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012309540761634707
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "fox amp badger stars"
  Begin Offset : 26613
  Content : fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0001230140624102205
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "badgerust fox amp badger stars"
  Begin Offset : 27933
  Content : badgerust fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012290185259189457
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018 electricpedals"
  Begin Offset : 31226
  Content : electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  electricpedals
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 31208
  Content : human interaction
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.0001227466855198145
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "telephone box"
  Begin Offset : 11144
  Content : telephone box
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00012235487520229071
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "video electricpedals"
  Begin Offset : 1283
  Content : video electricpedals
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012183767830720171
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "iamgabrielluna yosoycordova lumierelondon lumierelondon2018"
  Begin Offset : 11575
  Content : iamgabrielluna yosoycordova lumierelondon lumierelondon2018
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 0.00012147855159128085
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "lumiere lumiere neon drolpets london"
  Begin Offset : 133497
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 134965
  Content : lumiere lumiere neon drolpets london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.00012145943765062839
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon"
  Begin Offset : 17238
  Content : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 0.00012087353388778865
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
  Begin Offset : 19426
  Content : visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 0.00012071680976077914
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust justin_venn lumierelondon2018 lumierelondon"
  Begin Offset : 19675
  Content : gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust  justin_venn  lumierelondon2018 lumierelondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 0.00012071680976077914
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "londonisopen lumiere justin_venn lumierelondon2018 lumierelondon"
  Begin Offset : 22087
  Content : londonisopen lumiere   justin_venn  lumierelondon2018 lumierelondon
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 0.00012057521234964952
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "youtube"
  Begin Offset : 11552
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 32507
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 82108
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 117768
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 118052
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 159499
  Content : youtube
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.0001204180225613527
Sentiment: magnitude: 0.20000000298023224


Name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  Begin Offset : 32166
  Content : electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.00012002015864709392
Sentiment: 

Name: "aichoketrust lumieredub"
  Begin Offset : 114918
  Content : aichoketrust lumieredub
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00012000233255093917
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "atnight streetsoflondon southbank instagood"
  Begin Offset : 6532
  Content : atnight streetsoflondon southbank instagood
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 0.00011906483996426687
Sentiment: 

Name: "brightnights gt lumierelondon igerslondon londonpop thisislondon london"
  Begin Offset : 11703
  Content : antonio ubeda en supercube de stéphane masson lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 13813
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 84347
  Content : brightnights gt  lumierelondon igerslondon londonpop thisislondon london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.00011904460552614182
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon"
  Begin Offset : 144129
  Content : visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 165249
  Content : visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 0.00011861154052894562
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "visit"
  Begin Offset : 143898
  Content : visit
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 162687
  Content : visit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011861154052894562
Sentiment: magnitude: 0.20000000298023224
score: -0.10000000149011612


Name: "insight"
  Begin Offset : 106735
  Content : insight
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 115828
  Content : insight
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 115984
  Content : insight
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 116375
  Content : insight
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 116505
  Content : insight
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00011762086796807125
Sentiment: magnitude: 4.199999809265137
score: 0.800000011920929


Name: "aquarium"
  Begin Offset : 18124
  Content : aquarium
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00011740725312847644
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wildlife theme"
  Begin Offset : 928
  Content : wildlife theme
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.0001167385998996906
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lumierelondon king cross"
  Begin Offset : 28662
  Content : lumierelondon  king cross
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00011525394074851647
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "south bank king cross"
  Begin Offset : 27296
  Content : south bank king cross
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011525394074851647
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cross"
  Begin Offset : 28570
  Content : cross
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00011525394074851647
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "destinations"
  Begin Offset : 143054
  Content : destinations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 143606
  Content : destinations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 145997
  Content : destinations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 147090
  Content : destinations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 147386
  Content : destinations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 148204
  Content : destinations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.0001152013210230507
Sentiment: magnitude: 1.100000023841858
score: -0.10000000149011612


Name: "installation light spirit"
  Begin Offset : 6193
  Content : installation light spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011383001401554793
Sentiment: 

Name: "wabbey lumierelondon2018 visitlondon"
  Begin Offset : 28766
  Content : wabbey lumierelondon2018  visitlondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.0001136906721512787
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation light spirit"
  Begin Offset : 8606
  Content : installation light spirit
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00011351764987921342
Sentiment: magnitude: 0.5
score: 0.5


Name: "spirit"
  Begin Offset : 11406
  Content : spirit
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00011326307139825076
Sentiment: magnitude: 0.5
score: 0.5


Name: "installation light spirit"
  Begin Offset : 13107
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00011304827057756484
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "things"
  Begin Offset : 3741
  Content : things
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011299129255348817
Sentiment: 

Name: "spirit"
  Begin Offset : 15635
  Content : spirit
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00011286253720754758
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation light spirit"
  Begin Offset : 19177
  Content : installation light spirit
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00011255282879574224
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "battle bridge place granary"
  Begin Offset : 1842
  Content : battle bridge place granary
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011253052070969716
Sentiment: 

Name: "rain"
  Begin Offset : 14857
  Content : rain
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00011231218377361074
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 13888
  Content : installations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 0.00011219953739782795
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pity uk"
  Begin Offset : 1394
  Content : pity uk
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 0.00011219841690035537
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "rain"
  Begin Offset : 16812
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011214940604986623
Sentiment: 

Name: "rain"
  Begin Offset : 18240
  Content : rain
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00011200398876098916
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "flower"
  Begin Offset : 32298
  Content : flower
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00011156982509419322
Sentiment: 

Name: "panership"
  Begin Offset : 423
  Content : panership
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011111687490483746
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "op ed"
  Begin Offset : 1199
  Content : op ed
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011111687490483746
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "context"
  Begin Offset : 1585
  Content : context
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011111687490483746
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cosmoscope"
  Begin Offset : 1503
  Content : cosmoscope
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011111687490483746
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "ceo"
  Begin Offset : 1178
  Content : ceo
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00011111687490483746
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "granary"
  Begin Offset : 20251
  Content : granary
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00011032220936613157
Sentiment: magnitude: 0.5
score: 0.5


Name: "cultureisgreat wabbey stas"
  Begin Offset : 13022
  Content : cultureisgreat  wabbey  stas
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 78761
  Content : wabbey  stas
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 80961
  Content : wabbey  stas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 97731
  Content : wabbey  stas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 150512
  Content : lumiere   wabbey  stas
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 176020
  Content : wabbey  stas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 0.00011026330321328714
Sentiment: magnitude: 2.0999999046325684
score: 0.20000000298023224


Name: "people"
  Begin Offset : 28934
  Content : people
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00011006573913618922
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "granary"
  Begin Offset : 27735
  Content : granary
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00010986604320351034
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "granary"
  Begin Offset : 28619
  Content : granary
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 0.00010986604320351034
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "granary"
  Begin Offset : 28550
  Content : granary
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010986604320351034
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "raina newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium marshalljulius london"
  Begin Offset : 77023
  Content : raina  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 80311
  Content : londonevents fishtank phonebooth lightshow ig_l  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 84729
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 87037
  Content : newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  marshalljulius london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 0.00010957974882330745
Sentiment: magnitude: 1.0
score: -0.20000000298023224


Name: "lights"
  Begin Offset : 37650
  Content : lights
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 0.00010944672976620495
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "london"
  Begin Offset : 98939
  Content : london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 0.00010938174091279507
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "lights"
  Begin Offset : 38301
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00010937388287857175
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "people"
  Begin Offset : 18346
  Content : people
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00010917005420196801
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon rain"
  Begin Offset : 23556
  Content : lumierelondon rain
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00010903408110607415
Sentiment: magnitude: 0.5
score: 0.5


Name: "people"
  Begin Offset : 25846
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00010881791240535676
Sentiment: 

Name: "festival wavelength pa exhibition"
  Begin Offset : 17393
  Content : festival  wavelength pa  exhibition
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010770784865599126
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lots"
  Begin Offset : 9246
  Content : lots
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00010736948752310127
Sentiment: magnitude: 0.5
score: 0.5


Name: "festival lights"
  Begin Offset : 162654
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 166369
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 168083
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 168139
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 0.00010625926370266825
Sentiment: magnitude: 1.100000023841858
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 3364
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.0001058284324244596
Sentiment: 

Name: "experience"
  Begin Offset : 27067
  Content : experience
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 0.00010536580521147698
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "photos"
  Begin Offset : 139190
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 139474
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 166112
  Content : photos
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00010521744115976617
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "city hall projection"
  Begin Offset : 4703
  Content : city hall projection
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00010518263297853991
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "pa noordinarypark miss"
  Begin Offset : 5109
  Content : pa   noordinarypark miss
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00010518263297853991
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon theladytravels"
  Begin Offset : 81518
  Content : lumierelondon  theladytravels
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 99675
  Content : lumierelondon  theladytravels
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 0.00010512447624932975
Sentiment: magnitude: 0.4000000059604645
score: -0.10000000149011612


Name: "mayoroflondon"
  Begin Offset : 4057
  Content : mayoroflondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00010504102829145268
Sentiment: 

Name: "wave"
  Begin Offset : 5327
  Content : wave
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00010502947407076135
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "city"
  Begin Offset : 141563
  Content : city
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 163364
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 171822
  Content : city
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 0.00010488300904398784
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "lighting wearewaterloouk"
  Begin Offset : 1610
  Content : lighting   wearewaterloouk
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010481610661372542
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "fish phone booth"
  Begin Offset : 293
  Content : fish phone booth
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010481610661372542
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "city hall projection"
  Begin Offset : 10627
  Content : city hall projection
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.0001042886360664852
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city hall projection"
  Begin Offset : 11041
  Content : city hall projection
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.0001042886360664852
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "mayoroflondon noordinarypark miss"
  Begin Offset : 15957
  Content : mayoroflondon  noordinarypark miss
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010391982505097985
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "people"
  Begin Offset : 11467
  Content : people
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010329868382541463
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aiseverywhere aichoketrust"
  Begin Offset : 9825
  Content : aiseverywhere aichoketrust
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 0.00010312162339687347
Sentiment: magnitude: 0.5
score: 0.5


Name: "repoer presenter freelancer miss"
  Begin Offset : 30678
  Content : repoer presenter freelancer miss
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00010311848018318415
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "highlight hope"
  Begin Offset : 5341
  Content : highlight  hope
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 0.00010303899762220681
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "style"
  Begin Offset : 95124
  Content : style
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 153430
  Content : style
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 161239
  Content : style
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00010268105688737705
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "roads"
  Begin Offset : 27274
  Content : roads
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 0.00010255382949253544
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "roads"
  Begin Offset : 33342
  Content : roads
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00010238532559014857
Sentiment: 

Name: "ldn_culture loveldnlovecul aichoketrust"
  Begin Offset : 29557
  Content : ldn_culture loveldnlovecul aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 0.00010173587361350656
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "projector"
  Begin Offset : 8868
  Content : projector
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 0.00010073200974147767
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "video"
  Begin Offset : 13786
  Content : video
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 0.00010070811549667269
Sentiment: 

Name: "rain exitmagazine maxcoopermax visitlondon"
  Begin Offset : 125585
  Content : visitlondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 126835
  Content : rain  exitmagazine  maxcoopermax  visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 0.00010048043623100966
Sentiment: magnitude: 0.30000001192092896
score: -0.10000000149011612


Name: "video"
  Begin Offset : 23666
  Content : video
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 0.00010004187060985714
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "computingdawn colour"
  Begin Offset : 8415
  Content : computingdawn colour
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 9.989864338422194e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "pics"
  Begin Offset : 100916
  Content : pics
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 107701
  Content : pics
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 124839
  Content : pics
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.957629663404077e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "events"
  Begin Offset : 52077
  Content : events
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.903519094223157e-05
Sentiment: 

Name: "lumiere"
  Begin Offset : 82360
  Content : lumiere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.897547715809196e-05
Sentiment: 

Name: "aichoketrust wrap"
  Begin Offset : 31936
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.858036355581135e-05
Sentiment: 

Name: "interview harry qedproductions"
  Begin Offset : 389
  Content : interview harry qedproductions
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.758859960129485e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "pictures"
  Begin Offset : 4028
  Content : pictures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.753330232342705e-05
Sentiment: 

Name: "flamingos"
  Begin Offset : 13993
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.722371032694355e-05
Sentiment: 

Name: "dreams"
  Begin Offset : 149197
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 164736
  Content : dreams
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 168961
  Content : dreams
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.704164403956383e-05
Sentiment: magnitude: 1.0
score: 0.20000000298023224


Name: "installation london"
  Begin Offset : 37681
  Content : installation london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.68033418757841e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumiere london"
  Begin Offset : 39286
  Content : lumiere london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.673890599515289e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "installation london"
  Begin Offset : 38332
  Content : installation london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.673890599515289e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "work sroosegaarde lumiere london"
  Begin Offset : 39768
  Content : work sroosegaarde lumiere london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.66778170550242e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "london"
  Begin Offset : 42321
  Content : london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.661974763730541e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "colouryourcity"
  Begin Offset : 22470
  Content : colouryourcity
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 9.652641892898828e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "aichoketrust team"
  Begin Offset : 4214
  Content : aichoketrust  team
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.65252474998124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "broadway team"
  Begin Offset : 4674
  Content : broadway team
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.65252474998124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "zoomburst promise"
  Begin Offset : 11309
  Content : zoomburst promise
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 9.6124094852712e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "pictures"
  Begin Offset : 15928
  Content : pictures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.588234388502315e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumierelondon2018 lumierelondon southbanklondon"
  Begin Offset : 56324
  Content : lumierelondon2018 lumierelondon  southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 78546
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 143213
  Content : london lumierelondon  sadiqkhan
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 9.586702799424529e-05
Sentiment: 

Name: "broadway team"
  Begin Offset : 11012
  Content : broadway team
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.570481051923707e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "broadway team"
  Begin Offset : 10598
  Content : broadway team
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.570481051923707e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "roads"
  Begin Offset : 158555
  Content : roads
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 168690
  Content : roads
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 168867
  Content : roads
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 169222
  Content : roads
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 169359
  Content : roads
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 169484
  Content : roads
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 169609
  Content : roads
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.557012526784092e-05
Sentiment: magnitude: 2.299999952316284
score: 0.20000000298023224


Name: "exhibition"
  Begin Offset : 14772
  Content : exhibition
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.536634752294049e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wavelength pa exhibition"
  Begin Offset : 17161
  Content : wavelength pa  exhibition
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.522812615614384e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "team"
  Begin Offset : 18794
  Content : team
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.510464587947354e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "broadway team"
  Begin Offset : 21894
  Content : broadway team
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 9.499308362137526e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "folks"
  Begin Offset : 5379
  Content : folks
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.491186210652813e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "broadway team"
  Begin Offset : 23929
  Content : broadway team
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.489134390605614e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cube pa exhibition"
  Begin Offset : 24760
  Content : cube pa  exhibition
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.489134390605614e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "broadway team"
  Begin Offset : 26743
  Content : broadway team
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.479785512667149e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "broadway team"
  Begin Offset : 32381
  Content : broadway team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.455576218897477e-05
Sentiment: 

Name: "team"
  Begin Offset : 32254
  Content : team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.455576218897477e-05
Sentiment: 

Name: "cirquebijou amp lambethacademy students"
  Begin Offset : 9979
  Content : cirquebijou amp lambethacademy students
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.45532665355131e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "team"
  Begin Offset : 5400
  Content : team
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.417688852408901e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "folk"
  Begin Offset : 11238
  Content : folk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.410514030605555e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "postcardslond1 piccadillycircus"
  Begin Offset : 37038
  Content : postcardslond1  piccadillycircus
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 37019
  Content : lumiere festival
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.402634896105155e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.6000000238418579


Name: "simon corder"
  Begin Offset : 62220
  Content : simon corder
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 62193
  Content : aist amp lighting designer
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 101771
  Content : simon corder
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 101758
  Content : check bough1
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.338735981145874e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.30000001192092896


Name: "transforms"
  Begin Offset : 4150
  Content : transforms
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.322896221419796e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "placemaking"
  Begin Offset : 4428
  Content : placemaking
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.237666381523013e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visit half price entry"
  Begin Offset : 6239
  Content : visit half price entry
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.204996604239568e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 16349
  Content : transforms
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.197612234856933e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "energy"
  Begin Offset : 139098
  Content : energy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 139382
  Content : energy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 142417
  Content : energy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 145586
  Content : energy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.194786980515346e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visit half price entry"
  Begin Offset : 8652
  Content : visit half price entry
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.179735934594646e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "ideas"
  Begin Offset : 8522
  Content : ideas
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.179735934594646e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "transforms"
  Begin Offset : 22852
  Content : transforms
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.165084338746965e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "transforms"
  Begin Offset : 27440
  Content : transforms
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.147702076006681e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "visit half price entry"
  Begin Offset : 13153
  Content : visit half price entry
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.141777263721451e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "transforms"
  Begin Offset : 32014
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.1326714027673e-05
Sentiment: 

Name: "pa neon sculpture"
  Begin Offset : 32113
  Content : pa  neon sculpture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.125473297899589e-05
Sentiment: 

Name: "installations aether dot waterlicht mystery entry"
  Begin Offset : 19822
  Content : installations aether dot waterlicht mystery entry
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.101710020331666e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visit half price entry"
  Begin Offset : 19223
  Content : visit half price entry
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.101710020331666e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "experience"
  Begin Offset : 9267
  Content : experience
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.092408436117694e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp light"
  Begin Offset : 59674
  Content : abi
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 59637
  Content : amp light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.061695891432464e-05
Sentiment: magnitude: 0.10000000149011612


Name: "placemaking"
  Begin Offset : 29305
  Content : placemaking
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.056375711224973e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "experience"
  Begin Offset : 20271
  Content : experience
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.01512466953136e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitor experiences"
  Begin Offset : 29334
  Content : visitor experiences
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.970221097115427e-05
Sentiment: magnitude: 2.299999952316284
score: 0.699999988079071


Name: "wabbey"
  Begin Offset : 19108
  Content : wabbey
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.926735608838499e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "south bank"
  Begin Offset : 95549
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.92330936039798e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "people"
  Begin Offset : 119372
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 144391
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.91419404069893e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chance see"
  Begin Offset : 5696
  Content : chance see
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.902968693291768e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitlondon deeeeelicious meal"
  Begin Offset : 1043
  Content : visitlondon deeeeelicious meal
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.900102693587542e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "album"
  Begin Offset : 1448
  Content : album
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 8.900102693587542e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "wabbey"
  Begin Offset : 25894
  Content : wabbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.897939551388845e-05
Sentiment: 

Name: "light show"
  Begin Offset : 6034
  Content : light show
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.87477581272833e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "return"
  Begin Offset : 10281
  Content : return
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 8.865968266036361e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "south bank"
  Begin Offset : 69927
  Content : south bank
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.85505141923204e-05
Sentiment: 

Name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
  Begin Offset : 61727
  Content : adventuresofjellie jellie lumiere  granarysquare kingscross london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 8.850181620800868e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "fox amp badger stars"
  Begin Offset : 160426
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 162625
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 166340
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 167776
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 168054
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 168110
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 170299
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.842048555379733e-05
Sentiment: 

Name: "videography musicvideo"
  Begin Offset : 2834
  Content : videography musicvideo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.822906238492578e-05
Sentiment: 

Name: "photos"
  Begin Offset : 15692
  Content : photos
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 8.820310176815838e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "newwestend"
  Begin Offset : 21578
  Content : newwestend
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.761647040955722e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "mickfusion highlights"
  Begin Offset : 3196
  Content : mickfusion  highlights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.724327199161053e-05
Sentiment: 

Name: "mickfusion highlights"
  Begin Offset : 2114
  Content : mickfusion  highlights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.724327199161053e-05
Sentiment: 

Name: "mickfusion highlights"
  Begin Offset : 3104
  Content : mickfusion  highlights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.724327199161053e-05
Sentiment: 

Name: "londoners"
  Begin Offset : 58373
  Content : londoners
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.720729238120839e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light transformations"
  Begin Offset : 33284
  Content : light transformations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.693692507222295e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  Begin Offset : 8116
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.666590292705223e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aworks"
  Begin Offset : 22579
  Content : aworks
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.639606676297262e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "daan roosegaarde granary square"
  Begin Offset : 3597
  Content : daan roosegaarde granary square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.609291398897767e-05
Sentiment: 

Name: "closures"
  Begin Offset : 4379
  Content : closures
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.580370922572911e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "wrap"
  Begin Offset : 16284
  Content : wrap
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.564213203499094e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "neon"
  Begin Offset : 6491
  Content : neon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.550025813747197e-05
Sentiment: 

Name: "westminsterabbey london westminster abbey"
  Begin Offset : 17619
  Content : westminsterabbey london westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 8.547463221475482e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey"
  Begin Offset : 17480
  Content : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 8.547463221475482e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "someone"
  Begin Offset : 8844
  Content : someone
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.526562305632979e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "think"
  Begin Offset : 25121
  Content : think
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.52551675052382e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon"
  Begin Offset : 36924
  Content : lumierelondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 8.521787822246552e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "lumierelondon"
  Begin Offset : 43933
  Content : lumierelondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.500753756379709e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon"
  Begin Offset : 47160
  Content : lumierelondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.4961015090812e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "shots"
  Begin Offset : 15601
  Content : shots
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.474406058667228e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "southbank"
  Begin Offset : 12733
  Content : southbank
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.471582259517163e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "handful installations"
  Begin Offset : 106659
  Content : handful installations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.442311809631065e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "shopping guide"
  Begin Offset : 9898
  Content : shopping guide
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.424143743468449e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "someone"
  Begin Offset : 28309
  Content : someone
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.41912769828923e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "streets buildings"
  Begin Offset : 34698
  Content : streets buildings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 36118
  Content : streets buildings
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.40275315567851e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "photos"
  Begin Offset : 48611
  Content : photos
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.386150875594467e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lights"
  Begin Offset : 34628
  Content : lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.353068551514298e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light"
  Begin Offset : 34749
  Content : light
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 8.353068551514298e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "festival light"
  Begin Offset : 35615
  Content : festival light
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.34719103295356e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "legacy"
  Begin Offset : 15101
  Content : legacy
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.340177737409249e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lights"
  Begin Offset : 40499
  Content : lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.336367318406701e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "check lights"
  Begin Offset : 40197
  Content : check  lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.336367318406701e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival lights"
  Begin Offset : 43446
  Content : festival lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.331359276780859e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust legacy"
  Begin Offset : 17826
  Content : aichoketrust legacy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.328088733833283e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 44022
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.326587703777477e-05
Sentiment: 

Name: "lights"
  Begin Offset : 46830
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.322030771523714e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "light"
  Begin Offset : 46349
  Content : light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.322030771523714e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "festival lights"
  Begin Offset : 46457
  Content : festival lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.322030771523714e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "night lights"
  Begin Offset : 50279
  Content : night  lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.313489524880424e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "residents"
  Begin Offset : 63109
  Content : residents
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 85525
  Content : residents
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.309887925861403e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 53158
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.309474651468918e-05
Sentiment: 

Name: "victoriabid"
  Begin Offset : 2601
  Content : victoriabid
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.304161747219041e-05
Sentiment: 

Name: "lights"
  Begin Offset : 55924
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.301894558826461e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "light"
  Begin Offset : 57105
  Content : light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.301894558826461e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lights"
  Begin Offset : 56303
  Content : lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.301894558826461e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "check lights"
  Begin Offset : 57592
  Content : check  lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.298307511722669e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light"
  Begin Offset : 57934
  Content : light
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.298307511722669e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "amp light"
  Begin Offset : 60406
  Content : amp light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.294843428302556e-05
Sentiment: 

Name: "lights"
  Begin Offset : 61381
  Content : lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.294843428302556e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "amp light"
  Begin Offset : 61139
  Content : amp light
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.294843428302556e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amp light"
  Begin Offset : 61251
  Content : amp light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.294843428302556e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "sound amp light"
  Begin Offset : 60867
  Content : sound amp light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.294843428302556e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 63294
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.291495032608509e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 62379
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.291495032608509e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lights"
  Begin Offset : 64981
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.28825359349139e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 64187
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.28825359349139e-05
Sentiment: 

Name: "chance"
  Begin Offset : 9163
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.276679000118747e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "regent street check"
  Begin Offset : 131437
  Content : regent street check
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137082
  Content : regent street check
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.248549420386553e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "world"
  Begin Offset : 25140
  Content : world
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.221692405641079e-05
Sentiment: 

Name: "pictures"
  Begin Offset : 28504
  Content : pictures
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.214192348532379e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 28243
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.172392699634656e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "spell stpancrasint planning"
  Begin Offset : 7845
  Content : spell   stpancrasint planning
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.122133294818923e-05
Sentiment: 

Name: "care"
  Begin Offset : 32697
  Content : care
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.090637857094407e-05
Sentiment: 

Name: "plan"
  Begin Offset : 11847
  Content : plan
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 8.081676787696779e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "stewards"
  Begin Offset : 51966
  Content : stewards
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 57036
  Content : stewards
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 59724
  Content : stewards
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.019858069019392e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "check pieces"
  Begin Offset : 24523
  Content : check pieces
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.012982289073989e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 144629
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.956555782584473e-05
Sentiment: 

Name: "light festival"
  Begin Offset : 151194
  Content : light festival
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 7.952713349368423e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "check promenade south park"
  Begin Offset : 5174
  Content : check promenade south park
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.916954200481996e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "legacy"
  Begin Offset : 21006
  Content : legacy
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 7.908207044238225e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "legacy"
  Begin Offset : 22236
  Content : legacy
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 7.908207044238225e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "instillations"
  Begin Offset : 64339
  Content : instillations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.896927854744717e-05
Sentiment: 

Name: "colour"
  Begin Offset : 116803
  Content : colour
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 152563
  Content : colour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.894131704233587e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "canonukandie visitlondon aichoketrust southbanklondon"
  Begin Offset : 80782
  Content : canonukandie visitlondon aichoketrust southbanklondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 137584
  Content : aichoketrust  southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 137561
  Content : chance feature gallery
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.893941074144095e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pa neon sculpture"
  Begin Offset : 29967
  Content : pa  neon sculpture
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.878057658672333e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "pa neon sculpture"
  Begin Offset : 31916
  Content : pa  neon sculpture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.871798152336851e-05
Sentiment: 

Name: "image"
  Begin Offset : 8947
  Content : image
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.867304520914331e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "tuesdaythoughts"
  Begin Offset : 3779
  Content : tuesdaythoughts
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.846068911021575e-05
Sentiment: 

Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si è conclusa ed è stata semplicemente meravigliosa ecco alcune foto di leicester square"
  Begin Offset : 20457
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si è conclusa ed è stata semplicemente meravigliosa ecco alcune foto di leicester square
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 7.821863982826471e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "human biology"
  Begin Offset : 1565
  Content : human biology
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.816474681021646e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "frogs amp toad"
  Begin Offset : 991
  Content : frogs amp toad
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.816474681021646e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "freedom panorama"
  Begin Offset : 1402
  Content : freedom panorama
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.816474681021646e-05
Sentiment: 

Name: "shitshow"
  Begin Offset : 756
  Content : shitshow
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.816474681021646e-05
Sentiment: 

Name: "aist daan roosegaarde"
  Begin Offset : 242
  Content : aist daan roosegaarde
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 52882
  Content : daan roosegaarde
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 69275
  Content : daan roosegaarde
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.803994958521798e-05
Sentiment: 

Name: "light"
  Begin Offset : 62302
  Content : light
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.796330464771017e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "check promenade south park"
  Begin Offset : 30751
  Content : check promenade south park
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.76157685322687e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust wrap"
  Begin Offset : 33406
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 70214
  Content : aichoketrust wrap
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.742268644506112e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "park"
  Begin Offset : 5753
  Content : park
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.724334136582911e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival light"
  Begin Offset : 55010
  Content : festival light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.714016828685999e-05
Sentiment: 

Name: "hope"
  Begin Offset : 3643
  Content : hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.705643656663597e-05
Sentiment: 

Name: "works"
  Begin Offset : 36461
  Content : works
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.704009476583451e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon"
  Begin Offset : 43585
  Content : visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.697518594795838e-05
Sentiment: 

Name: "redbridge"
  Begin Offset : 16500
  Content : redbridge
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 23003
  Content : redbridge
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 75383
  Content : redbridge
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 75539
  Content : redbridge
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 7.672298670513555e-05
Sentiment: magnitude: 1.5


Name: "londongramer"
  Begin Offset : 98356
  Content : londongramer
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.654989167349413e-05
Sentiment: 

Name: "umbrellas"
  Begin Offset : 8445
  Content : umbrellas
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.619177631568164e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "fun"
  Begin Offset : 58795
  Content : fun
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 101892
  Content : fun
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.594149064971134e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "violets"
  Begin Offset : 35375
  Content : violets
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 38801
  Content : violets
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.593997725052759e-05
Sentiment: magnitude: 0.30000001192092896


Name: "windows"
  Begin Offset : 14608
  Content : windows
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.5752024713438e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "southbanklondon"
  Begin Offset : 47581
  Content : southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.561121310573071e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 100991
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.554829790024087e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "umbrellas"
  Begin Offset : 23605
  Content : umbrellas
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.537469355156645e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 34963
  Content : installations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 7.483390800189227e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 39078
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.473146979464218e-05
Sentiment: 

Name: "installations"
  Begin Offset : 43644
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.459666085196659e-05
Sentiment: magnitude: 0.699999988079071
score: 0.20000000298023224


Name: "south bank installation"
  Begin Offset : 47602
  Content : south bank installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.451677083736286e-05
Sentiment: 

Name: "installation"
  Begin Offset : 51750
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.444334914907813e-05
Sentiment: 

Name: "south bank installation"
  Begin Offset : 56490
  Content : south bank installation
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.437543536070734e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "south bank installation"
  Begin Offset : 56378
  Content : south bank installation
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.437543536070734e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation"
  Begin Offset : 58759
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.43432974559255e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "light show"
  Begin Offset : 23634
  Content : light show
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.433823338942602e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "work"
  Begin Offset : 10442
  Content : work
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.433588325511664e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installations"
  Begin Offset : 59940
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "south bank installation"
  Begin Offset : 61517
  Content : south bank installation
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation"
  Begin Offset : 61427
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "south bank installation"
  Begin Offset : 61629
  Content : south bank installation
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 59812
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.699999988079071
score: 0.20000000298023224


Name: "south bank installation"
  Begin Offset : 60505
  Content : south bank installation
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installations"
  Begin Offset : 61070
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.4312265496701e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "south bank installation"
  Begin Offset : 61799
  Content : south bank installation
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.428225944750011e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visit"
  Begin Offset : 147688
  Content : visit
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 162998
  Content : visit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.42592237656936e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 65507
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.42532211006619e-05
Sentiment: 

Name: "installations"
  Begin Offset : 65030
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.42532211006619e-05
Sentiment: 

Name: "gin cocktails"
  Begin Offset : 7409
  Content : gin cocktails
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.372828986262903e-05
Sentiment: 

Name: "lights"
  Begin Offset : 110856
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.362983888015151e-05
Sentiment: 

Name: "wabbey lumierelondon2018 visitlondon jakubkrupa"
  Begin Offset : 104471
  Content : wabbey lumierelondon2018  visitlondon  jakubkrupa
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 104466
  Content : life
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 106429
  Content : life
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 108398
  Content : life
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 109998
  Content : life
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.344094046857208e-05
Sentiment: magnitude: 2.299999952316284
score: 0.4000000059604645


Name: "visitlondon visitgreatbritain travelgram brandgreatbritain thelondonguidee"
  Begin Offset : 71586
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 71824
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72062
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72300
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72521
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72742
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 72963
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
  Begin Offset : 73184
  Content : visitlondon visitgreatbritain travelgram brandgreatbritain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 7.341568561969325e-05
Sentiment: magnitude: 3.5999999046325684
score: -0.4000000059604645


Name: "shots"
  Begin Offset : 11461
  Content : shots
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.336104317801073e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "city"
  Begin Offset : 41314
  Content : city
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.319268479477614e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "catch shots"
  Begin Offset : 14957
  Content : catch shots
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 7.310158252948895e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "shots"
  Begin Offset : 15585
  Content : shots
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.310158252948895e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "glory"
  Begin Offset : 11180
  Content : glory
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 66757
  Content : glory
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 79303
  Content : glory
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 135685
  Content : glory
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 136064
  Content : glory
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 136974
  Content : glory
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 140104
  Content : glory
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 141786
  Content : glory
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 166964
  Content : glory
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.303149322979152e-05
Sentiment: magnitude: 4.900000095367432
score: 0.4000000059604645


Name: "lumierelondon fun"
  Begin Offset : 18216
  Content : lumierelondon  fun
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.290096255019307e-05
Sentiment: 

Name: "everyone"
  Begin Offset : 21460
  Content : everyone
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 7.281544094439596e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "sight"
  Begin Offset : 28978
  Content : sight
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.259949779836461e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "buses"
  Begin Offset : 27325
  Content : buses
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.259949779836461e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "veigo visitlondon"
  Begin Offset : 40076
  Content : veigo   visitlondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.242170249810442e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumiere visitlondon"
  Begin Offset : 48526
  Content : lumiere  visitlondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.225926674436778e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon"
  Begin Offset : 57194
  Content : visitlondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.212221680674702e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "amp community"
  Begin Offset : 9696
  Content : amp community
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.211240153992549e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "communities"
  Begin Offset : 10242
  Content : communities
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.195065700216219e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "jopocock nightlife"
  Begin Offset : 55462
  Content : jopocock nightlife
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.186246511992067e-05
Sentiment: 

Name: "look"
  Begin Offset : 32707
  Content : look
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.177283259807155e-05
Sentiment: 

Name: "scenes"
  Begin Offset : 3868
  Content : scenes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.143907714635134e-05
Sentiment: 

Name: "canon"
  Begin Offset : 2257
  Content : canon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.143907714635134e-05
Sentiment: 

Name: "lights"
  Begin Offset : 69828
  Content : lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.141689275158569e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "trip"
  Begin Offset : 84280
  Content : trip
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 86635
  Content : trip
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.11017637513578e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "chance"
  Begin Offset : 147708
  Content : chance
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 163018
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.108723366400227e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "worry head"
  Begin Offset : 6780
  Content : worry head
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.083182572387159e-05
Sentiment: 

Name: "canon"
  Begin Offset : 6576
  Content : canon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.083182572387159e-05
Sentiment: 

Name: "visitlondon"
  Begin Offset : 57305
  Content : visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.036744500510395e-05
Sentiment: 

Name: "chance"
  Begin Offset : 37475
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 7.027843093965203e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "chance"
  Begin Offset : 41487
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.018729957053438e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 41759
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 7.014513539616019e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "chance"
  Begin Offset : 45098
  Content : chance
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.010495755821466e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "chance"
  Begin Offset : 47514
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.006659143371508e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "areas"
  Begin Offset : 18254
  Content : areas
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 7.003699283814058e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "chance"
  Begin Offset : 50320
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.999467586865649e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 51169
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.999467586865649e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 51826
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.996087176958099e-05
Sentiment: 

Name: "chance"
  Begin Offset : 53431
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.992836279096082e-05
Sentiment: 

Name: "fitzrovia area"
  Begin Offset : 22614
  Content : fitzrovia area
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.987990491325036e-05
Sentiment: 

Name: "circus visit website"
  Begin Offset : 2196
  Content : circus visit website
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.987813685555011e-05
Sentiment: 

Name: "world bubble"
  Begin Offset : 2156
  Content : world bubble
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.987813685555011e-05
Sentiment: 

Name: "weekend festival"
  Begin Offset : 37133
  Content : weekend  festival
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.985137588344514e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust amp"
  Begin Offset : 39603
  Content : aichoketrust amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.964720523683354e-05
Sentiment: 

Name: "cirquebijou amp"
  Begin Offset : 40979
  Content : cirquebijou amp
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.964720523683354e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "westend amp"
  Begin Offset : 43702
  Content : westend amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.956550350878388e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "amp"
  Begin Offset : 45717
  Content : amp
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.952742842258886e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 46237
  Content : amp
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.952742842258886e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "cirquebijou amp"
  Begin Offset : 45981
  Content : cirquebijou amp
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.952742842258886e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 52343
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.942252366570756e-05
Sentiment: 

Name: "check light"
  Begin Offset : 36899
  Content : check light
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.939236482139677e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "amp"
  Begin Offset : 55368
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.93591937306337e-05
Sentiment: 

Name: "amp"
  Begin Offset : 58250
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.932922406122088e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon"
  Begin Offset : 109075
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 112942
  Content : lumierelondon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.930133531568572e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.10000000149011612


Name: "amp"
  Begin Offset : 63062
  Content : amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.927230424480513e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "cirquebijou amp"
  Begin Offset : 62668
  Content : cirquebijou amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.927230424480513e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "cirquebijou amp"
  Begin Offset : 62041
  Content : cirquebijou amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.927230424480513e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "cirquebijou amp"
  Begin Offset : 63516
  Content : cirquebijou amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.927230424480513e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "purple rain amp"
  Begin Offset : 64118
  Content : purple rain amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.924522313056514e-05
Sentiment: 

Name: "check light"
  Begin Offset : 47135
  Content : check light
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.918319559190422e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "wabbey westminsterabbey"
  Begin Offset : 17720
  Content : wabbey westminsterabbey
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 25970
  Content : wabbey westminsterabbey
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 6.880988803459331e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "evening lots"
  Begin Offset : 12250
  Content : evening  lots
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.8633773480542e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lots"
  Begin Offset : 14040
  Content : lots
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.8633773480542e-05
Sentiment: 

Name: "video website"
  Begin Offset : 19069
  Content : video website
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.850668432889506e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "instagram sneequaye london"
  Begin Offset : 50079
  Content : instagram sneequaye london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49918
  Content : instagram sneequaye london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49751
  Content : instagram sneequaye london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 6.833217048551887e-05
Sentiment: magnitude: 1.7999999523162842
score: 0.6000000238418579


Name: "lightinstallation landscape"
  Begin Offset : 2263
  Content : lightinstallation landscape
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.82394384057261e-05
Sentiment: 

Name: "visitlondon dot"
  Begin Offset : 32466
  Content : visitlondon dot
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.811127968830988e-05
Sentiment: 

Name: "soho"
  Begin Offset : 102174
  Content : soho
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 102903
  Content : soho
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.80423472658731e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "flower"
  Begin Offset : 4272
  Content : flower
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.789952021790668e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "wabbey westminsterabbey"
  Begin Offset : 23427
  Content : wabbey westminsterabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 67558
  Content : wabbey westminsterabbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.772725464543328e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "photos festival"
  Begin Offset : 37210
  Content : photos festival
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.73176473355852e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival"
  Begin Offset : 39277
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.727283471263945e-05
Sentiment: 

Name: "qpark_uk light festival"
  Begin Offset : 42486
  Content : qpark_uk  light festival
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.718996883137152e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "light festival"
  Begin Offset : 43390
  Content : light festival
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.718996883137152e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "chinese lantern festival"
  Begin Offset : 42288
  Content : chinese lantern festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.718996883137152e-05
Sentiment: 

Name: "lighting festival"
  Begin Offset : 42434
  Content : lighting festival
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.718996883137152e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "festival"
  Begin Offset : 42205
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.718996883137152e-05
Sentiment: 

Name: "festival"
  Begin Offset : 44930
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.715147901559249e-05
Sentiment: 

Name: "festival"
  Begin Offset : 48857
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.707955617457628e-05
Sentiment: 

Name: "festival"
  Begin Offset : 47672
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.707955617457628e-05
Sentiment: 

Name: "blog post"
  Begin Offset : 17909
  Content : blog post
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.698700599372387e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "blog post"
  Begin Offset : 17764
  Content : blog post
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.698700599372387e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "henley festival"
  Begin Offset : 55346
  Content : henley festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.695232877973467e-05
Sentiment: 

Name: "festival"
  Begin Offset : 56560
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.695232877973467e-05
Sentiment: 

Name: "festival"
  Begin Offset : 56448
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.695232877973467e-05
Sentiment: 

Name: "festival"
  Begin Offset : 59250
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.692339957226068e-05
Sentiment: 

Name: "festival"
  Begin Offset : 59166
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.692339957226068e-05
Sentiment: 

Name: "la la land"
  Begin Offset : 18888
  Content : la la land
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.690013833576813e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival"
  Begin Offset : 61587
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.689545989502221e-05
Sentiment: 

Name: "festival"
  Begin Offset : 60575
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.689545989502221e-05
Sentiment: 

Name: "festival"
  Begin Offset : 61699
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.686845154035836e-05
Sentiment: 

Name: "festival"
  Begin Offset : 61869
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.686845154035836e-05
Sentiment: 

Name: "life"
  Begin Offset : 28761
  Content : life
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.662348459940404e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "sounds"
  Begin Offset : 1914
  Content : sounds
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.651264266110957e-05
Sentiment: 

Name: "weather"
  Begin Offset : 3505
  Content : weather
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.651264266110957e-05
Sentiment: 

Name: "order prints"
  Begin Offset : 2221
  Content : order prints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.651264266110957e-05
Sentiment: 

Name: "cou use"
  Begin Offset : 5802
  Content : cou use
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.618133193114772e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "centre"
  Begin Offset : 64419
  Content : centre
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 108526
  Content : centre
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.617612234549597e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "weather"
  Begin Offset : 7627
  Content : weather
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.594725709874183e-05
Sentiment: 

Name: "amp space"
  Begin Offset : 11971
  Content : amp space
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.561876216437668e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "flower"
  Begin Offset : 5444
  Content : flower
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.543657946167514e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "jacob ladder"
  Begin Offset : 14227
  Content : jacob ladder
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.538668094435707e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "check promenade"
  Begin Offset : 16032
  Content : check promenade
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.538668094435707e-05
Sentiment: 

Name: "spaces"
  Begin Offset : 14731
  Content : spaces
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.538668094435707e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sound"
  Begin Offset : 14789
  Content : sound
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.538668094435707e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "ladder"
  Begin Offset : 14329
  Content : ladder
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.538668094435707e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "kids"
  Begin Offset : 14420
  Content : kids
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.535153806908056e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "justice"
  Begin Offset : 16866
  Content : justice
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.52918970445171e-05
Sentiment: 

Name: "love london lumiere london"
  Begin Offset : 98953
  Content : love london  lumiere london
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 6.520939496112987e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "londoners"
  Begin Offset : 104277
  Content : londoners
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.517965084640309e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "producer director cameraman promo coaching music video london"
  Begin Offset : 103425
  Content : producer director cameraman promo coaching music video london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.517965084640309e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierelondon london"
  Begin Offset : 104697
  Content : lumierelondon  london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.51651862426661e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "london"
  Begin Offset : 108292
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.515098357340321e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "doorways"
  Begin Offset : 28724
  Content : doorways
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.514555570902303e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "subject methinks london"
  Begin Offset : 112235
  Content : subject methinks london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.512332038255408e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "evening london"
  Begin Offset : 113282
  Content : evening london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.5109838033095e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "candy floss candyfloss london"
  Begin Offset : 114434
  Content : candy floss candyfloss london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.5109838033095e-05
Sentiment: 

Name: "work light"
  Begin Offset : 116104
  Content : work light
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.507118814624846e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "streets london"
  Begin Offset : 119398
  Content : streets london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.507072976091877e-05
Sentiment: 

Name: "success aichoketrust"
  Begin Offset : 35803
  Content : success  aichoketrust
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.49449648335576e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "montage"
  Begin Offset : 27171
  Content : montage
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.49375724606216e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "london lumiere"
  Begin Offset : 102639
  Content : london lumiere
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.48986897431314e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "mickfusion"
  Begin Offset : 31320
  Content : mickfusion
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.488242070190609e-05
Sentiment: 

Name: "londonisopen"
  Begin Offset : 65631
  Content : londonisopen
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.48127097520046e-05
Sentiment: 

Name: "king cross london"
  Begin Offset : 75340
  Content : king cross london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.467567436629906e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "king cross london"
  Begin Offset : 75496
  Content : king cross london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.467567436629906e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "producer director cameraman promo coaching music video london"
  Begin Offset : 78990
  Content : producer director cameraman promo coaching music video london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.463483441621065e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "video lumiere london"
  Begin Offset : 82116
  Content : video lumiere london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.459600263042375e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "aichoketrust"
  Begin Offset : 57661
  Content : aichoketrust
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.456461414927617e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "mayoroflondon"
  Begin Offset : 51940
  Content : mayoroflondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.452778325183317e-05
Sentiment: 

Name: "mayoroflondon"
  Begin Offset : 57010
  Content : mayoroflondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.446891347877681e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "mayoroflondon"
  Begin Offset : 59698
  Content : mayoroflondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.441415462177247e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sights"
  Begin Offset : 1902
  Content : sights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.414420204237103e-05
Sentiment: 

Name: "event"
  Begin Offset : 35018
  Content : event
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.390213093254715e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "parking event"
  Begin Offset : 42523
  Content : parking event
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.373604264808819e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "performance event"
  Begin Offset : 42467
  Content : performance event
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.373604264808819e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "rates"
  Begin Offset : 27823
  Content : rates
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.368164758896455e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lighting london londonisopen"
  Begin Offset : 96945
  Content : lighting london londonisopen
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.36377080809325e-05
Sentiment: 

Name: "buildings"
  Begin Offset : 14624
  Content : buildings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.359000690281391e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "streets buildings"
  Begin Offset : 14702
  Content : streets buildings
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.359000690281391e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "others"
  Begin Offset : 18269
  Content : others
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.341548578348011e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "waterloo"
  Begin Offset : 26206
  Content : waterloo
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 64494
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 108601
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 121564
  Content : waterloo
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 138244
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 144285
  Content : waterloo
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 146575
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 151842
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 152989
  Content : piccadilly waterloo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.323990965029225e-05
Sentiment: magnitude: 0.5


Name: "video amp"
  Begin Offset : 112870
  Content : video amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.303568807197735e-05
Sentiment: 

Name: "bottom"
  Begin Offset : 8919
  Content : bottom
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.300731911323965e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "mickfusion"
  Begin Offset : 2578
  Content : mickfusion
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.254037725739181e-05
Sentiment: 

Name: "colours rainbow amp"
  Begin Offset : 34208
  Content : colours rainbow amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 6.246467091841623e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "kings"
  Begin Offset : 59266
  Content : kings
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.236114859348163e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival"
  Begin Offset : 117731
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.234047032194212e-05
Sentiment: 

Name: "others"
  Begin Offset : 13298
  Content : others
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.21449071331881e-05
Sentiment: 

Name: "others"
  Begin Offset : 24953
  Content : others
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.16729084867984e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "saints"
  Begin Offset : 104453
  Content : saints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 106416
  Content : saints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 108385
  Content : saints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 109985
  Content : saints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.162616773508489e-05
Sentiment: 

Name: "pictures"
  Begin Offset : 16846
  Content : pictures
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.145546649349853e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "extravaganza magic"
  Begin Offset : 21322
  Content : extravaganza magic
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 6.143713108031079e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "mvpicsss"
  Begin Offset : 26326
  Content : mvpicsss
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.142771599115804e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "valeria_amodeo biuk"
  Begin Offset : 41478
  Content : biuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 44261
  Content : valeria_amodeo  biuk
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 6.142351048765704e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "blog"
  Begin Offset : 23533
  Content : blog
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.137132731964812e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "extravaganza magic"
  Begin Offset : 26359
  Content : extravaganza magic
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.131085683591664e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "car bus"
  Begin Offset : 27235
  Content : car bus
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.12549192737788e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "light bulbs"
  Begin Offset : 33224
  Content : light bulbs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.115426367614418e-05
Sentiment: 

Name: "story"
  Begin Offset : 10490
  Content : story
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.113982817623764e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon"
  Begin Offset : 25447
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 25761
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 6.110576941864565e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "voyage installation aichoketrust piece"
  Begin Offset : 11909
  Content : voyage  installation aichoketrust piece
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.088106965762563e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "prank calls lights"
  Begin Offset : 121127
  Content : prank calls  lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 6.041204687790014e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival public"
  Begin Offset : 10201
  Content : festival public
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.997853440931067e-05
Sentiment: 

Name: "violence"
  Begin Offset : 13409
  Content : violence
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 5.9730497014243156e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "londonwhispers"
  Begin Offset : 122958
  Content : londonwhispers
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.968428376945667e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "london"
  Begin Offset : 123901
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.967288961983286e-05
Sentiment: 

Name: "camillachild london"
  Begin Offset : 130138
  Content : camillachild london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.963973671896383e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere london"
  Begin Offset : 132618
  Content : lumiere london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.962901559541933e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "londoners"
  Begin Offset : 135778
  Content : londoners
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.9608035371638834e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "london"
  Begin Offset : 139263
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.959776899544522e-05
Sentiment: 

Name: "london"
  Begin Offset : 138431
  Content : london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.959776899544522e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumiere london"
  Begin Offset : 145253
  Content : lumiere london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.956781023996882e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation light spirit london"
  Begin Offset : 144957
  Content : installation light spirit  london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.956781023996882e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lighting london"
  Begin Offset : 149139
  Content : lighting london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.954850712441839e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "installation light spirit london"
  Begin Offset : 148435
  Content : installation light spirit  london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.954850712441839e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lumiere london"
  Begin Offset : 151344
  Content : lumiere london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.953904474154115e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lumiere london"
  Begin Offset : 150953
  Content : lumiere london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.953904474154115e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation light spirit london"
  Begin Offset : 152336
  Content : installation light spirit  london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.9529702411964536e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "london"
  Begin Offset : 154088
  Content : london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.952048013568856e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation light spirit london"
  Begin Offset : 154356
  Content : installation light spirit  london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.952048013568856e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "nkirkwoodlondon celebration"
  Begin Offset : 18799
  Content : nkirkwoodlondon celebration
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.9468682593433186e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "nkirkwoodlondon celebration"
  Begin Offset : 18967
  Content : nkirkwoodlondon celebration
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.9468682593433186e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "destinations"
  Begin Offset : 22361
  Content : destinations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.939891707384959e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "fear"
  Begin Offset : 25918
  Content : fear
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.9276833781041205e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "piccadilly circus"
  Begin Offset : 11993
  Content : piccadilly circus
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 40179
  Content : piccadilly circus
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 47897
  Content : piccadilly circus
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 57574
  Content : piccadilly circus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 83275
  Content : piccadilly circus
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 131514
  Content : piccadilly circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 152144
  Content : piccadilly circus
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 152116
  Content : lumierelondon regent street
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 98060
  Content : picadilly circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 113632
  Content : snaaaake  london piccadilly circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 125955
  Content : piccadilly circus
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 125948
  Content : voyage
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 129898
  Content : piccadilly circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 129891
  Content : voyage
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.9190584579482675e-05
Sentiment: magnitude: 4.199999809265137
score: 0.30000001192092896


Name: "nkirkwoodlondon celebration"
  Begin Offset : 29117
  Content : nkirkwoodlondon celebration
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.917245289310813e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "human interaction"
  Begin Offset : 32148
  Content : human interaction
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.9125435655005276e-05
Sentiment: 

Name: "human interaction"
  Begin Offset : 31331
  Content : human interaction
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.9125435655005276e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 95285
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.9095742471981794e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "video electricpedals"
  Begin Offset : 2526
  Content : video electricpedals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "video electricpedals"
  Begin Offset : 2062
  Content : video electricpedals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "front"
  Begin Offset : 2567
  Content : front
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "front"
  Begin Offset : 3093
  Content : front
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "video electricpedals"
  Begin Offset : 3052
  Content : video electricpedals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "video electricpedals"
  Begin Offset : 3144
  Content : video electricpedals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.841399251949042e-05
Sentiment: 

Name: "director"
  Begin Offset : 120626
  Content : director
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 138498
  Content : director
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.838119614054449e-05
Sentiment: magnitude: 0.20000000298023224


Name: "thousands"
  Begin Offset : 5422
  Content : thousands
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.8123016060562804e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "dismantling thousands"
  Begin Offset : 4238
  Content : dismantling thousands
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.8123016060562804e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "estate"
  Begin Offset : 5542
  Content : estate
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.8123016060562804e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "priorconstruct lumiere london"
  Begin Offset : 78154
  Content : priorconstruct lumiere london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 121477
  Content : priorconstruct lumiere london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 5.7964549341704696e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "canonukandie visitlondon aichoketrust southbanklondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  Begin Offset : 39957
  Content : canonukandie visitlondon aichoketrust southbanklondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 65427
  Content : visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 87733
  Content : lumierelondon  visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 5.795671313535422e-05
Sentiment: magnitude: 0.699999988079071
score: 0.20000000298023224


Name: "wildlife"
  Begin Offset : 10925
  Content : wildlife
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.7628934882814065e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "conditions"
  Begin Offset : 109525
  Content : conditions
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
  Begin Offset : 111857
  Content : conditions
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
  Begin Offset : 113084
  Content : conditions
  Magnitude : 0.8999999761581421
  Sentiment : -0.8999999761581421
  Type : 2
Salience: 5.7467255828669295e-05
Sentiment: magnitude: 2.299999952316284
score: -0.699999988079071


Name: "lumiere"
  Begin Offset : 93592
  Content : lumiere
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.744572990806773e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "field lumierelondon"
  Begin Offset : 100146
  Content : field  lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.7404518884141e-05
Sentiment: 

Name: "nursecommunity lumiere lumierelondon"
  Begin Offset : 100520
  Content : nursecommunity lumiere lumierelondon
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 5.739130574511364e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "lumierelondon"
  Begin Offset : 105179
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.7365607062820345e-05
Sentiment: 

Name: "neon lumierelondon"
  Begin Offset : 107227
  Content : neon lumierelondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.735310332966037e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumierelondon"
  Begin Offset : 110179
  Content : lumierelondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.734081787522882e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "london lumierelondon"
  Begin Offset : 114215
  Content : london lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.731687997467816e-05
Sentiment: 

Name: "lights darkness visitlondon london london lumiere"
  Begin Offset : 117616
  Content : lights darkness  visitlondon london  london lumiere
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.729373879148625e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london"
  Begin Offset : 35025
  Content : londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 5.7228771765949205e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature westminsterabbey london londonlife lovelondon londoners"
  Begin Offset : 33999
  Content : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  westminsterabbey london londonlife lovelondon londoners
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 5.7228771765949205e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon londontheinside"
  Begin Offset : 38078
  Content : lumierelondon  londontheinside
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 5.7150427892338485e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london"
  Begin Offset : 41952
  Content : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 5.7080025726463646e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "song"
  Begin Offset : 28153
  Content : song
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.7030676543945447e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon"
  Begin Offset : 70397
  Content : lumierelondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.699236862710677e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "presenter freelancer"
  Begin Offset : 30259
  Content : presenter freelancer
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.698223685612902e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london"
  Begin Offset : 50445
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 5.695758591173217e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "visitlondon timeoutlondon londonist london ldn londoneye"
  Begin Offset : 50159
  Content : visitlondon timeoutlondon londonist london ldn londoneye
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 5.695758591173217e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "thousands"
  Begin Offset : 32276
  Content : thousands
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.6936962209874764e-05
Sentiment: 

Name: "electricpedals"
  Begin Offset : 31743
  Content : electricpedals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.6936962209874764e-05
Sentiment: 

Name: "lumierelondon londonlife"
  Begin Offset : 51780
  Content : lumierelondon londonlife
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.6930079153971747e-05
Sentiment: 

Name: "installation lumiere"
  Begin Offset : 79456
  Content : installation  lumiere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.688141391146928e-05
Sentiment: 

Name: "lumierelondon"
  Begin Offset : 81754
  Content : lumierelondon
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.686453732778318e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
  Begin Offset : 61285
  Content : adventuresofjellie jellie lumiere  granarysquare kingscross london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 5.682983100996353e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere adventuresofjellie jellie lumiere granarysquare kingscross london lumiere adventuresofjellie jellie lumiere granarysquare kingscross london"
  Begin Offset : 62395
  Content : lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 5.680688263964839e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon visitlondon london"
  Begin Offset : 65233
  Content : lumierelondon  visitlondon london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.6784676417009905e-05
Sentiment: 

Name: "photograph fish phone box badger lumierelondon"
  Begin Offset : 90825
  Content : photograph fish phone box  badger  lumierelondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.6771092204144225e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "expectations"
  Begin Offset : 45639
  Content : expectations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.657404472003691e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon2018 lights"
  Begin Offset : 102113
  Content : lumierelondon2018 lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.621536911348812e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "southbank lights"
  Begin Offset : 102190
  Content : southbank lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.621536911348812e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lights"
  Begin Offset : 102860
  Content : lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.620266529149376e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "selfie hatmanoflondon wave pa lighting"
  Begin Offset : 103992
  Content : selfie hatmanoflondon wave pa  lighting
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.620266529149376e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "southbank lights"
  Begin Offset : 102919
  Content : southbank lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.620266529149376e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "image lights"
  Begin Offset : 104659
  Content : image lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.619019430014305e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light"
  Begin Offset : 106590
  Content : light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.619019430014305e-05
Sentiment: magnitude: 0.5


Name: "estates"
  Begin Offset : 131481
  Content : estates
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137126
  Content : estates
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.6185348512372e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "lights"
  Begin Offset : 109469
  Content : lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.6165918067563325e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "light"
  Begin Offset : 110674
  Content : light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.6165918067563325e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lights"
  Begin Offset : 111266
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.615409099846147e-05
Sentiment: 

Name: "lights"
  Begin Offset : 112671
  Content : lights
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 5.615409099846147e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "spirit festival lights"
  Begin Offset : 111016
  Content : spirit festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.615409099846147e-05
Sentiment: 

Name: "lights"
  Begin Offset : 112886
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.614247129415162e-05
Sentiment: 

Name: "lighting"
  Begin Offset : 116794
  Content : lighting
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.613104076473974e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "neon lights"
  Begin Offset : 118455
  Content : neon lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.611980304820463e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "nohern lights"
  Begin Offset : 118961
  Content : nohern lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.611980304820463e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lights"
  Begin Offset : 118860
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.611980304820463e-05
Sentiment: 

Name: "mattcooperphoto letsyogalondon regram southbanklondon"
  Begin Offset : 5235
  Content : mattcooperphoto letsyogalondon regram  southbanklondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 5.6070952268783e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "night aichoketrust"
  Begin Offset : 96051
  Content : night aichoketrust
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.599356154561974e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "gallery"
  Begin Offset : 2026
  Content : gallery
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.596888513537124e-05
Sentiment: 

Name: "aichoketrust timeouta londongramer timeoutlondon"
  Begin Offset : 6723
  Content : aichoketrust timeouta londongramer timeoutlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.587263876805082e-05
Sentiment: 

Name: "blue light"
  Begin Offset : 67247
  Content : blue light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.5865075410110876e-05
Sentiment: 

Name: "blue light"
  Begin Offset : 66562
  Content : blue light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.5865075410110876e-05
Sentiment: 

Name: "lights"
  Begin Offset : 70469
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.582460653386079e-05
Sentiment: 

Name: "light"
  Begin Offset : 69684
  Content : light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.582460653386079e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "estate"
  Begin Offset : 7683
  Content : estate
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.581652658293024e-05
Sentiment: 

Name: "estate"
  Begin Offset : 7073
  Content : estate
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.581652658293024e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 73283
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.580524157267064e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival lights"
  Begin Offset : 76592
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.575025352300145e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 79228
  Content : festival lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.573287126026116e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "light"
  Begin Offset : 77757
  Content : light
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 5.573287126026116e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "neon lights"
  Begin Offset : 79587
  Content : neon lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.571592555497773e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "light"
  Begin Offset : 79989
  Content : light
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.571592555497773e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lightning"
  Begin Offset : 80739
  Content : lightning
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.571592555497773e-05
Sentiment: 

Name: "eye"
  Begin Offset : 4569
  Content : eye
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.569008499151096e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "southbank lights"
  Begin Offset : 83110
  Content : southbank lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.568325286731124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon2018 lights"
  Begin Offset : 83033
  Content : lumierelondon2018 lights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.568325286731124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lightbulbs"
  Begin Offset : 84064
  Content : lightbulbs
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.568325286731124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lights"
  Begin Offset : 83328
  Content : lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.568325286731124e-05
Sentiment: 

Name: "heaven light"
  Begin Offset : 83524
  Content : heaven light
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.568325286731124e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival lights"
  Begin Offset : 85640
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.5667485867161304e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival lights"
  Begin Offset : 89736
  Content : festival lights
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.562228398048319e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "poion lumierelondon lights"
  Begin Offset : 89932
  Content : poion  lumierelondon lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.562228398048319e-05
Sentiment: 

Name: "timeoutlondon gin"
  Begin Offset : 7371
  Content : timeoutlondon gin
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.549311390495859e-05
Sentiment: 

Name: "festival engcathedrals"
  Begin Offset : 23398
  Content : festival  engcathedrals
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.5420354328816757e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "amp"
  Begin Offset : 82465
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.5291351600317284e-05
Sentiment: 

Name: "amp"
  Begin Offset : 82341
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.5291351600317284e-05
Sentiment: 

Name: "barkingsideac"
  Begin Offset : 16413
  Content : barkingsideac
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.494162905961275e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "dials"
  Begin Offset : 18139
  Content : dials
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.494162905961275e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "light"
  Begin Offset : 102505
  Content : light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.484756184159778e-05
Sentiment: 

Name: "chance"
  Begin Offset : 43518
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.4830470617162064e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "polychrome"
  Begin Offset : 21124
  Content : polychrome
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.480600884766318e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "anyone"
  Begin Offset : 23336
  Content : anyone
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.474730642163195e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "barkingsideac"
  Begin Offset : 22916
  Content : barkingsideac
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.474730642163195e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "anyone"
  Begin Offset : 23717
  Content : anyone
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.474730642163195e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "fill light"
  Begin Offset : 128653
  Content : fill light
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.4702039051335305e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "round"
  Begin Offset : 25944
  Content : round
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.469336247188039e-05
Sentiment: 

Name: "hurry"
  Begin Offset : 27628
  Content : hurry
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.464346395456232e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "river quality"
  Begin Offset : 67261
  Content : river quality
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 123387
  Content : river quality
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.462670742417686e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "repoer presenter freelancer repo"
  Begin Offset : 30513
  Content : repoer presenter freelancer repo
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.4597050620941445e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "repo"
  Begin Offset : 30376
  Content : repo
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.4597050620941445e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "buses cars"
  Begin Offset : 33386
  Content : buses cars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.4553671361645684e-05
Sentiment: 

Name: "gift"
  Begin Offset : 33336
  Content : gift
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.4553671361645684e-05
Sentiment: 

Name: "aichoketrust visitlondon timeoutlondon mayoroflondon"
  Begin Offset : 24693
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.414953193394467e-05
Sentiment: 

Name: "lumierelondon launches"
  Begin Offset : 12597
  Content : lumierelondon launches
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.3751293307868764e-05
Sentiment: 

Name: "aichoketrust wrap"
  Begin Offset : 47363
  Content : aichoketrust wrap
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.367443009163253e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 56196
  Content : amp
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.3552448662230745e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "bloomberg"
  Begin Offset : 9951
  Content : bloomberg
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 41564
  Content : bloomberg
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.345035970094614e-05
Sentiment: 

Name: "chill zone"
  Begin Offset : 57867
  Content : chill zone
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 101043
  Content : chill zone
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.306795355863869e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "case study events management"
  Begin Offset : 4512
  Content : case study events management
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.300782140693627e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "event"
  Begin Offset : 137956
  Content : event
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.28336749994196e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "solidarity"
  Begin Offset : 7022
  Content : solidarity
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.28203381691128e-05
Sentiment: 

Name: "pancras ipa thebetjemanarms suzystories"
  Begin Offset : 7948
  Content : pancras ipa thebetjemanarms  suzystories
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.28203381691128e-05
Sentiment: 

Name: "flickr"
  Begin Offset : 1387
  Content : flickr
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 32733
  Content : flickr
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 37767
  Content : flickr
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.277778109302744e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "facebook page"
  Begin Offset : 12011
  Content : facebook page
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.272555790725164e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "southbank"
  Begin Offset : 138438
  Content : southbank
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 168193
  Content : southbank
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 5.2697094361064956e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "event"
  Begin Offset : 158619
  Content : event
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 168754
  Content : event
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 169286
  Content : event
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 169423
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 169673
  Content : event
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.268604218144901e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.10000000149011612


Name: "ceo"
  Begin Offset : 10168
  Content : ceo
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.267537198960781e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "steps"
  Begin Offset : 9796
  Content : steps
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.267537198960781e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "op ed"
  Begin Offset : 10189
  Content : op ed
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.267537198960781e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "work room"
  Begin Offset : 10367
  Content : work room
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.2557217713911086e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "applause lumierelondon"
  Begin Offset : 128063
  Content : applause lumierelondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.251097900327295e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon"
  Begin Offset : 128781
  Content : lumierelondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.251097900327295e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "bum lumierefestival"
  Begin Offset : 129186
  Content : bum lumierefestival
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.251097900327295e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "song lumierelondon"
  Begin Offset : 130292
  Content : song lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.250139656709507e-05
Sentiment: 

Name: "lumiere lumierelondon"
  Begin Offset : 131804
  Content : lumiere lumierelondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.2491959650069475e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust lumieredub"
  Begin Offset : 137408
  Content : aichoketrust lumieredub
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.246444925433025e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "solidarity"
  Begin Offset : 13418
  Content : solidarity
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.245752981863916e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "solidarity"
  Begin Offset : 13607
  Content : solidarity
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.245752981863916e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "survivors"
  Begin Offset : 13618
  Content : survivors
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.245752981863916e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "survivors"
  Begin Offset : 13429
  Content : survivors
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.245752981863916e-05
Sentiment: 

Name: "lumierelondon"
  Begin Offset : 142830
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.2446750487433746e-05
Sentiment: 

Name: "london lumiere"
  Begin Offset : 142638
  Content : london lumiere
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.2446750487433746e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lumierelondon"
  Begin Offset : 146377
  Content : lumierelondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.242952465778217e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "julian crowe"
  Begin Offset : 19401
  Content : julian crowe
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 5.2202587539795786e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "solidarity"
  Begin Offset : 25073
  Content : solidarity
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.2059098379686475e-05
Sentiment: 

Name: "engcathedrals"
  Begin Offset : 25951
  Content : engcathedrals
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.2059098379686475e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "solidarity"
  Begin Offset : 26147
  Content : solidarity
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.2059098379686475e-05
Sentiment: 

Name: "cocktail privacy cub room"
  Begin Offset : 27867
  Content : cocktail privacy cub room
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.201160456635989e-05
Sentiment: 

Name: "case study events management"
  Begin Offset : 29389
  Content : case study events management
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.196742495172657e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "poland"
  Begin Offset : 85114
  Content : poland
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 131474
  Content : poland
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 137119
  Content : poland
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 5.189178773434833e-05
Sentiment: magnitude: 1.5
score: 0.4000000059604645


Name: "gloves amp scarf"
  Begin Offset : 12364
  Content : gloves amp scarf
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.183439498068765e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rambedance couauldgall davidward aichoketrust"
  Begin Offset : 56136
  Content : rambedance couauldgall davidward aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65971
  Content : rambedance couauldgall davidward aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.1774142775684595e-05
Sentiment: magnitude: 0.10000000149011612


Name: "gloves amp scarf"
  Begin Offset : 15199
  Content : gloves amp scarf
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.17492153448984e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "thanks"
  Begin Offset : 96333
  Content : thanks
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 5.157283158041537e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "festival lights"
  Begin Offset : 123150
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.146405237610452e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "blue light"
  Begin Offset : 123373
  Content : blue light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.1454226195346564e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 125021
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.1454226195346564e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sound amp light"
  Begin Offset : 125685
  Content : sound amp light
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.144455280969851e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lights darkness light light"
  Begin Offset : 126623
  Content : lights darkness light light
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.144455280969851e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lights"
  Begin Offset : 126018
  Content : lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.144455280969851e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lights"
  Begin Offset : 126088
  Content : lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.144455280969851e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival light"
  Begin Offset : 126415
  Content : festival light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.144455280969851e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival lights"
  Begin Offset : 129291
  Content : festival lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.1435024943202734e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival lights lights"
  Begin Offset : 130424
  Content : festival lights lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.1425642595859244e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival lights"
  Begin Offset : 132010
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.141639485373162e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 131599
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.141639485373162e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 132732
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.141639485373162e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wrap"
  Begin Offset : 27375
  Content : wrap
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.1407580031082034e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lighta gavriiluxwarm light"
  Begin Offset : 134579
  Content : lighta gavriiluxwarm light
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.140728535479866e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "light"
  Begin Offset : 135541
  Content : light
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.139830318512395e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "festival lights"
  Begin Offset : 136892
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.139830318512395e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lights"
  Begin Offset : 135819
  Content : lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.139830318512395e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival lights"
  Begin Offset : 138355
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.1389451982686296e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival lights"
  Begin Offset : 137812
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.1389451982686296e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lights"
  Begin Offset : 137842
  Content : lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.1389451982686296e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 139952
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.1380720833549276e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "venture question lights"
  Begin Offset : 143188
  Content : venture  question lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.13721133756917e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "venture question lights"
  Begin Offset : 142798
  Content : venture  question lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.13721133756917e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "miss lights"
  Begin Offset : 142084
  Content : miss  lights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.13721133756917e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon thedroidlife ray catcher"
  Begin Offset : 32748
  Content : mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  thedroidlife ray catcher
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.1359158533159643e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 148827
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.134697494213469e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "light"
  Begin Offset : 152017
  Content : light
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.1330760470591486e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lighting"
  Begin Offset : 152554
  Content : lighting
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.1330760470591486e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "lumierelondon lighting lights"
  Begin Offset : 154668
  Content : lumierelondon lighting lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.132280784891918e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 153714
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.132280784891918e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "flamingos"
  Begin Offset : 12212
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.124398376210593e-05
Sentiment: 

Name: "names"
  Begin Offset : 77636
  Content : names
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 77904
  Content : names
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.0683695008046925e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
  Begin Offset : 2440
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 24223
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 26535
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 5.063130083726719e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "light installations"
  Begin Offset : 95418
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.039759707869962e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 94977
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.039759707869962e-05
Sentiment: magnitude: 3.5999999046325684
score: 0.699999988079071


Name: "installation"
  Begin Offset : 96088
  Content : installation
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.039759707869962e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installations"
  Begin Offset : 97229
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.038554809289053e-05
Sentiment: 

Name: "amp installations"
  Begin Offset : 97530
  Content : amp installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.038554809289053e-05
Sentiment: 

Name: "installation"
  Begin Offset : 99609
  Content : installation
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 5.037372829974629e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "installation"
  Begin Offset : 100230
  Content : installation
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 5.037372829974629e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "light installations"
  Begin Offset : 99449
  Content : light installations
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 5.037372829974629e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "installations"
  Begin Offset : 101964
  Content : installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.036213042330928e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installation"
  Begin Offset : 101856
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.036213042330928e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 100738
  Content : installation
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.036213042330928e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "kingscross installations"
  Begin Offset : 101125
  Content : kingscross installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.036213042330928e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "jokes"
  Begin Offset : 2365
  Content : jokes
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.036127186031081e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installation"
  Begin Offset : 103398
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.03507508256007e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 102714
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.03507508256007e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 102511
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.03507508256007e-05
Sentiment: 

Name: "events"
  Begin Offset : 127353
  Content : events
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.034780042478815e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "sound installation"
  Begin Offset : 108095
  Content : sound installation
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.032860644860193e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installations"
  Begin Offset : 106931
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.032860644860193e-05
Sentiment: magnitude: 3.299999952316284
score: 0.800000011920929


Name: "installations"
  Begin Offset : 108003
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.032860644860193e-05
Sentiment: magnitude: 3.299999952316284
score: 0.800000011920929


Name: "installations"
  Begin Offset : 107841
  Content : installations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.032860644860193e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installations"
  Begin Offset : 110363
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.031782711739652e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 110689
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.031782711739652e-05
Sentiment: 

Name: "light installations"
  Begin Offset : 112488
  Content : light installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.030723332311027e-05
Sentiment: 

Name: "amp installations"
  Begin Offset : 111122
  Content : amp installations
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 5.030723332311027e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "light installations"
  Begin Offset : 112117
  Content : light installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.030723332311027e-05
Sentiment: 

Name: "installation"
  Begin Offset : 114095
  Content : installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.029682142776437e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 114828
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.029682142776437e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 115611
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.0286584155401215e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation"
  Begin Offset : 119054
  Content : installation
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.0276514230063185e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installations"
  Begin Offset : 121392
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.025685823056847e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "light installations"
  Begin Offset : 121876
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.025685823056847e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "londonlife sessions"
  Begin Offset : 2743
  Content : londonlife sessions
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.0251946959178895e-05
Sentiment: 

Name: "selection photos"
  Begin Offset : 37750
  Content : selection photos
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 5.013783083995804e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "photos"
  Begin Offset : 40567
  Content : photos
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.0106165872421116e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "light installations"
  Begin Offset : 66294
  Content : light installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.004830745747313e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "light installations"
  Begin Offset : 66658
  Content : light installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.004830745747313e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "umbrellas photos"
  Begin Offset : 44230
  Content : umbrellas photos
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.004737977287732e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installation"
  Begin Offset : 68080
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.002990656066686e-05
Sentiment: magnitude: 3.5999999046325684
score: 0.699999988079071


Name: "city"
  Begin Offset : 35590
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.002861507819034e-05
Sentiment: magnitude: 1.100000023841858
score: 0.20000000298023224


Name: "photos"
  Begin Offset : 46711
  Content : photos
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.001998943043873e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 69652
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.0012047722702846e-05
Sentiment: 

Name: "spirit chapter"
  Begin Offset : 4966
  Content : spirit chapter
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 5.000162127544172e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 73314
  Content : installation
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.9994698201771826e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "print map list installations"
  Begin Offset : 76913
  Content : print map list installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.9945436330745e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "city"
  Begin Offset : 41937
  Content : city
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.993372203898616e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 78690
  Content : installation
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.9929865781450644e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 78963
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.9929865781450644e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lumierelondon city"
  Begin Offset : 44526
  Content : lumierelondon city
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.9905120249604806e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installation"
  Begin Offset : 81452
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.989987064618617e-05
Sentiment: 

Name: "installations"
  Begin Offset : 83628
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.9885409680427983e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 84175
  Content : installations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.9885409680427983e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation"
  Begin Offset : 85985
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.987128704669885e-05
Sentiment: 

Name: "photograph"
  Begin Offset : 59999
  Content : photograph
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.985656414646655e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photograph"
  Begin Offset : 60605
  Content : photograph
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.985656414646655e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 87954
  Content : installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.9843991291709244e-05
Sentiment: 

Name: "sroosegaarde installation"
  Begin Offset : 89986
  Content : sroosegaarde installation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.9830792704597116e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photos"
  Begin Offset : 64646
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.981695019523613e-05
Sentiment: 

Name: "city"
  Begin Offset : 57432
  Content : city
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.973560862708837e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "city"
  Begin Offset : 58847
  Content : city
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.973560862708837e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city"
  Begin Offset : 59850
  Content : city
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.9714846682036296e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "city"
  Begin Offset : 59531
  Content : city
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.9714846682036296e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "city"
  Begin Offset : 63098
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.9694772314978763e-05
Sentiment: 

Name: "city"
  Begin Offset : 64360
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.9675345508148894e-05
Sentiment: 

Name: "meetup"
  Begin Offset : 11430
  Content : meetup
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.957657074555755e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "get"
  Begin Offset : 13948
  Content : get
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.948253263137303e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "work"
  Begin Offset : 39465
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.941645238432102e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "works"
  Begin Offset : 39728
  Content : works
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.938524216413498e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "work"
  Begin Offset : 41539
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.9355574446963146e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "work"
  Begin Offset : 44338
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.932730371365324e-05
Sentiment: 

Name: "work"
  Begin Offset : 47566
  Content : work
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.9274469347437844e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "work"
  Begin Offset : 49175
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.9274469347437844e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "thesavoylondon"
  Begin Offset : 18664
  Content : thesavoylondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.9265636334894225e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "works"
  Begin Offset : 51435
  Content : works
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.924970198771916e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "work"
  Begin Offset : 51373
  Content : work
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.924970198771916e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "work"
  Begin Offset : 53007
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.92259168822784e-05
Sentiment: 

Name: "works"
  Begin Offset : 53106
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.92259168822784e-05
Sentiment: 

Name: "work"
  Begin Offset : 51878
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.92259168822784e-05
Sentiment: 

Name: "lumiere london"
  Begin Offset : 121969
  Content : lumiere london
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 4.916833495371975e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "works"
  Begin Offset : 59186
  Content : works
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.915975659969263e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "work"
  Begin Offset : 58882
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.915975659969263e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "work"
  Begin Offset : 58942
  Content : work
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.915975659969263e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "works"
  Begin Offset : 58670
  Content : works
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.915975659969263e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "simonmanleyfco que haya luz segunda edición del festival de"
  Begin Offset : 27989
  Content : simonmanleyfco que haya luz segunda edición del festival de
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 4.9139496695715934e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installations"
  Begin Offset : 106971
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.910401185043156e-05
Sentiment: magnitude: 3.299999952316284
score: 0.800000011920929


Name: "installations"
  Begin Offset : 135038
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.897992039332166e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "roosegaarde kings"
  Begin Offset : 118181
  Content : roosegaarde kings
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.889012416242622e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "x ray vision"
  Begin Offset : 114242
  Content : x ray vision
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.8772970330901444e-05
Sentiment: 

Name: "installations"
  Begin Offset : 74956
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.8761772632133216e-05
Sentiment: magnitude: 3.299999952316284
score: 0.800000011920929


Name: "rain visitlondon"
  Begin Offset : 119582
  Content : rain  visitlondon
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 4.8743673687567934e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "nightlights"
  Begin Offset : 107258
  Content : nightlights
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.8628015065332875e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "eluminate2018"
  Begin Offset : 3705
  Content : eluminate2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.853441350860521e-05
Sentiment: 

Name: "southbanklondon"
  Begin Offset : 60484
  Content : southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.839895336772315e-05
Sentiment: 

Name: "visitlondon"
  Begin Offset : 83351
  Content : visitlondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.837402593693696e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "doorstep nightlife"
  Begin Offset : 67999
  Content : doorstep  nightlife
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.833941056858748e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "visitors"
  Begin Offset : 88099
  Content : visitors
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.833385901292786e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "nights"
  Begin Offset : 69880
  Content : nights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.8322155635105446e-05
Sentiment: 

Name: "display"
  Begin Offset : 70425
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.8310710553778335e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitlondon festival"
  Begin Offset : 101902
  Content : visitlondon  festival
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.821503534913063e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 155774
  Content : amp
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 161166
  Content : amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.8122939915629104e-05
Sentiment: magnitude: 1.7999999523162842
score: 0.8999999761581421


Name: "searcystpancras"
  Begin Offset : 7906
  Content : searcystpancras
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.812183033209294e-05
Sentiment: 

Name: "lumierelondon visitlondon"
  Begin Offset : 65195
  Content : lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 65326
  Content : lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.8048372264020145e-05
Sentiment: 

Name: "therose pedalpower petalpower lumiere"
  Begin Offset : 59739
  Content : therose pedalpower petalpower lumiere
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 4.787401121575385e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation trafalgarsquare"
  Begin Offset : 46357
  Content : installation trafalgarsquare
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.747545244754292e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "photograph fish phone box"
  Begin Offset : 88908
  Content : photograph fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.7379089664900675e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation trafalgarsquare"
  Begin Offset : 57113
  Content : installation trafalgarsquare
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.736056871479377e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installation trafalgarsquare"
  Begin Offset : 57942
  Content : installation trafalgarsquare
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.734010508400388e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "amp"
  Begin Offset : 95051
  Content : amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.699833152699284e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installations"
  Begin Offset : 74495
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.699292912846431e-05
Sentiment: 

Name: "weekend lumierelondon photos"
  Begin Offset : 52017
  Content : weekend lumierelondon photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.6961602492956445e-05
Sentiment: 

Name: "amp"
  Begin Offset : 104985
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.694422386819497e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "mischiefmovienight amp"
  Begin Offset : 113336
  Content : mischiefmovienight amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.690435162046924e-05
Sentiment: 

Name: "south bank amp"
  Begin Offset : 121549
  Content : south bank amp
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.686708052759059e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "edgillwhl lumierelondon leicestersquare"
  Begin Offset : 132941
  Content : friends experiences
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 132962
  Content : edgillwhl lumierelondon leicestersquare
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 4.6848719648551196e-05
Sentiment: magnitude: 1.0
score: 0.5


Name: "lighting inspiration"
  Begin Offset : 3758
  Content : lighting inspiration
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.67863937956281e-05
Sentiment: 

Name: "blue sky"
  Begin Offset : 2318
  Content : blue sky
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.67863937956281e-05
Sentiment: 

Name: "balloons amp"
  Begin Offset : 67285
  Content : balloons amp
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.667259781854227e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cirquebijou streets"
  Begin Offset : 45806
  Content : cirquebijou streets
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.666918539442122e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city streets"
  Begin Offset : 46265
  Content : city streets
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.666918539442122e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 68405
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.665543747250922e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amp"
  Begin Offset : 68352
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.665543747250922e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "city mayorofldn amp"
  Begin Offset : 72159
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 71921
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 72822
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 71445
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 73043
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 72380
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 71683
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "city mayorofldn amp"
  Begin Offset : 72601
  Content : city mayorofldn amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.662260471377522e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "carnaby"
  Begin Offset : 25112
  Content : carnaby
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 86309
  Content : street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 95256
  Content : carnaby street
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 129943
  Content : carnaby street
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 92066
  Content : carnaby
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 92058
  Content : fixture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.662236460717395e-05
Sentiment: magnitude: 0.4000000059604645


Name: "streets"
  Begin Offset : 50932
  Content : streets
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.6621280489489436e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "westend amp"
  Begin Offset : 74553
  Content : westend amp
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.660687409341335e-05
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "city streets"
  Begin Offset : 52359
  Content : city streets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.6598765038652346e-05
Sentiment: 

Name: "amp"
  Begin Offset : 75729
  Content : amp
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.659156911657192e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "light installations amp"
  Begin Offset : 76500
  Content : light installations amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.659156911657192e-05
Sentiment: 

Name: "jubilee line baker street"
  Begin Offset : 59369
  Content : jubilee line baker street
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.6536133595509455e-05
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "amp"
  Begin Offset : 85157
  Content : amp
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.650751725421287e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.10000000149011612


Name: "amp"
  Begin Offset : 85478
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.650751725421287e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 60265
  Content : festival lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.6496053982991725e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "amp"
  Begin Offset : 86333
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.649464608519338e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "amp"
  Begin Offset : 87549
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.649464608519338e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.10000000149011612


Name: "amp"
  Begin Offset : 86386
  Content : amp
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.649464608519338e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "btpvolunteers"
  Begin Offset : 6855
  Content : btpvolunteers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.638866812456399e-05
Sentiment: 

Name: "check light"
  Begin Offset : 73952
  Content : check light
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.6376106183743104e-05
Sentiment: 

Name: "aichoketrust visitlondon"
  Begin Offset : 103784
  Content : aichoketrust visitlondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 103761
  Content : chance feature gallery
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.631448973668739e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "dreams"
  Begin Offset : 40102
  Content : dreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.62504212919157e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "dreams"
  Begin Offset : 40875
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.62504212919157e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "dreams"
  Begin Offset : 40683
  Content : dreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.62504212919157e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "badgerust fox amp badger stars"
  Begin Offset : 42166
  Content : badgerust fox amp badger stars
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.622263440978713e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "badgerust fox amp badger stars"
  Begin Offset : 43407
  Content : badgerust fox amp badger stars
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.622263440978713e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fox amp badger stars"
  Begin Offset : 43993
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.619615720002912e-05
Sentiment: 

Name: "lumierelondon latergram"
  Begin Offset : 1734
  Content : lumierelondon latergram
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 4.6176424802979454e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wikicommons"
  Begin Offset : 1436
  Content : wikicommons
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 4.6176424802979454e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "lights"
  Begin Offset : 104298
  Content : lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.6150231355568394e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "dreams"
  Begin Offset : 48553
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.6146677050273865e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation"
  Begin Offset : 123955
  Content : installation
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.6096665755612776e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "child hood collectif coin favourite installation"
  Begin Offset : 124579
  Content : child hood collectif coin favourite installation
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.6096665755612776e-05
Sentiment: 

Name: "installations"
  Begin Offset : 125502
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.608800009009428e-05
Sentiment: 

Name: "installations"
  Begin Offset : 128244
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.607946175383404e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "benefits"
  Begin Offset : 12506
  Content : benefits
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.607003211276606e-05
Sentiment: 

Name: "btpvolunteers"
  Begin Offset : 13251
  Content : btpvolunteers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.607003211276606e-05
Sentiment: 

Name: "btpvolunteers"
  Begin Offset : 13440
  Content : btpvolunteers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.607003211276606e-05
Sentiment: 

Name: "installation"
  Begin Offset : 131662
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.606277434504591e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 133375
  Content : installations
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.606277434504591e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installation"
  Begin Offset : 132130
  Content : installation
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.606277434504591e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "dreams"
  Begin Offset : 57212
  Content : dreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.605914728017524e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation"
  Begin Offset : 135404
  Content : installation
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.6054610720602795e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installation"
  Begin Offset : 136502
  Content : installation
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.604656351148151e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "dreams"
  Begin Offset : 57639
  Content : dreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.603924389812164e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "light installations"
  Begin Offset : 140002
  Content : light installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.60308110632468e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 142046
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.602309854817577e-05
Sentiment: 

Name: "installation"
  Begin Offset : 141703
  Content : installation
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.602309854817577e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 143488
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.601549153449014e-05
Sentiment: 

Name: "dreams"
  Begin Offset : 63743
  Content : dreams
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.600144166033715e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "dreams"
  Begin Offset : 62564
  Content : dreams
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.600144166033715e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "cain_int badgerust fox amp badger stars"
  Begin Offset : 62330
  Content : cain_int  badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.600144166033715e-05
Sentiment: 

Name: "badgerust fox amp badger stars"
  Begin Offset : 63255
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.600144166033715e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "fox amp badger stars"
  Begin Offset : 63388
  Content : fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.600144166033715e-05
Sentiment: 

Name: "installations"
  Begin Offset : 150015
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.5993267121957615e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "installations"
  Begin Offset : 150469
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.5993267121957615e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installations"
  Begin Offset : 150755
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.5993267121957615e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "badgerust fox amp badger stars"
  Begin Offset : 64148
  Content : badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.5983459131093696e-05
Sentiment: 

Name: "londonlife dslr nightmoves 2"
  Begin Offset : 6399
  Content : londonlife dslr nightmoves 2
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.5882148697273806e-05
Sentiment: 

Name: "display"
  Begin Offset : 34767
  Content : display
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.5831187890144065e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "amp witchcraft"
  Begin Offset : 21379
  Content : amp witchcraft
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.58142785646487e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "spoonsontrays"
  Begin Offset : 21073
  Content : spoonsontrays
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.58142785646487e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "amp witchcraft"
  Begin Offset : 26416
  Content : amp witchcraft
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.5720109483227134e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "display"
  Begin Offset : 42600
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.571206227410585e-05
Sentiment: magnitude: 10.899999618530273
score: 0.699999988079071


Name: "display"
  Begin Offset : 43544
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.571206227410585e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "display"
  Begin Offset : 41785
  Content : display
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.571206227410585e-05
Sentiment: magnitude: 10.899999618530273
score: 0.699999988079071


Name: "props"
  Begin Offset : 28984
  Content : props
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.567840005620383e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "playlondongame"
  Begin Offset : 27504
  Content : playlondongame
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.567840005620383e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "addition"
  Begin Offset : 27804
  Content : addition
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.567840005620383e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "bar"
  Begin Offset : 27902
  Content : bar
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.567840005620383e-05
Sentiment: 

Name: "beasts"
  Begin Offset : 34401
  Content : beasts
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 4.5657827286049724e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "decorations"
  Begin Offset : 30301
  Content : decorations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.5639601012226194e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "creativity amp inspiration"
  Begin Offset : 33143
  Content : creativity amp inspiration
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.56033340014983e-05
Sentiment: 

Name: "festival"
  Begin Offset : 94888
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.5367327402345836e-05
Sentiment: 

Name: "kingscrossn1c festival"
  Begin Offset : 96644
  Content : kingscrossn1c festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.535647894954309e-05
Sentiment: 

Name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon zebraprodunique"
  Begin Offset : 33871
  Content : timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  zebraprodunique
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 4.5330751163419336e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "fish phone box"
  Begin Offset : 63653
  Content : fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.532122693490237e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "50 aists justin_venn lumierelondon2018 lumierelondon"
  Begin Offset : 37532
  Content : 50 aists  justin_venn  lumierelondon2018 lumierelondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 4.529884972725995e-05
Sentiment: magnitude: 1.2999999523162842
score: 0.6000000238418579


Name: "mayfair grosvenor_ldn grosvenor_gbi justin_venn lumierelondon2018 lumierelondon"
  Begin Offset : 35721
  Content : mayfair grosvenor_ldn grosvenor_gbi  justin_venn  lumierelondon2018 lumierelondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 4.529884972725995e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "chinatown pa festival"
  Begin Offset : 109737
  Content : chinatown pa festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.529551733867265e-05
Sentiment: 

Name: "lumiere festival"
  Begin Offset : 110338
  Content : lumiere festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.529551733867265e-05
Sentiment: 

Name: "chinatown pa festival"
  Begin Offset : 109653
  Content : chinatown pa festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.529551733867265e-05
Sentiment: 

Name: "chinatown pa festival"
  Begin Offset : 111517
  Content : chinatown pa festival
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.5285982196219265e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "chinatown pa festival"
  Begin Offset : 112300
  Content : chinatown pa festival
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.5285982196219265e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "fairies"
  Begin Offset : 141112
  Content : fairies
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 142287
  Content : fairies
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.527135388343595e-05
Sentiment: magnitude: 0.30000001192092896


Name: "festivals"
  Begin Offset : 117363
  Content : festivals
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.5258326281327754e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival"
  Begin Offset : 120666
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.524940959527157e-05
Sentiment: 

Name: "visitors city bottle festoon"
  Begin Offset : 120722
  Content : visitors city bottle festoon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.524940959527157e-05
Sentiment: 

Name: "mayoroflondon justin_venn lumierelondon2018 lumierelondon"
  Begin Offset : 39620
  Content : mayoroflondon  justin_venn  lumierelondon2018 lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.524010364548303e-05
Sentiment: 

Name: "streets"
  Begin Offset : 88618
  Content : streets
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.5146545744501054e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "aists"
  Begin Offset : 128296
  Content : aists
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.508739584707655e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "kingscrossn1c festival"
  Begin Offset : 71365
  Content : kingscrossn1c festival
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 4.500463910517283e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "nights"
  Begin Offset : 55976
  Content : nights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.500345676206052e-05
Sentiment: 

Name: "tag"
  Begin Offset : 139173
  Content : tag
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 139457
  Content : tag
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.498982889344916e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "londonlumiere london leceistersquare lumiere"
  Begin Offset : 65084
  Content : londonlumiere london leceistersquare  lumiere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.4978973164688796e-05
Sentiment: 

Name: "festival"
  Begin Offset : 77765
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.4946275011170655e-05
Sentiment: 

Name: "westminsterabbey light festival"
  Begin Offset : 79391
  Content : westminsterabbey light festival
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.4946275011170655e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "spire stop café"
  Begin Offset : 152779
  Content : spire  stop café
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 154473
  Content : spire  stop café
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.4938446080777794e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lumiere festival"
  Begin Offset : 80146
  Content : lumiere festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.493260712479241e-05
Sentiment: 

Name: "festival"
  Begin Offset : 81380
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.491927393246442e-05
Sentiment: 

Name: "installations"
  Begin Offset : 140969
  Content : installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.491077925194986e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "lumiere festival"
  Begin Offset : 84495
  Content : lumiere festival
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.490625724429265e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "festival"
  Begin Offset : 85963
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.489354250836186e-05
Sentiment: 

Name: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey"
  Begin Offset : 49984
  Content : eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49817
  Content : eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49650
  Content : eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 4.489352068048902e-05
Sentiment: magnitude: 1.7999999523162842
score: 0.6000000238418579


Name: "saints"
  Begin Offset : 28748
  Content : saints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.486549732973799e-05
Sentiment: 

Name: "visit"
  Begin Offset : 133248
  Content : visit
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.4667187466984615e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visit"
  Begin Offset : 133045
  Content : visit
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.4667187466984615e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitlondon"
  Begin Offset : 135429
  Content : visitlondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.465927122510038e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon"
  Begin Offset : 136527
  Content : visitlondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.465147139853798e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitors"
  Begin Offset : 138594
  Content : visitors
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.464378071133979e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "people"
  Begin Offset : 95208
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.463095683604479e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "visit"
  Begin Offset : 144567
  Content : visit
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.462133802007884e-05
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "visit"
  Begin Offset : 143376
  Content : visit
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.462133802007884e-05
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "nightlife"
  Begin Offset : 122995
  Content : nightlife
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.454755980987102e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visitlondon kingscrossn1c roamingrequired southbanklondon"
  Begin Offset : 61453
  Content : visitlondon kingscrossn1c roamingrequired  southbanklondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 4.454518420970999e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "nightlife"
  Begin Offset : 124200
  Content : nightlife
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.453905421542004e-05
Sentiment: 

Name: "bhawnasaini_yml"
  Begin Offset : 130488
  Content : childhood
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 130499
  Content : bhawnasaini_yml
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.4455497118178755e-05
Sentiment: magnitude: 0.10000000149011612


Name: "animal nightlife"
  Begin Offset : 149010
  Content : animal nightlife
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.444621299626306e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "nightlife"
  Begin Offset : 148032
  Content : nightlife
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.444621299626306e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "aists amp employment oppounities tourism amp fitness"
  Begin Offset : 9720
  Content : aists amp employment oppounities tourism amp fitness
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.4320549932308495e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "selfie london visitlondon"
  Begin Offset : 95458
  Content : selfie london  visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.428498141351156e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumierefestival2018 aichoke trafalgarsquare london"
  Begin Offset : 81180
  Content : lumierefestival2018 aichoke trafalgarsquare london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.423821155796759e-05
Sentiment: 

Name: "lights"
  Begin Offset : 78146
  Content : lights
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.410432302393019e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "iesphotos cityatnight london"
  Begin Offset : 175264
  Content : iesphotos cityatnight  london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 175257
  Content : flickr
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.41006341134198e-05
Sentiment: 

Name: "aichoketrust"
  Begin Offset : 91487
  Content : aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.3800911953439936e-05
Sentiment: 

Name: "squirrel mouse aichoketrust"
  Begin Offset : 91501
  Content : squirrel mouse aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.378979065222666e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust"
  Begin Offset : 96386
  Content : aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.37682174379006e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust"
  Begin Offset : 119466
  Content : aichoketrust
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.365445420262404e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust"
  Begin Offset : 119320
  Content : aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.365445420262404e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aist"
  Begin Offset : 36767
  Content : aist
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.3620369979180396e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon london"
  Begin Offset : 101230
  Content : lumierelondon london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 107448
  Content : lumierelondon london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 4.350421659182757e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "king cross"
  Begin Offset : 40516
  Content : king cross
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.337179780122824e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aists"
  Begin Offset : 59217
  Content : aists
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.336488927947357e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "2018 trafalgarsquare kingscross carnabystreet regentstreet"
  Begin Offset : 71478
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 71716
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 71954
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 72192
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 72413
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 72634
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 72855
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 73076
  Content : 2018  trafalgarsquare kingscross carnabystreet regentstreet
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
Salience: 4.335075936978683e-05
Sentiment: magnitude: 4.099999904632568
score: -0.5


Name: "aists"
  Begin Offset : 59522
  Content : aists
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.3346786696929485e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aichoketrust"
  Begin Offset : 88228
  Content : aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.328742579673417e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "ilyasayub_photo"
  Begin Offset : 2382
  Content : ilyasayub_photo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 20399
  Content : ilyasayub_photo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.316430931794457e-05
Sentiment: 

Name: "polychrome"
  Begin Offset : 127007
  Content : polychrome
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 131349
  Content : polychrome
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.315278783906251e-05
Sentiment: magnitude: 0.4000000059604645


Name: "chance"
  Begin Offset : 70898
  Content : chance
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.3118045141454786e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "head"
  Begin Offset : 122717
  Content : head
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 133085
  Content : head
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.307123526814394e-05
Sentiment: magnitude: 1.5
score: 0.699999988079071


Name: "event"
  Begin Offset : 92015
  Content : event
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.305628317524679e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "event"
  Begin Offset : 98213
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.302478191675618e-05
Sentiment: 

Name: "event"
  Begin Offset : 98280
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.302478191675618e-05
Sentiment: 

Name: "event"
  Begin Offset : 99146
  Content : event
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.301469016354531e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "events"
  Begin Offset : 116223
  Content : events
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.294027530704625e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "south bank amp"
  Begin Offset : 144270
  Content : south bank amp
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.2911760829156265e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "amp"
  Begin Offset : 149544
  Content : amp
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.289785283617675e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "westend amp"
  Begin Offset : 150813
  Content : westend amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.289103526389226e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "amp"
  Begin Offset : 153357
  Content : amp
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.2884305003099144e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "croydon"
  Begin Offset : 22206
  Content : croydon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 60289
  Content : croydon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 60467
  Content : croydon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.286038893042132e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.10000000149011612


Name: "check light"
  Begin Offset : 146352
  Content : check light
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.26923215854913e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "check light"
  Begin Offset : 152091
  Content : check light
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.267196709406562e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "south bank"
  Begin Offset : 34906
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.26704682467971e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "south bank"
  Begin Offset : 34596
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.26704682467971e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "check light"
  Begin Offset : 154853
  Content : check light
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.2665356886573136e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "check light"
  Begin Offset : 153635
  Content : check light
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.2665356886573136e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "event"
  Begin Offset : 80860
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.261004869476892e-05
Sentiment: 

Name: "winterlights canarywharf"
  Begin Offset : 12067
  Content : winterlights canarywharf
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 13656
  Content : winterlights canarywharf
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.2584175389492884e-05
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "event"
  Begin Offset : 86773
  Content : event
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.257385808159597e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "arrival"
  Begin Offset : 6086
  Content : arrival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.245622403686866e-05
Sentiment: 

Name: "book cou"
  Begin Offset : 5772
  Content : book cou
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.245622403686866e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "pint"
  Begin Offset : 7940
  Content : pint
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.230605554766953e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "thelondoneye westminsterabbey"
  Begin Offset : 49888
  Content : thelondoneye westminsterabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 49721
  Content : thelondoneye westminsterabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 4.226916280458681e-05
Sentiment: magnitude: 1.2999999523162842
score: 0.6000000238418579


Name: "light lumiere king"
  Begin Offset : 100265
  Content : light lumiere  king
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 4.2254388972651213e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "kingdom"
  Begin Offset : 100874
  Content : kingdom
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.224466465529986e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kings"
  Begin Offset : 104146
  Content : kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.223511496093124e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "kingscross"
  Begin Offset : 104349
  Content : kingscross
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.223511496093124e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "kingdom"
  Begin Offset : 106198
  Content : kingdom
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.222574352752417e-05
Sentiment: 

Name: "kings"
  Begin Offset : 106873
  Content : kings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.221653944114223e-05
Sentiment: magnitude: 0.4000000059604645


Name: "park kings"
  Begin Offset : 108812
  Content : park kings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.220749906380661e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "park kings"
  Begin Offset : 108872
  Content : park kings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.220749906380661e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "kingdom"
  Begin Offset : 112274
  Content : kingdom
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.219861148158088e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "park kings"
  Begin Offset : 112438
  Content : park kings
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.219861148158088e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "park kings"
  Begin Offset : 113717
  Content : park kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.2189876694465056e-05
Sentiment: 

Name: "park kings"
  Begin Offset : 114047
  Content : park kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.2189876694465056e-05
Sentiment: 

Name: "roosegaarde kings"
  Begin Offset : 118381
  Content : roosegaarde kings
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.217284367769025e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "kings"
  Begin Offset : 118931
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.217284367769025e-05
Sentiment: 

Name: "kings"
  Begin Offset : 120376
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.216453089611605e-05
Sentiment: 

Name: "kings"
  Begin Offset : 120165
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.216453089611605e-05
Sentiment: 

Name: "kings"
  Begin Offset : 120421
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.216453089611605e-05
Sentiment: 

Name: "kings"
  Begin Offset : 121208
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.216453089611605e-05
Sentiment: 

Name: "waterlicht lumiere kings"
  Begin Offset : 121796
  Content : waterlicht lumiere kings
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.215635635773651e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "city waterlicht lumiere kings"
  Begin Offset : 121903
  Content : city waterlicht lumiere kings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.215635635773651e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumiere kings"
  Begin Offset : 122459
  Content : lumiere kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.215635635773651e-05
Sentiment: 

Name: "kings"
  Begin Offset : 121347
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.215635635773651e-05
Sentiment: 

Name: "scene boulevard"
  Begin Offset : 10318
  Content : scene boulevard
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.209530743537471e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "weather cold"
  Begin Offset : 11797
  Content : weather cold
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.209530743537471e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "charsuibuns light spirit"
  Begin Offset : 56006
  Content : charsuibuns light spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.20055293943733e-05
Sentiment: 

Name: "london rain"
  Begin Offset : 37957
  Content : london rain
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.2000778194051236e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lightinstallation landscape colour longexposure canon kings"
  Begin Offset : 65806
  Content : lightinstallation landscape  colour longexposure canon kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.198141323286109e-05
Sentiment: 

Name: "kings"
  Begin Offset : 69765
  Content : kings
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.19509997300338e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "jakubkrupa"
  Begin Offset : 15836
  Content : jakubkrupa
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.1946415876736864e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "shaida"
  Begin Offset : 15758
  Content : shaida
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.1946415876736864e-05
Sentiment: 

Name: "king"
  Begin Offset : 82142
  Content : king
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.185690340818837e-05
Sentiment: 

Name: "king"
  Begin Offset : 89921
  Content : king
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.179895404377021e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "poraits"
  Begin Offset : 20846
  Content : poraits
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.178221206529997e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "westminsterabbey"
  Begin Offset : 104876
  Content : westminsterabbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.177098526270129e-05
Sentiment: 

Name: "festival walk"
  Begin Offset : 1883
  Content : festival walk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.168165833107196e-05
Sentiment: 

Name: "rarebear"
  Begin Offset : 17113
  Content : rarebear
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.160687603871338e-05
Sentiment: 

Name: "ukinargentina es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4"
  Begin Offset : 12903
  Content : ukinargentina  es un festival de luces en londres con 50 obras de ae en exhibición ayer fue la primera de las 4
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.1556682845111936e-05
Sentiment: 

Name: "citywestminster festival"
  Begin Offset : 127807
  Content : citywestminster  festival
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.1480143408989534e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "cast commentary"
  Begin Offset : 129138
  Content : cast commentary
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 135953
  Content : cast commentary
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 161413
  Content : cast commentary
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 162475
  Content : cast commentary
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 163863
  Content : cast commentary
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 165113
  Content : cast commentary
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.147968138568103e-05
Sentiment: magnitude: 1.2999999523162842


Name: "festival"
  Begin Offset : 129801
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.147257641307078e-05
Sentiment: 

Name: "festival"
  Begin Offset : 132756
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.146512219449505e-05
Sentiment: 

Name: "youtube london light festival"
  Begin Offset : 132158
  Content : youtube london light festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.146512219449505e-05
Sentiment: 

Name: "pa lumiere festival"
  Begin Offset : 134944
  Content : pa lumiere festival
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.145777347730473e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival"
  Begin Offset : 138538
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.1443388909101486e-05
Sentiment: 

Name: "festival"
  Begin Offset : 138998
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.1443388909101486e-05
Sentiment: 

Name: "light festival"
  Begin Offset : 143932
  Content : light festival
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.142255784245208e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 144717
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.142255784245208e-05
Sentiment: 

Name: "kingscrossn1c festival"
  Begin Offset : 148745
  Content : kingscrossn1c festival
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.140913370065391e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival"
  Begin Offset : 148367
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.140913370065391e-05
Sentiment: 

Name: "festival"
  Begin Offset : 148555
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.140913370065391e-05
Sentiment: 

Name: "kingscrossn1c festival"
  Begin Offset : 151632
  Content : kingscrossn1c festival
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.139605880482122e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival"
  Begin Offset : 153186
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.139605880482122e-05
Sentiment: 

Name: "festival"
  Begin Offset : 153122
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.139605880482122e-05
Sentiment: 

Name: "kingscrossn1c festival"
  Begin Offset : 152251
  Content : kingscrossn1c festival
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.139605880482122e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kingscrossn1c festival"
  Begin Offset : 154771
  Content : kingscrossn1c festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.138964504818432e-05
Sentiment: 

Name: "granarysquare"
  Begin Offset : 48491
  Content : granarysquare
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.1251139919040725e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "people"
  Begin Offset : 58810
  Content : people
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.122991958865896e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "kings"
  Begin Offset : 105876
  Content : kings
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.1198287362931296e-05
Sentiment: magnitude: 0.4000000059604645


Name: "people"
  Begin Offset : 37632
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.0965147491078824e-05
Sentiment: 

Name: "people"
  Begin Offset : 38283
  Content : people
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.093787356396206e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "kathak dance styles"
  Begin Offset : 44206
  Content : kathak dance styles
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.0930910472525284e-05
Sentiment: 

Name: "people"
  Begin Offset : 43234
  Content : people
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.0887440263759345e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "power"
  Begin Offset : 61902
  Content : power
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.0769340557744727e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "snow amp rain"
  Begin Offset : 63025
  Content : snow amp rain
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.0732451452640817e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "people"
  Begin Offset : 57688
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.072521551279351e-05
Sentiment: 

Name: "westminster cathedral"
  Begin Offset : 49091
  Content : westminster cathedral
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 91801
  Content : westminster cathedral
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 156900
  Content : westminster cathedral
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 4.068050839123316e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.20000000298023224


Name: "aichoketrust biggsytravels"
  Begin Offset : 12462
  Content : aichoketrust biggsytravels
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 4.064860331709497e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pics"
  Begin Offset : 51663
  Content : pics
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.062797597725876e-05
Sentiment: 

Name: "toevho"
  Begin Offset : 29266
  Content : toevho
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.0610113501315936e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aichoketrust biggsytravels"
  Begin Offset : 15297
  Content : aichoketrust biggsytravels
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 4.058180275023915e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival"
  Begin Offset : 126339
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.047832408105023e-05
Sentiment: 

Name: "aists"
  Begin Offset : 41547
  Content : aists
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 4.0436203562421724e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1"
  Begin Offset : 21636
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 4.042293949169107e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "westminster westminsterabby"
  Begin Offset : 83066
  Content : westminster westminsterabby
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 102146
  Content : westminster westminsterabby
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 102875
  Content : westminster westminsterabby
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 4.04101301683113e-05
Sentiment: magnitude: 1.600000023841858
score: 0.5


Name: "landmarks streets"
  Begin Offset : 64896
  Content : landmarks streets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.0093604184221476e-05
Sentiment: 

Name: "city aichoketrust"
  Begin Offset : 128718
  Content : city aichoketrust
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.001803608844057e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust"
  Begin Offset : 142967
  Content : aichoketrust
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 3.996908344561234e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "aichoketrust"
  Begin Offset : 145910
  Content : aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.9955957618076354e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "biuk"
  Begin Offset : 48912
  Content : biuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.993042264482938e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "biuk"
  Begin Offset : 50311
  Content : biuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.991035191575065e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "flickr biuk"
  Begin Offset : 51152
  Content : flickr  biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.991035191575065e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "thanks"
  Begin Offset : 38613
  Content : thanks
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.981292320531793e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "kingscross raindropskeepfallingonmyhead dslr nightmoves 1"
  Begin Offset : 14432
  Content : kingscross raindropskeepfallingonmyhead dslr nightmoves 1
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.963005292462185e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "event"
  Begin Offset : 124373
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.9362392271868885e-05
Sentiment: 

Name: "events"
  Begin Offset : 126731
  Content : events
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.935499262297526e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "event"
  Begin Offset : 136467
  Content : event
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.9319609641097486e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "event"
  Begin Offset : 140848
  Content : event
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.930616003344767e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "event"
  Begin Offset : 149056
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.928034129785374e-05
Sentiment: 

Name: "event"
  Begin Offset : 152693
  Content : event
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.9267935790121555e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "westend"
  Begin Offset : 133433
  Content : westend
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.917532376362942e-05
Sentiment: 

Name: "lots"
  Begin Offset : 26219
  Content : lots
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.913139516953379e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "kings"
  Begin Offset : 122847
  Content : kings
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.867402483592741e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "kings"
  Begin Offset : 122880
  Content : kings
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.867402483592741e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "kings"
  Begin Offset : 123186
  Content : kings
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.867402483592741e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lampounette lumiere kings"
  Begin Offset : 123852
  Content : lampounette lumiere kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.8666639738949016e-05
Sentiment: 

Name: "kings"
  Begin Offset : 124799
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.8666639738949016e-05
Sentiment: 

Name: "taste rainbow king"
  Begin Offset : 125902
  Content : taste rainbow king
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.8659371057292446e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "passing kings"
  Begin Offset : 128666
  Content : passing kings
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.865221151500009e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "kings"
  Begin Offset : 127910
  Content : kings
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.865221151500009e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "king"
  Begin Offset : 131851
  Content : king
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.8638208934571594e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sliceofthecity visitlondon londonlumiere"
  Begin Offset : 49247
  Content : sliceofthecity visitlondon londonlumiere
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 51111
  Content : sliceofthecity visitlondon londonlumiere
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 51022
  Content : sliceofthecity visitlondon londonlumiere
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.86294414056465e-05
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "delays fi king"
  Begin Offset : 138293
  Content : delays fi  king
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.861796358251013e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "westminster london"
  Begin Offset : 91352
  Content : westminster london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.8569443859159946e-05
Sentiment: 

Name: "piccadilly stjames jermynstreet london"
  Begin Offset : 95130
  Content : piccadilly stjames jermynstreet london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.854065653285943e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "charlie lumiere lumierelondon leicestersquare london"
  Begin Offset : 102973
  Content : charlie lumiere  lumierelondon leicestersquare london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 3.850482971756719e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "london thisislondon londonatnight londonlife"
  Begin Offset : 107377
  Content : london thisislondon londonatnight londonlife
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 3.848789128824137e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumierelondon kingscross granarysquare visitlondon"
  Begin Offset : 79478
  Content : lumierelondon kingscross granarysquare visitlondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 3.842756268568337e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "south bank king cross"
  Begin Offset : 168889
  Content : south bank king cross
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 169381
  Content : south bank king cross
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 169506
  Content : south bank king cross
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.836937321466394e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "deputy mayor"
  Begin Offset : 64737
  Content : deputy mayor
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.836896939901635e-05
Sentiment: 

Name: "gt mondaymotivation aichoketrust"
  Begin Offset : 43186
  Content : gt mondaymotivation  aichoketrust
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.829340130323544e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "flickr iesphotos cityatnight london"
  Begin Offset : 67404
  Content : flickr iesphotos cityatnight  london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.8273530662991107e-05
Sentiment: 

Name: "london southbank london"
  Begin Offset : 70858
  Content : london southbank  london
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.824580562650226e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "mondaymotivation ginoclock ginuary grosvenor_gbi mayfair london"
  Begin Offset : 35414
  Content : mondaymotivation ginoclock  ginuary  grosvenor_gbi mayfair london
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 3.81485624529887e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "visitlondon aichoketrust"
  Begin Offset : 64947
  Content : visitlondon aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.809525151154958e-05
Sentiment: 

Name: "european"
  Begin Offset : 10037
  Content : european
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 36227
  Content : european
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 41650
  Content : european
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.800869671977125e-05
Sentiment: 

Name: "visit"
  Begin Offset : 151301
  Content : visit
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.8000973290763795e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "highlight hope"
  Begin Offset : 47648
  Content : highlight  hope
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.7960246118018404e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "abbey"
  Begin Offset : 97756
  Content : abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.790724076679908e-05
Sentiment: 

Name: "highlight hope"
  Begin Offset : 56424
  Content : highlight  hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.7888243241468444e-05
Sentiment: 

Name: "highlight hope"
  Begin Offset : 56536
  Content : highlight  hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.7888243241468444e-05
Sentiment: 

Name: "highlight hope"
  Begin Offset : 60551
  Content : highlight  hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.785606168094091e-05
Sentiment: 

Name: "highlight hope"
  Begin Offset : 61563
  Content : highlight  hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.785606168094091e-05
Sentiment: 

Name: "highlight hope"
  Begin Offset : 61845
  Content : highlight  hope
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.784077489399351e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "hope"
  Begin Offset : 61686
  Content : hope
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.784077489399351e-05
Sentiment: 

Name: "swing"
  Begin Offset : 122701
  Content : swing
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 133069
  Content : swing
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.7816378608113155e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "abbey"
  Begin Offset : 68837
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.763966742553748e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "abbey"
  Begin Offset : 69076
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.763966742553748e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "abbey"
  Begin Offset : 68663
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.763966742553748e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "tmnikonian aichoketrust"
  Begin Offset : 68096
  Content : tmnikonian  aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 3.760082836379297e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "abbey"
  Begin Offset : 75870
  Content : abbey
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.7588139093713835e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "abbey"
  Begin Offset : 76044
  Content : abbey
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.7588139093713835e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "abbey"
  Begin Offset : 78786
  Content : abbey
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.7564397644018754e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "abbey"
  Begin Offset : 81954
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.7541831261478364e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "abbey"
  Begin Offset : 80986
  Content : abbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.7541831261478364e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "foodie domesticgoddess"
  Begin Offset : 100111
  Content : foodie domesticgoddess
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 124743
  Content : foodie domesticgoddess
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.753186683752574e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.10000000149011612


Name: "covent garden"
  Begin Offset : 18145
  Content : covent garden
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 114201
  Content : covent garden
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.7511221307795495e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "urbana lovemesomelights postcardslond1"
  Begin Offset : 16888
  Content : urbana lovemesomelights  postcardslond1
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.7511221307795495e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "levanterman lumierelondon aichoketrust southbanklondon"
  Begin Offset : 60617
  Content : levanterman lumierelondon aichoketrust southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.748983726836741e-05
Sentiment: 

Name: "pyramids"
  Begin Offset : 2034
  Content : pyramids
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.7473091651918367e-05
Sentiment: 

Name: "people"
  Begin Offset : 134622
  Content : people
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.741580439964309e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival lights"
  Begin Offset : 128211
  Content : festival lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.7340822018450126e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "photos"
  Begin Offset : 104816
  Content : photos
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.726966679096222e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "wabbey westminsterabbey postcardslond1"
  Begin Offset : 31615
  Content : wabbey westminsterabbey  postcardslond1
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.724633279489353e-05
Sentiment: 

Name: "momento"
  Begin Offset : 64689
  Content : momento
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.716669380082749e-05
Sentiment: 

Name: "teacupheaven"
  Begin Offset : 7502
  Content : teacupheaven
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.715453203767538e-05
Sentiment: 

Name: "pop dinner champagne"
  Begin Offset : 7885
  Content : pop dinner champagne
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.715453203767538e-05
Sentiment: 

Name: "terrace"
  Begin Offset : 7452
  Content : terrace
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.715453203767538e-05
Sentiment: 

Name: "people"
  Begin Offset : 104118
  Content : people
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.7067726225359365e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "shadow puppets"
  Begin Offset : 8886
  Content : shadow puppets
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.705255585373379e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "people"
  Begin Offset : 106845
  Content : people
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.705142080434598e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "bloom westminstercath"
  Begin Offset : 108688
  Content : bloom westminstercath
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.692231621243991e-05
Sentiment: 

Name: "avweekjuliet"
  Begin Offset : 12712
  Content : avweekjuliet
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.6899316910421476e-05
Sentiment: 

Name: "marathon"
  Begin Offset : 15798
  Content : marathon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.683867907966487e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "filipa"
  Begin Offset : 18200
  Content : filipa
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.673756873467937e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "palette"
  Begin Offset : 22455
  Content : palette
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.669446596177295e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "chance"
  Begin Offset : 82272
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.665603435365483e-05
Sentiment: 

Name: "chance"
  Begin Offset : 82396
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.665603435365483e-05
Sentiment: 

Name: "badgerust fox amp badger"
  Begin Offset : 76553
  Content : badgerust fox amp badger
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.662271410576068e-05
Sentiment: 

Name: "break london besties"
  Begin Offset : 25366
  Content : break london besties
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.661904338514432e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "design innovation medal"
  Begin Offset : 27683
  Content : design innovation medal
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.658563218777999e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "kings"
  Begin Offset : 120759
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.637122790678404e-05
Sentiment: 

Name: "wabbey westminsterabbey mvpicsss"
  Begin Offset : 21264
  Content : wabbey westminsterabbey  mvpicsss
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 3.636296605691314e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lumierelondon londonwhispers"
  Begin Offset : 165350
  Content : lumierelondon  londonwhispers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.633977030403912e-05
Sentiment: 

Name: "wrap"
  Begin Offset : 92122
  Content : wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.629958882811479e-05
Sentiment: 

Name: "lumierelondon aichoketrust wrap"
  Begin Offset : 96672
  Content : lumierelondon  aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.627303158282302e-05
Sentiment: 

Name: "granary square"
  Begin Offset : 95681
  Content : granary square
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.612964428612031e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "granary square"
  Begin Offset : 102949
  Content : granary square
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.609605846577324e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "granary square"
  Begin Offset : 105595
  Content : granary square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.6088047636440024e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "king cross granary square"
  Begin Offset : 105414
  Content : king cross granary square
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.6088047636440024e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "dataweb granary square"
  Begin Offset : 107301
  Content : dataweb  granary square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.608018232625909e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "chance"
  Begin Offset : 114396
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.604860103223473e-05
Sentiment: 

Name: "granary square"
  Begin Offset : 119768
  Content : granary square
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.6035733501194045e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "amp"
  Begin Offset : 66031
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.603555160225369e-05
Sentiment: 

Name: "photos"
  Begin Offset : 93247
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.597678369260393e-05
Sentiment: 

Name: "aquarium telephone box"
  Begin Offset : 136929
  Content : aquarium telephone box
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.594059307943098e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "bum rossbolwill aquarium telephone box"
  Begin Offset : 136001
  Content : bum  rossbolwill  aquarium telephone box
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.594059307943098e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "borough redbridge regents"
  Begin Offset : 40943
  Content : borough redbridge  regents
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.593022847780958e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "kings"
  Begin Offset : 120331
  Content : kings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.5925993870478123e-05
Sentiment: 

Name: "telephone box"
  Begin Offset : 141750
  Content : telephone box
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.5922275856137276e-05
Sentiment: 

Name: "borough redbridge regents"
  Begin Offset : 45945
  Content : borough redbridge  regents
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.586843013181351e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "king cross granary square"
  Begin Offset : 73823
  Content : king cross granary square
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.582870340324007e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "places"
  Begin Offset : 103060
  Content : places
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.582545468816534e-05
Sentiment: 

Name: "berkeley square"
  Begin Offset : 76842
  Content : berkeley square
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.5805478546535596e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "amp pandora box"
  Begin Offset : 77671
  Content : amp pandora box
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.57635690306779e-05
Sentiment: 

Name: "southbank"
  Begin Offset : 105694
  Content : southbank
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.5737117286771536e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "borough redbridge regents"
  Begin Offset : 62005
  Content : borough redbridge  regents
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.573680078261532e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "borough redbridge regents"
  Begin Offset : 62632
  Content : borough redbridge  regents
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.573680078261532e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "borough redbridge regents"
  Begin Offset : 63480
  Content : borough redbridge  regents
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.573680078261532e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "city"
  Begin Offset : 128273
  Content : city
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.5736531572183594e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city"
  Begin Offset : 129353
  Content : city
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.5736531572183594e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "regent"
  Begin Offset : 64484
  Content : regent
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.572282730601728e-05
Sentiment: 

Name: "pa exhibition"
  Begin Offset : 33811
  Content : pa  exhibition
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.57115022779908e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "team"
  Begin Offset : 33690
  Content : team
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.57115022779908e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "exhibition"
  Begin Offset : 36184
  Content : exhibition
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.5686371120391414e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "team"
  Begin Offset : 39482
  Content : team
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.5662615118781105e-05
Sentiment: magnitude: 1.0
score: 0.5


Name: "team"
  Begin Offset : 53024
  Content : team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.5525103157851845e-05
Sentiment: 

Name: "team"
  Begin Offset : 58899
  Content : team
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.5477354686008766e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "teams"
  Begin Offset : 58271
  Content : teams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.5477354686008766e-05
Sentiment: 

Name: "teams"
  Begin Offset : 58197
  Content : teams
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.5477354686008766e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "video"
  Begin Offset : 39579
  Content : video
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.533067865646444e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "westminsterabbey london"
  Begin Offset : 125624
  Content : westminsterabbey london
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.524486965034157e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "westminsterabbey london"
  Begin Offset : 125348
  Content : westminsterabbey london
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 3.524486965034157e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "visitlondon aichoketrust solomongreyband philippemorvan london"
  Begin Offset : 134515
  Content : visitlondon aichoketrust solomongreyband philippemorvan  london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.5219334677094594e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nightlife hatmanoflondon southbanklondon"
  Begin Offset : 136615
  Content : nightlife hatmanoflondon  southbanklondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.51966118614655e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere london marshalljulius london"
  Begin Offset : 148564
  Content : lumiere london    marshalljulius london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 3.5178014513803646e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "miss"
  Begin Offset : 118696
  Content : miss
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.513599585858174e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "cirquebijou amp lambethacademy students"
  Begin Offset : 41592
  Content : cirquebijou amp lambethacademy students
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.511110116960481e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "architecture"
  Begin Offset : 38552
  Content : architecture
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.506643042783253e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "road closures"
  Begin Offset : 138205
  Content : road closures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 151803
  Content : road closures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 152950
  Content : road closures
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.506469147396274e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "folks"
  Begin Offset : 47686
  Content : folks
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.496567296679132e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "visitlondon lumiere london biuk"
  Begin Offset : 42537
  Content : visitlondon lumiere london  biuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.49283182004001e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "folks"
  Begin Offset : 56574
  Content : folks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.489934897515923e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "folks"
  Begin Offset : 61883
  Content : folks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.485562410787679e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "folks"
  Begin Offset : 64403
  Content : folks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.484199623926543e-05
Sentiment: 

Name: "buses"
  Begin Offset : 158606
  Content : buses
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 168741
  Content : buses
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 169273
  Content : buses
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 169660
  Content : buses
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.483301043161191e-05
Sentiment: magnitude: 0.5


Name: "lines stations"
  Begin Offset : 172728
  Content : lines stations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 174265
  Content : lines stations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 175710
  Content : lines stations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
  Begin Offset : 176551
  Content : lines stations
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.480997838778421e-05
Sentiment: magnitude: 1.399999976158142
score: 0.10000000149011612


Name: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
  Begin Offset : 30172
  Content : repoing winkball vickywinkball aichoketrust visitlondon creativeas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 30433
  Content : repoing winkball vickywinkball aichoketrust visitlondon creativeas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 30598
  Content : repoing winkball vickywinkball aichoketrust visitlondon creativeas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.474168261163868e-05
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "pa"
  Begin Offset : 75370
  Content : pa
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.47081950167194e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "pa"
  Begin Offset : 75526
  Content : pa
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.47081950167194e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "installations"
  Begin Offset : 144248
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.466368798399344e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "mayoroflondon"
  Begin Offset : 80880
  Content : mayoroflondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.465231930022128e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chinatown"
  Begin Offset : 34994
  Content : chinatown
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 82953
  Content : chinatown
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 161546
  Content : chinatown
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 3.4610020520631224e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.20000000298023224


Name: "abbey"
  Begin Offset : 150547
  Content : abbey
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.460263542365283e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "way"
  Begin Offset : 120709
  Content : way
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 138581
  Content : way
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.457553975749761e-05
Sentiment: magnitude: 1.7000000476837158
score: 0.800000011920929


Name: "transforms"
  Begin Offset : 33484
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.451754673733376e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 33626
  Content : transforms
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.449177893344313e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival"
  Begin Offset : 132335
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.44703730661422e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 35989
  Content : transforms
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.446750633884221e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "westminster victoria"
  Begin Offset : 107636
  Content : victoria
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 138149
  Content : westminster victoria
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 146480
  Content : westminster victoria
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 151747
  Content : westminster victoria
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 152894
  Content : westminster victoria
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 3.4461223549442366e-05
Sentiment: magnitude: 2.200000047683716
score: 0.30000001192092896


Name: "transforms"
  Begin Offset : 44431
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.438242129050195e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 44836
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.438242129050195e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 47441
  Content : transforms
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.436360202613287e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "transforms"
  Begin Offset : 47032
  Content : transforms
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.436360202613287e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "king cross"
  Begin Offset : 95770
  Content : king cross
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.43491519743111e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "transforms"
  Begin Offset : 48714
  Content : transforms
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.4345590393058956e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "transforms"
  Begin Offset : 63936
  Content : transforms
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.422410736675374e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "placemaking"
  Begin Offset : 43781
  Content : placemaking
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.406804535188712e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "placemaking"
  Begin Offset : 45204
  Content : placemaking
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.406804535188712e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "places"
  Begin Offset : 52392
  Content : places
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.399802153580822e-05
Sentiment: 

Name: "placemaking"
  Begin Offset : 55732
  Content : placemaking
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.396700049052015e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "place"
  Begin Offset : 64514
  Content : place
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.391118298168294e-05
Sentiment: 

Name: "scene pa aichoketrust wrap"
  Begin Offset : 63847
  Content : scene pa   aichoketrust wrap
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.3891115890583023e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  Begin Offset : 16169
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.387437027413398e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "photos"
  Begin Offset : 86724
  Content : photos
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 3.386351090739481e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "chance"
  Begin Offset : 136662
  Content : chance
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.382533395779319e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "london metroldn timeoutlondon lumierelondon lightfestival visitlondon"
  Begin Offset : 40797
  Content : london metroldn timeoutlondon lumierelondon  lightfestival  visitlondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 3.3799045922933146e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "photos"
  Begin Offset : 111229
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.375071901245974e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "photographer"
  Begin Offset : 117790
  Content : photographer
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.373010622453876e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "photographer"
  Begin Offset : 118074
  Content : photographer
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.373010622453876e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "experience"
  Begin Offset : 46314
  Content : experience
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.372543505975045e-05
Sentiment: magnitude: 1.2999999523162842
score: 0.6000000238418579


Name: "photo"
  Begin Offset : 119883
  Content : photo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.37234596372582e-05
Sentiment: 

Name: "child hood collectif coin photo"
  Begin Offset : 120780
  Content : child hood collectif coin photo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.37234596372582e-05
Sentiment: 

Name: "city"
  Begin Offset : 98247
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3707168768160045e-05
Sentiment: 

Name: "city"
  Begin Offset : 106581
  Content : city
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.36764169333037e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "city"
  Begin Offset : 106498
  Content : city
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.36764169333037e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "city"
  Begin Offset : 108453
  Content : city
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.366907549207099e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "things"
  Begin Offset : 103088
  Content : things
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.366578675922938e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "experience"
  Begin Offset : 59287
  Content : experience
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.362928327987902e-05
Sentiment: 

Name: "transform experience"
  Begin Offset : 60190
  Content : transform experience
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.361524431966245e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "transform experience"
  Begin Offset : 61910
  Content : transform experience
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.360167102073319e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "charellemarr"
  Begin Offset : 64540
  Content : charellemarr
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.358853064128198e-05
Sentiment: 

Name: "photography"
  Begin Offset : 67443
  Content : photography
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3576998248463497e-05
Sentiment: 

Name: "photos"
  Begin Offset : 70908
  Content : photos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3552671084180474e-05
Sentiment: 

Name: "英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium lumierelondon"
  Begin Offset : 90631
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.353716601850465e-05
Sentiment: 

Name: "wave"
  Begin Offset : 34585
  Content : wave
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.35192889906466e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "wave"
  Begin Offset : 34895
  Content : wave
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.35192889906466e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "photos"
  Begin Offset : 76455
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.351870327605866e-05
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "blue wave king cross photography"
  Begin Offset : 78726
  Content : blue wave king cross  photography
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.349753387738019e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "intentions check installations"
  Begin Offset : 115370
  Content : intentions check  installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.349133476149291e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "photos"
  Begin Offset : 81791
  Content : photos
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.347740857861936e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aquarium fish"
  Begin Offset : 41453
  Content : aquarium fish
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.3452259231125936e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city"
  Begin Offset : 85514
  Content : city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3363121474394575e-05
Sentiment: 

Name: "works"
  Begin Offset : 91285
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.33497446263209e-05
Sentiment: 

Name: "works"
  Begin Offset : 95349
  Content : works
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.332484993734397e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "works"
  Begin Offset : 98735
  Content : works
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 3.33090647473e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "works"
  Begin Offset : 100625
  Content : works
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 3.330139588797465e-05
Sentiment: magnitude: 0.8999999761581421


Name: "roads"
  Begin Offset : 46286
  Content : roads
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.3232015994144604e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht ilyasayub_photo"
  Begin Offset : 24085
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht   ilyasayub_photo
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 3.313600973342545e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "phone box favourite"
  Begin Offset : 38026
  Content : phone box favourite
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.313479101052508e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon lumierelondon2018 visitlondon"
  Begin Offset : 63332
  Content : lumierelondon lumierelondon2018  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 91751
  Content : lumierelondon lumierelondon2018  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 108710
  Content : lumierelondon2018  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.311713953735307e-05
Sentiment: magnitude: 0.10000000149011612


Name: "worry works"
  Begin Offset : 65652
  Content : worry works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.310641841380857e-05
Sentiment: 

Name: "crowd"
  Begin Offset : 42389
  Content : crowd
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.30939692503307e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "favourites"
  Begin Offset : 43967
  Content : favourites
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3075015380745754e-05
Sentiment: 

Name: "granary square"
  Begin Offset : 125056
  Content : granary square
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.304622805444524e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "granary square"
  Begin Offset : 125803
  Content : granary square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.3040014386642724e-05
Sentiment: 

Name: "berkeley square"
  Begin Offset : 130263
  Content : berkeley square
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.302787081338465e-05
Sentiment: 

Name: "works"
  Begin Offset : 78019
  Content : works
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.301555261714384e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sea granary square"
  Begin Offset : 146889
  Content : sea granary square
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.298265437479131e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "works"
  Begin Offset : 88481
  Content : works
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.2958767405943945e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "works"
  Begin Offset : 88275
  Content : works
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.2958767405943945e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "works"
  Begin Offset : 87901
  Content : works
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.2958767405943945e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "crowd"
  Begin Offset : 63673
  Content : crowd
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.293559711892158e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "mattcooperphoto letsyogalondon regram theladytravels"
  Begin Offset : 16093
  Content : mattcooperphoto letsyogalondon regram  theladytravels
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 30812
  Content : mattcooperphoto letsyogalondon regram
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.291718167020008e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "reflectors"
  Begin Offset : 35128
  Content : reflectors
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.290505992481485e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "stop"
  Begin Offset : 14888
  Content : stop
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.2838204788276926e-05
Sentiment: 

Name: "newwestend"
  Begin Offset : 46787
  Content : newwestend
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.2815540180308744e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "ray catcher"
  Begin Offset : 37093
  Content : ray catcher
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.281051976955496e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "southbank"
  Begin Offset : 98797
  Content : southbank
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.2807245588628575e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "southbanklondon"
  Begin Offset : 101723
  Content : southbanklondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.279969314462505e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "newwestend"
  Begin Offset : 50742
  Content : newwestend
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.278185613453388e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "newwestend"
  Begin Offset : 50387
  Content : newwestend
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.278185613453388e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "southbank"
  Begin Offset : 107208
  Content : southbank
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.277785799582489e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "pa catch"
  Begin Offset : 48825
  Content : pa  catch
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.2694464607629925e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "ron haselden"
  Begin Offset : 83482
  Content : ron haselden
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 152746
  Content : ron haselden
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 153506
  Content : ron haselden
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
  Begin Offset : 154440
  Content : ron haselden
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 155482
  Content : ron haselden
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 163681
  Content : ron haselden
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 163953
  Content : ron haselden
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 164365
  Content : ron haselden
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 3.267275678808801e-05
Sentiment: magnitude: 2.799999952316284
score: 0.10000000149011612


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag biuk"
  Begin Offset : 10754
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.261885285610333e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "wabbey lumierelondon2018 visitlondon"
  Begin Offset : 108403
  Content : wabbey lumierelondon2018  visitlondon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 110003
  Content : wabbey lumierelondon2018  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.256629497627728e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "southbanklondon"
  Begin Offset : 82251
  Content : southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.249861765652895e-05
Sentiment: 

Name: "chinatown amp southbank"
  Begin Offset : 83293
  Content : chinatown amp southbank
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.248919892939739e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "southbanklondon"
  Begin Offset : 86598
  Content : southbanklondon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.247101267334074e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "music"
  Begin Offset : 35698
  Content : music
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.2456231565447524e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "streets"
  Begin Offset : 160707
  Content : streets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 161538
  Content : streets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.22914456774015e-05
Sentiment: 

Name: "aworks"
  Begin Offset : 55940
  Content : aworks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.2280080631608143e-05
Sentiment: 

Name: "colour timeout"
  Begin Offset : 84689
  Content : colour timeout
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.227668275940232e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag electricpedals"
  Begin Offset : 31109
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  electricpedals
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.225278851459734e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "music"
  Begin Offset : 61393
  Content : music
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.225266118533909e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "thank"
  Begin Offset : 133634
  Content : thank
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.217080302420072e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
  Begin Offset : 46845
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.214576281607151e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust wrap"
  Begin Offset : 33548
  Content : aichoketrust wrap
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.211614239262417e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "regent street traffic"
  Begin Offset : 92658
  Content : regent street traffic
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.210709473933093e-05
Sentiment: 

Name: "aichoketrust wrap"
  Begin Offset : 35911
  Content : aichoketrust wrap
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.209353963029571e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "regent street traffic"
  Begin Offset : 95715
  Content : regent street traffic
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.20912768074777e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "regent street traffic"
  Begin Offset : 95982
  Content : regent street traffic
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.20912768074777e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust"
  Begin Offset : 57447
  Content : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.2054114853963256e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "redbridgelive umbrellaproject thisisredbridge mylocalculture aichoketrust"
  Begin Offset : 62101
  Content : redbridgelive umbrellaproject thisisredbridge mylocalculture  aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.202779407729395e-05
Sentiment: 

Name: "traffic"
  Begin Offset : 113881
  Content : traffic
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.20271028613206e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "hats"
  Begin Offset : 22663
  Content : hats
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.2010622817324474e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "winterlights yourcanarywharf thegl0betrotter westminster abbey"
  Begin Offset : 39174
  Content : winterlights yourcanarywharf  thegl0betrotter westminster abbey
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 3.200943683623336e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "traffic"
  Begin Offset : 121675
  Content : traffic
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.200165519956499e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "wrap"
  Begin Offset : 46967
  Content : wrap
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.1996787583921105e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "regent street pa"
  Begin Offset : 135059
  Content : regent street pa
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.1994033633964136e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust wrap"
  Begin Offset : 48636
  Content : aichoketrust wrap
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.198002013959922e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "mayoroflondon staing"
  Begin Offset : 129549
  Content : mayoroflondon staing
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 129533
  Content : visitlondon amp
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.196897159796208e-05
Sentiment: magnitude: 1.399999976158142
score: 0.699999988079071


Name: "people"
  Begin Offset : 105310
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.1967552786227316e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "highlight"
  Begin Offset : 61675
  Content : highlight
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.189224662492052e-05
Sentiment: 

Name: "た電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium westminster abbey"
  Begin Offset : 51551
  Content : た電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.188601112924516e-05
Sentiment: 

Name: "frictions regent street standing water"
  Begin Offset : 97050
  Content : frictions regent street standing water
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.186553294654004e-05
Sentiment: 

Name: "traffic"
  Begin Offset : 88605
  Content : traffic
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.173874574713409e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "totastemaker lumiere marshalljulius london leicester square"
  Begin Offset : 34312
  Content : totastemaker lumiere  marshalljulius london leicester square
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 3.169260889990255e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "treat"
  Begin Offset : 42675
  Content : treat
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.1661758839618415e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "stations"
  Begin Offset : 47971
  Content : stations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.160972482874058e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "streets"
  Begin Offset : 95224
  Content : streets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.154625665047206e-05
Sentiment: 

Name: "life borrower king cross"
  Begin Offset : 89540
  Content : life borrower king cross
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.154340083710849e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "street"
  Begin Offset : 98321
  Content : street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.153871148242615e-05
Sentiment: 

Name: "regent street"
  Begin Offset : 98847
  Content : regent street
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 3.153131183353253e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "tubes"
  Begin Offset : 62284
  Content : tubes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.1510237022303045e-05
Sentiment: 

Name: "jubilee line baker street"
  Begin Offset : 106092
  Content : jubilee line baker street
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.1509935070062056e-05
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "roaming streets"
  Begin Offset : 115425
  Content : roaming streets
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.147676034132019e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "streets"
  Begin Offset : 116885
  Content : streets
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.147676034132019e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "street"
  Begin Offset : 68328
  Content : street
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.131608900730498e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chandeliers"
  Begin Offset : 75317
  Content : chandeliers
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.127097079413943e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "chandeliers"
  Begin Offset : 75473
  Content : chandeliers
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.127097079413943e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "street"
  Begin Offset : 85080
  Content : street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.121679765172303e-05
Sentiment: 

Name: "shopping guide"
  Begin Offset : 50954
  Content : shopping guide
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.1214287446346134e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "legacy"
  Begin Offset : 36427
  Content : legacy
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.120856126770377e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "street"
  Begin Offset : 87472
  Content : street
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.1208157452056184e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "ici themayfairhotel"
  Begin Offset : 94925
  Content : ici   themayfairhotel
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 94921
  Content : par
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.119649409200065e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "south bank pa city stars"
  Begin Offset : 98577
  Content : south bank pa  city stars
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 3.11946241708938e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "fox amp badger stars"
  Begin Offset : 100962
  Content : fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.1187442800728604e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival"
  Begin Offset : 153797
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.117891901638359e-05
Sentiment: 

Name: "rain"
  Begin Offset : 119436
  Content : rain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 3.1175597541732714e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "legacy"
  Begin Offset : 39694
  Content : legacy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.116808511549607e-05
Sentiment: magnitude: 0.8999999761581421


Name: "badgerust fox amp badger stars"
  Begin Offset : 113540
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.114699575235136e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "frictions lumierelondon fox"
  Begin Offset : 92703
  Content : frictions  lumierelondon fox
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.111071418970823e-05
Sentiment: 

Name: "legacy"
  Begin Offset : 53072
  Content : legacy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.106752774328925e-05
Sentiment: 

Name: "legacy"
  Begin Offset : 58636
  Content : legacy
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.102577102254145e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "legacy"
  Begin Offset : 65373
  Content : legacy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0988172511570156e-05
Sentiment: 

Name: "pattenden couesy aichoke aists rainbow lumierelondon"
  Begin Offset : 145339
  Content : pattenden couesy aichoke aists rainbow lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.0977316782809794e-05
Sentiment: 

Name: "fox amp badger stars"
  Begin Offset : 73254
  Content : fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.0959890864323825e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "dreams"
  Begin Offset : 73548
  Content : dreams
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.0949446227168664e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "spirits"
  Begin Offset : 120587
  Content : spirits
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0944891477702186e-05
Sentiment: 

Name: "photography"
  Begin Offset : 125143
  Content : photography
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0925766623113304e-05
Sentiment: 

Name: "exhibits"
  Begin Offset : 68539
  Content : exhibits
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.0921401048544794e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "videography musicvideo zacdenman badgerust fox amp badger stars"
  Begin Offset : 79155
  Content : videography musicvideo zacdenman  badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.091974213020876e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "photos"
  Begin Offset : 128422
  Content : photos
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.09142233163584e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "badgerust fox amp badger stars"
  Begin Offset : 80058
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.091033795499243e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "oppounity"
  Begin Offset : 41019
  Content : oppounity
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.090952304773964e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photography"
  Begin Offset : 133027
  Content : photography
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0903025617590174e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "photos"
  Begin Offset : 131749
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.0903025617590174e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "photos"
  Begin Offset : 131844
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.0903025617590174e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "dreams"
  Begin Offset : 82605
  Content : dreams
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.090116661041975e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "photos"
  Begin Offset : 134634
  Content : photos
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.08975504594855e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "dreams"
  Begin Offset : 82801
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.089220990659669e-05
Sentiment: 

Name: "badgerust fox amp badger stars"
  Begin Offset : 85924
  Content : badgerust fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.088346420554444e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "badgerust fox amp badger stars"
  Begin Offset : 85601
  Content : badgerust fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.088346420554444e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "photo"
  Begin Offset : 145327
  Content : photo
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.087130608037114e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "photos"
  Begin Offset : 145678
  Content : photos
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.086626747972332e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "photos"
  Begin Offset : 149622
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.086129800067283e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "photos"
  Begin Offset : 149112
  Content : photos
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.086129800067283e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "display"
  Begin Offset : 98101
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.085727439611219e-05
Sentiment: 

Name: "photos"
  Begin Offset : 150168
  Content : photos
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.085639400524087e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "photo"
  Begin Offset : 151027
  Content : photo
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.085639400524087e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "photo"
  Begin Offset : 151418
  Content : photo
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.085639400524087e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "oppounity"
  Begin Offset : 46021
  Content : oppounity
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.08563576254528e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "display"
  Begin Offset : 98562
  Content : display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0850034818286076e-05
Sentiment: 

Name: "dubai"
  Begin Offset : 55388
  Content : dubai
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 55372
  Content : ductack theatre
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.082515104324557e-05
Sentiment: magnitude: 0.10000000149011612


Name: "mason window display"
  Begin Offset : 110307
  Content : mason window display
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0815797799732536e-05
Sentiment: 

Name: "displays"
  Begin Offset : 112826
  Content : displays
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.080931128351949e-05
Sentiment: 

Name: "fox"
  Begin Offset : 82856
  Content : fox
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.077935252804309e-05
Sentiment: 

Name: "chance"
  Begin Offset : 37861
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.077164728892967e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city"
  Begin Offset : 152008
  Content : city
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.076385473832488e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 40714
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.075220956816338e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "oppounity"
  Begin Offset : 62081
  Content : oppounity
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.0743121897103265e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "oppounity"
  Begin Offset : 62708
  Content : oppounity
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.0743121897103265e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "oppounity"
  Begin Offset : 63556
  Content : oppounity
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 3.0743121897103265e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "chance"
  Begin Offset : 42574
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.073373591178097e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "something"
  Begin Offset : 64289
  Content : something
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.073147308896296e-05
Sentiment: 

Name: "phone box"
  Begin Offset : 101201
  Content : phone box
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.0726259865332395e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "fish phone box"
  Begin Offset : 103848
  Content : fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.0719318601768464e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "chance"
  Begin Offset : 44286
  Content : chance
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.071613173233345e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "red telephone box"
  Begin Offset : 106220
  Content : red telephone box
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.0712501029483974e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chance"
  Begin Offset : 48997
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.0683229852002114e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "chance"
  Begin Offset : 49123
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0683229852002114e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 48921
  Content : chance
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.0683229852002114e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "red telephone box"
  Begin Offset : 117127
  Content : red telephone box
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0674022127641365e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 51245
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.0667804821860045e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 51321
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.0667804821860045e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 50675
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0667804821860045e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "mayfair"
  Begin Offset : 115124
  Content : mayfair
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0663675715913996e-05
Sentiment: 

Name: "chance"
  Begin Offset : 52154
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0652994610136375e-05
Sentiment: 

Name: "chance"
  Begin Offset : 52577
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0652994610136375e-05
Sentiment: 

Name: "chance"
  Begin Offset : 52230
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0652994610136375e-05
Sentiment: 

Name: "chance"
  Begin Offset : 53735
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54115
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54039
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53583
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54714
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53963
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54790
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53507
  Content : chance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chance"
  Begin Offset : 54936
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54866
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53887
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53811
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54638
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54410
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54334
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54562
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 53659
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54486
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 54258
  Content : chance
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.0638748285127804e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "awork entre les rangs _kanva behindthescenes jmrobes343jmr"
  Begin Offset : 4295
  Content : awork entre les rangs _kanva behindthescenes jmrobes343jmr
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
  Begin Offset : 32321
  Content : awork entre les rangs _kanva behindthescenes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 33757
  Content : awork entre les rangs _kanva
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 3.063468466280028e-05
Sentiment: magnitude: 1.0
score: 0.20000000298023224


Name: "miss"
  Begin Offset : 139902
  Content : miss
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.062226824113168e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "lumierelondon woxxy lumiere lumierelondon lumierelondon2018"
  Begin Offset : 93033
  Content : lumierelondon   woxxy lumiere lumierelondon  lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.054267290281132e-05
Sentiment: 

Name: "care"
  Begin Offset : 37731
  Content : care
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.053424370591529e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "description"
  Begin Offset : 141136
  Content : description
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 142311
  Content : description
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.0524675821652636e-05
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "london lumiere rudie1750 lumierelondon2018"
  Begin Offset : 97420
  Content : london lumiere rudie1750  lumierelondon2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.0520324798999354e-05
Sentiment: 

Name: "quocatron lumiere lumierelondon lumiere2018"
  Begin Offset : 107144
  Content : quocatron lumiere  lumierelondon lumiere2018
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 3.0485833121929318e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "works"
  Begin Offset : 124136
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.048078724532388e-05
Sentiment: 

Name: "work"
  Begin Offset : 124355
  Content : work
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 3.048078724532388e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "haya luz segunda edición del festival de luces en londres lumierelondon"
  Begin Offset : 112022
  Content : haya luz segunda edición del festival de luces en londres  lumierelondon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 3.0472887374344282e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "fish phone box"
  Begin Offset : 78414
  Content : fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.046251913474407e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "waterlicht granarysquare kingscross lumierelondon"
  Begin Offset : 117481
  Content : waterlicht granarysquare kingscross  lumierelondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 3.0454277293756604e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "fish phone box"
  Begin Offset : 85672
  Content : fish phone box
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.0426777811953798e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "beasts"
  Begin Offset : 87262
  Content : beasts
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 3.0418357710004784e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "illuminatedriv fish phone box"
  Begin Offset : 86118
  Content : illuminatedriv fish phone box
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.0418357710004784e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "work"
  Begin Offset : 149272
  Content : work
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.041724812646862e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "experience lovelondon fish phone box"
  Begin Offset : 88122
  Content : experience  lovelondon fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.0410123144974932e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "phone box"
  Begin Offset : 87634
  Content : phone box
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0410123144974932e-05
Sentiment: 

Name: "south bank"
  Begin Offset : 84285
  Content : south bank
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
  Begin Offset : 86640
  Content : south bank
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.0393635825021192e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "wave pa exhibition"
  Begin Offset : 130780
  Content : wave pa  exhibition
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.0283224987215362e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "london lumierelondon2018 lumiere"
  Begin Offset : 78059
  Content : london lumierelondon2018  lumiere
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 3.0244289519032463e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "women"
  Begin Offset : 35867
  Content : women
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.014941103174351e-05
Sentiment: 

Name: "treasure hunt"
  Begin Offset : 41913
  Content : treasure hunt
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.007700252055656e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "moon water jd southbanklondon"
  Begin Offset : 134159
  Content : moon water jd  southbanklondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.9994182114023715e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "treasure hunt"
  Begin Offset : 57408
  Content : treasure hunt
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.995766408275813e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "guide rossbolwill aquarium telephone box"
  Begin Offset : 140039
  Content : guide  rossbolwill  aquarium telephone box
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.9867478588130325e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "exitmagazine maxcoopermax"
  Begin Offset : 128551
  Content : exitmagazine  maxcoopermax
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
  Begin Offset : 128520
  Content : youtube london light festival
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.9769606044283137e-05
Sentiment: magnitude: 1.100000023841858
score: 0.5


Name: "videoproduction zacvideo studiosession"
  Begin Offset : 2771
  Content : videoproduction zacvideo studiosession
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.9685808840440586e-05
Sentiment: 

Name: "soho"
  Begin Offset : 42094
  Content : soho
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.9651877412106842e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "display"
  Begin Offset : 128150
  Content : display
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.9645178074133582e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "carnabylondon"
  Begin Offset : 47096
  Content : carnabylondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.961866994155571e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aquarium"
  Begin Offset : 117152
  Content : aquarium
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.958073491754476e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "aquarium"
  Begin Offset : 119835
  Content : aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.9574905056506395e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.30000001192092896


Name: "field flower"
  Begin Offset : 35110
  Content : field flower
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.948176370409783e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "aquarium"
  Begin Offset : 78392
  Content : aquarium
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.937676981673576e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "traffic"
  Begin Offset : 123731
  Content : traffic
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.9352482670219615e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "traffic"
  Begin Offset : 131129
  Content : traffic
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.9336175430216826e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "aquarium"
  Begin Offset : 89206
  Content : aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.9326241929084063e-05
Sentiment: 

Name: "aquarium"
  Begin Offset : 89032
  Content : aquarium
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.9326241929084063e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "traffic"
  Begin Offset : 133994
  Content : traffic
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.9325703508220613e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "traffic"
  Begin Offset : 135235
  Content : traffic
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.9325703508220613e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "traffic"
  Begin Offset : 134339
  Content : traffic
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.9325703508220613e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aquarium"
  Begin Offset : 89364
  Content : aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.9318474844330922e-05
Sentiment: 

Name: "rain king cross"
  Begin Offset : 99157
  Content : rain king cross
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 2.9252998501760885e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "lumiere experience king cross"
  Begin Offset : 110510
  Content : lumiere experience king cross
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.9220534997875802e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aist"
  Begin Offset : 81685
  Content : aist
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.910609146056231e-05
Sentiment: 

Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag chrisschorah"
  Begin Offset : 19931
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  chrisschorah
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 2.9103124688845128e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.6000000238418579


Name: "aists"
  Begin Offset : 87974
  Content : aists
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.9073496989440173e-05
Sentiment: 

Name: "merrypranksters engcathedrals"
  Begin Offset : 21227
  Content : merrypranksters   engcathedrals
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 2.9068978619761765e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "sights"
  Begin Offset : 41347
  Content : sights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.9053629987174645e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon visitlondon tflbusales"
  Begin Offset : 27186
  Content : lumierelondon visitlondon  tflbusales
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 2.898275852203369e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "street"
  Begin Offset : 124115
  Content : street
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.885397225327324e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "bond street"
  Begin Offset : 127621
  Content : bond street
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.884320383600425e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "regent street"
  Begin Offset : 132543
  Content : regent street
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.8832755560870282e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "street"
  Begin Offset : 133901
  Content : street
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.8827646019635722e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "jubilee line baker street"
  Begin Offset : 136296
  Content : jubilee line baker street
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8822609237977304e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "earlham street"
  Begin Offset : 154605
  Content : earlham street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8780272259609774e-05
Sentiment: magnitude: 0.10000000149011612


Name: "south bank"
  Begin Offset : 101795
  Content : south bank
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.8715789085254073e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "south bank"
  Begin Offset : 104679
  Content : south bank
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.8702928830171004e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "south bank"
  Begin Offset : 105213
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8702928830171004e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "world"
  Begin Offset : 49351
  Content : world
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.864319867512677e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "nandosuk badgerust fox amp badger stars"
  Begin Offset : 123100
  Content : nandosuk   badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8551319701364264e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "badgerust fox amp badger stars"
  Begin Offset : 124982
  Content : badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8545868190121837e-05
Sentiment: 

Name: "dreams"
  Begin Offset : 125443
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.8540500352391973e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "dreams"
  Begin Offset : 126887
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8540500352391973e-05
Sentiment: 

Name: "badgerust fox amp badger stars"
  Begin Offset : 130385
  Content : badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.853000842151232e-05
Sentiment: 

Name: "voyage badgerust fox amp badger stars"
  Begin Offset : 131552
  Content : voyage  badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.852487887139432e-05
Sentiment: 

Name: "lumierelondon lumiere badgerust fox amp badger stars"
  Begin Offset : 132669
  Content : lumierelondon lumiere   badgerust fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.852487887139432e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "badgerust fox amp badger stars"
  Begin Offset : 131971
  Content : badgerust fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.852487887139432e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "dreams"
  Begin Offset : 135447
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.8514839868876152e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "dreams"
  Begin Offset : 136545
  Content : dreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.8514839868876152e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fox amp badger stars"
  Begin Offset : 138969
  Content : fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.8509928597486578e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "dreams"
  Begin Offset : 137917
  Content : dreams
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.8509928597486578e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "badgerust fox amp badger stars"
  Begin Offset : 139913
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.8505084628704935e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "badgerust fox amp badger stars"
  Begin Offset : 141859
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.8500309781520627e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "someone"
  Begin Offset : 73675
  Content : someone
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.8491234843386337e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "lumierelondon badgerust fox amp badger stars"
  Begin Offset : 148773
  Content : lumierelondon  badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.8486361770774238e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "badgerust fox amp badger stars"
  Begin Offset : 151902
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.8477366868173704e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "fox amp badger stars"
  Begin Offset : 153685
  Content : fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.84729539998807e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installation light spirit"
  Begin Offset : 97800
  Content : installation light spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8455791834858246e-05
Sentiment: 

Name: "flower"
  Begin Offset : 33734
  Content : flower
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8412254323484376e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "spirit"
  Begin Offset : 116831
  Content : spirit
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.839989792846609e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "neon bikes reflection rain"
  Begin Offset : 91183
  Content : neon bikes reflection rain
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8344933525659144e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rain"
  Begin Offset : 98914
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8310359994065948e-05
Sentiment: 

Name: "rain"
  Begin Offset : 99033
  Content : rain
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.8310359994065948e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "rain"
  Begin Offset : 101425
  Content : rain
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.8303842555033043e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "rain"
  Begin Offset : 104092
  Content : rain
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.8297446988290176e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "rain"
  Begin Offset : 105535
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8291166017879732e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "oxfordcircus"
  Begin Offset : 105091
  Content : oxfordcircus
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8291166017879732e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rain"
  Begin Offset : 105822
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8291166017879732e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rain"
  Begin Offset : 107017
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.828499964380171e-05
Sentiment: 

Name: "rain"
  Begin Offset : 107096
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.828499964380171e-05
Sentiment: 

Name: "rain"
  Begin Offset : 108206
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.828499964380171e-05
Sentiment: 

Name: "rain"
  Begin Offset : 106819
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.828499964380171e-05
Sentiment: 

Name: "rain"
  Begin Offset : 107768
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.828499964380171e-05
Sentiment: 

Name: "rain"
  Begin Offset : 109575
  Content : rain
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.82789405900985e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "rainfall"
  Begin Offset : 111582
  Content : rainfall
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.8272987037780695e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "rain"
  Begin Offset : 114582
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8267135348869488e-05
Sentiment: 

Name: "light spirit"
  Begin Offset : 66113
  Content : light spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.826531999744475e-05
Sentiment: 

Name: "rain"
  Begin Offset : 116084
  Content : rain
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.826138006639667e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation light spirit"
  Begin Offset : 68881
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8254929929971695e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installation light spirit"
  Begin Offset : 68707
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8254929929971695e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installation light spirit"
  Begin Offset : 69120
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8254929929971695e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rain"
  Begin Offset : 119744
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8250153263797984e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "rain"
  Begin Offset : 122492
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8244674467714503e-05
Sentiment: 

Name: "display"
  Begin Offset : 128100
  Content : display
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.8220001695444807e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation light spirit"
  Begin Offset : 75914
  Content : installation light spirit
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.821624730131589e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "installation light spirit"
  Begin Offset : 76088
  Content : installation light spirit
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.821624730131589e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "displays"
  Begin Offset : 130686
  Content : displays
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.821485213644337e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation light spirit"
  Begin Offset : 78830
  Content : installation light spirit
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.819842666212935e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "displays"
  Begin Offset : 139025
  Content : displays
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.819499422912486e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation light spirit"
  Begin Offset : 81998
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8181484594824724e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "light spirit"
  Begin Offset : 82694
  Content : light spirit
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8181484594824724e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installation light spirit"
  Begin Offset : 81030
  Content : installation light spirit
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8181484594824724e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "spirit"
  Begin Offset : 83537
  Content : spirit
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.8173319151392207e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "light spirit"
  Begin Offset : 83686
  Content : light spirit
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.8173319151392207e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "rain"
  Begin Offset : 66609
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.8127460609539412e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "london rain"
  Begin Offset : 69401
  Content : london rain
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.8117119654780254e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "regent street alberich rossbolwill aquarium telephone box"
  Begin Offset : 135602
  Content : regent street alberich   rossbolwill  aquarium telephone box
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.8093178116250783e-05
Sentiment: 

Name: "japan"
  Begin Offset : 11336
  Content : japan
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 11386
  Content : japan
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.8089618353988044e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "evening rain"
  Begin Offset : 89488
  Content : evening rain
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.80052081507165e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "rain"
  Begin Offset : 91068
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.7997946745017543e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon visitlondon trafalgar"
  Begin Offset : 65278
  Content : lumierelondon  visitlondon trafalgar
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.7931690055993386e-05
Sentiment: 

Name: "theltda tonyqpr123 lumierelondon"
  Begin Offset : 126498
  Content : theltda tonyqpr123 lumierelondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.7917019906453788e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "photos"
  Begin Offset : 68994
  Content : photos
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.790253347484395e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierefestival lumierelondon lumiere lumierelondon2018"
  Begin Offset : 132809
  Content : lumierefestival  lumierelondon lumiere lumierelondon2018
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.79017385764746e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.30000001192092896


Name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
  Begin Offset : 134771
  Content : lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 2.7896794563275762e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "granarysquare"
  Begin Offset : 100477
  Content : granarysquare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.788517485896591e-05
Sentiment: 

Name: "lumierelondon lumierelondon2018 visitlondon robbrown678 lumierelondon"
  Begin Offset : 139524
  Content : lumierelondon lumierelondon2018  visitlondon  robbrown678 lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.788237907225266e-05
Sentiment: 

Name: "benoit deseille lumierelondon2018"
  Begin Offset : 152659
  Content : benoit deseille lumierelondon2018
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 2.7855265216203406e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visit website"
  Begin Offset : 65747
  Content : visit website
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.781101102300454e-05
Sentiment: 

Name: "way"
  Begin Offset : 75073
  Content : way
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.7751302695833147e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "highlight"
  Begin Offset : 88820
  Content : highlight
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.7704916647053324e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "pics"
  Begin Offset : 64219
  Content : pics
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7662379579851404e-05
Sentiment: 

Name: "victoriabid greypointe cubitt"
  Begin Offset : 3219
  Content : victoriabid  greypointe  cubitt
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.7638463507173583e-05
Sentiment: 

Name: "canonukandie visitlondon aichoketrust southbanklondon jakubkrupa"
  Begin Offset : 3881
  Content : canonukandie visitlondon aichoketrust southbanklondon  jakubkrupa
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.7638463507173583e-05
Sentiment: 

Name: "rain"
  Begin Offset : 107363
  Content : rain
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.759673043328803e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "rain"
  Begin Offset : 114026
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7579300876823254e-05
Sentiment: 

Name: "people"
  Begin Offset : 105848
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.7575182684813626e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "treat rain"
  Begin Offset : 116451
  Content : treat  rain
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.7573685656534508e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "aquarium"
  Begin Offset : 89901
  Content : aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.756735193543136e-05
Sentiment: 

Name: "people"
  Begin Offset : 115741
  Content : people
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.7546151613933034e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "people"
  Begin Offset : 115755
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7546151613933034e-05
Sentiment: 

Name: "video"
  Begin Offset : 127513
  Content : video
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.7545438570086844e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "people"
  Begin Offset : 117256
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.754063461907208e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "people"
  Begin Offset : 119518
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.75352067546919e-05
Sentiment: magnitude: 0.20000000298023224


Name: "londonislovinit thelondoneye lovelondon visitlondon londoneye thebroadwaysw1"
  Begin Offset : 4580
  Content : londonislovinit thelondoneye lovelondon visitlondon londoneye   thebroadwaysw1
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 2.750077510427218e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "treasure hunt"
  Begin Offset : 144093
  Content : treasure hunt
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.749980012595188e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "snow amp rain"
  Begin Offset : 85441
  Content : snow amp rain
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.7345953640178777e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "shots"
  Begin Offset : 42736
  Content : shots
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.7301912268740125e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "walkers"
  Begin Offset : 45555
  Content : walkers
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.7271336875855923e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "biuk"
  Begin Offset : 47505
  Content : biuk
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.7271336875855923e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "50 aists edgillwhl"
  Begin Offset : 10888
  Content : 50 aists  edgillwhl
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 2.7266984034213237e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "walk"
  Begin Offset : 47959
  Content : walk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.7257045076112263e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nofilters"
  Begin Offset : 50568
  Content : nofilters
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.7243342628935352e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "sights"
  Begin Offset : 54214
  Content : sights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.7217529350309633e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon westminsterabbey"
  Begin Offset : 98369
  Content : westminsterabbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 122804
  Content : lumierelondon westminsterabbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.7213394787395373e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "everyone"
  Begin Offset : 57239
  Content : everyone
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7205340302316472e-05
Sentiment: 

Name: "capital"
  Begin Offset : 55962
  Content : capital
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7205340302316472e-05
Sentiment: 

Name: "love motion"
  Begin Offset : 60110
  Content : love motion
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.7182231860933825e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "city streets"
  Begin Offset : 105013
  Content : city streets
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.718043833738193e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "everyone"
  Begin Offset : 64810
  Content : everyone
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.716063136176672e-05
Sentiment: 

Name: "thisislondon lumierelondon travel culturetrip londonphotography stillnojob hireme thebroadwaysw1"
  Begin Offset : 21780
  Content : thisislondon  lumierelondon travel culturetrip londonphotography stillnojob hireme  thebroadwaysw1
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 2.706417035369668e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "fish phonebox aquarium"
  Begin Offset : 152617
  Content : fish phonebox aquarium
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.7056266844738275e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aquarium"
  Begin Offset : 154575
  Content : aquarium
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.7052075893152505e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag thebroadwaysw1"
  Begin Offset : 23831
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  thebroadwaysw1
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.7035179300582968e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "details"
  Begin Offset : 64378
  Content : details
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6989260732079856e-05
Sentiment: 

Name: "aists"
  Begin Offset : 129376
  Content : aists
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.6877571144723333e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "south bank"
  Begin Offset : 158217
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.6862089725909755e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "camera"
  Begin Offset : 38680
  Content : camera
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.6809992050402798e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "thanks"
  Begin Offset : 117962
  Content : thanks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.678380587894935e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "camera"
  Begin Offset : 42715
  Content : camera
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.6776962840813212e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "case study events management students"
  Begin Offset : 45288
  Content : case study events management students
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.676162330317311e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "communities"
  Begin Offset : 45437
  Content : communities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.676162330317311e-05
Sentiment: 

Name: "students"
  Begin Offset : 43894
  Content : students
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.676162330317311e-05
Sentiment: magnitude: 1.2999999523162842
score: 0.30000001192092896


Name: "south bank king cross"
  Begin Offset : 136425
  Content : south bank king cross
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.674000097613316e-05
Sentiment: 

Name: "need suppo"
  Begin Offset : 49396
  Content : need suppo
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.671858783287462e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "ballerinas"
  Begin Offset : 55284
  Content : ballerinas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.668224806257058e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "commission"
  Begin Offset : 62237
  Content : commission
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.664881685632281e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "people"
  Begin Offset : 108037
  Content : people
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.6569039619062096e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "wave brightnights"
  Begin Offset : 136723
  Content : wave brightnights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6557499950286e-05
Sentiment: 

Name: "fish check phone box check"
  Begin Offset : 116714
  Content : fish check phone box check
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6473264369997196e-05
Sentiment: 

Name: "look"
  Begin Offset : 37741
  Content : look
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.642769322847016e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lovelondon visitlondon"
  Begin Offset : 137887
  Content : lovelondon  visitlondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.637267971294932e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "road closures"
  Begin Offset : 121627
  Content : road closures
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 2.6283571060048416e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "scenes"
  Begin Offset : 39944
  Content : scenes
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.624497574288398e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "oxford street"
  Begin Offset : 115317
  Content : oxford street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 164292
  Content : oxford street
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 2.6217190679744817e-05
Sentiment: magnitude: 0.20000000298023224


Name: "scenes"
  Begin Offset : 48293
  Content : scenes
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.618610415083822e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "scenes"
  Begin Offset : 48206
  Content : scenes
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.618610415083822e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "ballet rambe projection"
  Begin Offset : 113668
  Content : ballet rambe projection
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6154471925110556e-05
Sentiment: 

Name: "westminster westminsterabbey"
  Begin Offset : 133787
  Content : westminster westminsterabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
  Begin Offset : 149745
  Content : westminster westminsterabbey
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.613645301607903e-05
Sentiment: magnitude: 0.699999988079071
score: 0.20000000298023224


Name: "miss"
  Begin Offset : 122310
  Content : miss
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.613368815218564e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "miss"
  Begin Offset : 122305
  Content : miss
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.613368815218564e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "oxford street wabbey stas"
  Begin Offset : 6109
  Content : oxford street  wabbey  stas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.6122717827092856e-05
Sentiment: 

Name: "go"
  Begin Offset : 62973
  Content : go
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.6103685740963556e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "lumierelondon lumierelondon2018 leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  Begin Offset : 93283
  Content : lumierelondon  lumierelondon2018  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 127550
  Content : leebrowne1971 lumierelondon2018 lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 145805
  Content : leebrowne1971 lumierelondon2018 lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.6059613446705043e-05
Sentiment: 

Name: "mayor"
  Begin Offset : 95181
  Content : mayor
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6041208911919966e-05
Sentiment: 

Name: "miss"
  Begin Offset : 65626
  Content : miss
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.603510074550286e-05
Sentiment: 

Name: "spirit"
  Begin Offset : 126294
  Content : spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.6028572392533533e-05
Sentiment: 

Name: "project"
  Begin Offset : 65900
  Content : project
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.6025234546978027e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "spire"
  Begin Offset : 129220
  Content : spire
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.6023752070614137e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "roads"
  Begin Offset : 101468
  Content : roads
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.6022880774689838e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "roads"
  Begin Offset : 102302
  Content : roads
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.6022880774689838e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "roads"
  Begin Offset : 105034
  Content : roads
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.601122650958132e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "mayoroflondon"
  Begin Offset : 105489
  Content : mayoroflondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.601122650958132e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "spirits"
  Begin Offset : 138459
  Content : spirits
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.6000692741945386e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "miss"
  Begin Offset : 72359
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 71662
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 72580
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 71424
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 72138
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 72801
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 73022
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "miss"
  Begin Offset : 71900
  Content : miss
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.5997358534368686e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "mayoroflondon"
  Begin Offset : 115176
  Content : mayoroflondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.5983841624110937e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "installation light spirit"
  Begin Offset : 150591
  Content : installation light spirit
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.597507045720704e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "projection"
  Begin Offset : 82515
  Content : projection
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5948043912649155e-05
Sentiment: 

Name: "host"
  Begin Offset : 5556
  Content : host
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.5947192625608295e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "peek"
  Begin Offset : 8483
  Content : peek
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.5930285119102336e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "rain"
  Begin Offset : 126137
  Content : rain
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.590162148408126e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "rain"
  Begin Offset : 135803
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5878332962747663e-05
Sentiment: 

Name: "rains"
  Begin Offset : 141009
  Content : rains
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5869479941320606e-05
Sentiment: 

Name: "rain"
  Begin Offset : 140954
  Content : rain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5869479941320606e-05
Sentiment: 

Name: "rains"
  Begin Offset : 140200
  Content : rains
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5869479941320606e-05
Sentiment: 

Name: "leicestersquare aichoketrust"
  Begin Offset : 92732
  Content : leicestersquare aichoketrust
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.5868172087939456e-05
Sentiment: 

Name: "aichoketrust visitlondon rain"
  Begin Offset : 147422
  Content : aichoketrust visitlondon rain
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.5856650609057397e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "host"
  Begin Offset : 7697
  Content : host
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5855411877273582e-05
Sentiment: 

Name: "host"
  Begin Offset : 7087
  Content : host
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5855411877273582e-05
Sentiment: 

Name: "roads"
  Begin Offset : 70150
  Content : roads
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5841976821538992e-05
Sentiment: 

Name: "roads"
  Begin Offset : 90556
  Content : roads
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5741635909071192e-05
Sentiment: 

Name: "chance"
  Begin Offset : 36879
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 47115
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 73932
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 102487
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 103670
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 111059
  Content : chance
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
  Begin Offset : 115102
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 120457
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 126248
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 127496
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 135013
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137470
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137619
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 137997
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 139283
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 142996
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 143548
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 145229
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 145939
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 146332
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 147032
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 147328
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 148146
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 150929
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 151320
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 151526
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 152071
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 152735
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 153270
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 153495
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154429
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154556
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154833
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154919
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 154972
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 155332
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 155471
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 155890
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 156014
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 158968
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 160540
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 161053
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 163074
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 163670
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 163942
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 164354
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 168573
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 175504
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.556842446210794e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "people"
  Begin Offset : 124263
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5563798772054724e-05
Sentiment: 

Name: "street gardens"
  Begin Offset : 47792
  Content : street gardens
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.5528763217153028e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lots"
  Begin Offset : 52380
  Content : lots
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5523728254484013e-05
Sentiment: 

Name: "granary"
  Begin Offset : 126549
  Content : granary
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.5512608772260137e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "granarysquare"
  Begin Offset : 142610
  Content : granarysquare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5476681912550703e-05
Sentiment: 

Name: "producer director cameraman promo coaching music video"
  Begin Offset : 119081
  Content : producer director cameraman promo coaching music video
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5294115403085016e-05
Sentiment: 

Name: "video"
  Begin Offset : 117268
  Content : video
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.5294115403085016e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "work"
  Begin Offset : 148926
  Content : work
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.5286035452154465e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival"
  Begin Offset : 68610
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.524360388633795e-05
Sentiment: 

Name: "patrice warrener wave veigo"
  Begin Offset : 15642
  Content : patrice warrener wave veigo
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.5234947315766476e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "people"
  Begin Offset : 134615
  Content : people
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.5227816877304576e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "mariana"
  Begin Offset : 2894
  Content : mariana
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.5205921701854095e-05
Sentiment: 

Name: "circus"
  Begin Offset : 99848
  Content : circus
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.5165270926663652e-05
Sentiment: magnitude: 0.699999988079071


Name: "circus"
  Begin Offset : 102799
  Content : circus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.5153793103527278e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "circus"
  Begin Offset : 107885
  Content : circus
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.5142728190985508e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "circus"
  Begin Offset : 114129
  Content : circus
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.5126848413492553e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "hat video"
  Begin Offset : 84104
  Content : hat video
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.509733894839883e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "patrice warrener westminsterabbey"
  Begin Offset : 82707
  Content : patrice warrener  westminsterabbey
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.5070030460483395e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "stop"
  Begin Offset : 45486
  Content : stop
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.5039955289685167e-05
Sentiment: 

Name: "trafalgarsquare"
  Begin Offset : 125661
  Content : trafalgarsquare
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.5004746930790134e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "landscape"
  Begin Offset : 52944
  Content : landscape
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4988485165522434e-05
Sentiment: 

Name: "amp culture"
  Begin Offset : 56235
  Content : amp culture
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.496568595233839e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "calls"
  Begin Offset : 58283
  Content : calls
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.495489752618596e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "newwestend"
  Begin Offset : 58023
  Content : newwestend
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.495489752618596e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "aichoketrust kingscrossn1c"
  Begin Offset : 103637
  Content : aichoketrust  kingscrossn1c
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 2.4949729777290486e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "circus"
  Begin Offset : 82563
  Content : circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.492852945579216e-05
Sentiment: 

Name: "circus"
  Begin Offset : 86492
  Content : circus
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.490735460014548e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lighta kingsx"
  Begin Offset : 82755
  Content : lighta kingsx
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.4719129214645363e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "ken kesey"
  Begin Offset : 21217
  Content : ken kesey
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 2.468217098794412e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "cities"
  Begin Offset : 53402
  Content : cities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.465131001372356e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.20000000298023224


Name: "ldn_culture loveldnlovecul aichoketrust justin_venn lumierelondon2018 lumierelondon ilyasayub_photo"
  Begin Offset : 30964
  Content : ldn_culture loveldnlovecul aichoketrust  justin_venn  lumierelondon2018 lumierelondon  ilyasayub_photo
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 2.458805829519406e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  Begin Offset : 92816
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 99883
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 2.4556722564739175e-05
Sentiment: magnitude: 0.4000000059604645


Name: "thank"
  Begin Offset : 136170
  Content : thank
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.453025444992818e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "sound"
  Begin Offset : 36201
  Content : sound
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.446664984745439e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "spaces"
  Begin Offset : 36143
  Content : spaces
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.446664984745439e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "winterlights"
  Begin Offset : 38762
  Content : winterlights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.4450360797345638e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "use"
  Begin Offset : 38540
  Content : use
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.4450360797345638e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "whizz"
  Begin Offset : 41874
  Content : whizz
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.442023833282292e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "flamingo animatronics"
  Begin Offset : 42072
  Content : flamingo animatronics
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.442023833282292e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chinatownlondon"
  Begin Offset : 104179
  Content : chinatownlondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.4414972358499654e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sights amp sounds"
  Begin Offset : 45734
  Content : sights amp sounds
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.4392889827140607e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "city tour"
  Begin Offset : 45621
  Content : city tour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4392889827140607e-05
Sentiment: 

Name: "lumiere lumierelondon thisislondon westminster abbey"
  Begin Offset : 104747
  Content : lumiere  lumierelondon thisislondon westminster abbey
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.438715637254063e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "animals"
  Begin Offset : 47843
  Content : animals
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.4380105969612487e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "colour"
  Begin Offset : 117076
  Content : colour
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.4378970920224674e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "rainbow colours"
  Begin Offset : 118412
  Content : rainbow colours
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4378970920224674e-05
Sentiment: 

Name: "whizz"
  Begin Offset : 57369
  Content : whizz
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
Salience: 2.4323344405274838e-05
Sentiment: magnitude: 0.800000011920929
score: -0.800000011920929


Name: "jacob ladder"
  Begin Offset : 61102
  Content : jacob ladder
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.431318898743484e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "jacob ladder"
  Begin Offset : 60369
  Content : jacob ladder
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.431318898743484e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "jacob ladder"
  Begin Offset : 59600
  Content : jacob ladder
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.431318898743484e-05
Sentiment: 

Name: "jacob ladder"
  Begin Offset : 61214
  Content : jacob ladder
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.431318898743484e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "tourists"
  Begin Offset : 63140
  Content : tourists
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.4303371901623905e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "phone chinatown"
  Begin Offset : 70925
  Content : phone chinatown
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4250724891317077e-05
Sentiment: 

Name: "opp aquarium installation check"
  Begin Offset : 136807
  Content : opp aquarium  installation check
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.424098420306109e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "colour"
  Begin Offset : 85873
  Content : colour
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.4182465494959615e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "pictures"
  Begin Offset : 95914
  Content : pictures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4179566025850363e-05
Sentiment: 

Name: "granarysquare chinatownlondon"
  Begin Offset : 88319
  Content : granarysquare   chinatownlondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.4169228709070012e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "pictures"
  Begin Offset : 103246
  Content : pictures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.4157086954801343e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "pictures"
  Begin Offset : 105989
  Content : pictures
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.4151726393029094e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pictures"
  Begin Offset : 105324
  Content : pictures
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.4151726393029094e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pictures"
  Begin Offset : 105460
  Content : pictures
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.4151726393029094e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "everyone"
  Begin Offset : 109097
  Content : everyone
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.413319452898577e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "everyone"
  Begin Offset : 108960
  Content : everyone
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.413319452898577e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "everyone"
  Begin Offset : 112964
  Content : everyone
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.4123119146679528e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "everyone"
  Begin Offset : 113150
  Content : everyone
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.4123119146679528e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon road closures"
  Begin Offset : 123668
  Content : lumierelondon  road closures
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.410772503935732e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "meeting event liaison team"
  Begin Offset : 98141
  Content : meeting event liaison team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.4043665689532645e-05
Sentiment: 

Name: "nohern lights pa exhibition"
  Begin Offset : 101531
  Content : nohern lights pa  exhibition
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.4032491637626663e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "exhibition"
  Begin Offset : 112583
  Content : exhibition
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.4006292733247392e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "trail"
  Begin Offset : 140373
  Content : trail
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.3989676265046e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "pictures"
  Begin Offset : 73869
  Content : pictures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3978156605153345e-05
Sentiment: 

Name: "project"
  Begin Offset : 125863
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3965742002474144e-05
Sentiment: 

Name: "pictures"
  Begin Offset : 81324
  Content : pictures
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3940750907058828e-05
Sentiment: 

Name: "leakestreet miss"
  Begin Offset : 138697
  Content : leakestreet miss
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.39400706050219e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "miss"
  Begin Offset : 139907
  Content : miss
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.3936005163704976e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "sliceofthecity umbrella project"
  Begin Offset : 145282
  Content : sliceofthecity umbrella project
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.3928036171128042e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "road closures"
  Begin Offset : 87433
  Content : road closures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.3920705643831752e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "road closures"
  Begin Offset : 86270
  Content : road closures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.3920705643831752e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sliceofthecity umbrella project"
  Begin Offset : 151373
  Content : sliceofthecity umbrella project
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.3916480131447315e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "sliceofthecity umbrella project"
  Begin Offset : 150982
  Content : sliceofthecity umbrella project
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.3916480131447315e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "architecture exhibition"
  Begin Offset : 71797
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 72273
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 72494
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 71559
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 72936
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 73157
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 72035
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "architecture exhibition"
  Begin Offset : 72715
  Content : architecture exhibition
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.3857142878114246e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "bye london thisislondon"
  Begin Offset : 34431
  Content : bye  london thisislondon
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.381104786763899e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "energy"
  Begin Offset : 34237
  Content : energy
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.381104786763899e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "cross road"
  Begin Offset : 131239
  Content : cross road
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3805483579053544e-05
Sentiment: 

Name: "cross road"
  Begin Offset : 134449
  Content : cross road
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.3796985260560177e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "cross road"
  Begin Offset : 135345
  Content : cross road
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.3796985260560177e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "buildings"
  Begin Offset : 37173
  Content : buildings
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.3794289518264122e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "roads"
  Begin Offset : 136403
  Content : roads
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.3792828869773075e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "child hood collectif coin"
  Begin Offset : 44565
  Content : child hood collectif coin
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.3735548893455416e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "head"
  Begin Offset : 127328
  Content : head
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.372544076933991e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "spectators"
  Begin Offset : 47939
  Content : spectators
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.3710124878562056e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "architecture"
  Begin Offset : 101297
  Content : architecture
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.3630720534129068e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "folks"
  Begin Offset : 108510
  Content : folks
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.36149880947778e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "street arches"
  Begin Offset : 111749
  Content : street arches
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3604960006196052e-05
Sentiment: 

Name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival aichoketrust"
  Begin Offset : 147221
  Content : visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 2.3603293811902404e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "architecture"
  Begin Offset : 118249
  Content : architecture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.359054451517295e-05
Sentiment: 

Name: "architecture"
  Begin Offset : 117901
  Content : architecture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.359054451517295e-05
Sentiment: 

Name: "folk"
  Begin Offset : 66815
  Content : folk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3483458789996803e-05
Sentiment: 

Name: "folk"
  Begin Offset : 67879
  Content : folk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.347482404729817e-05
Sentiment: 

Name: "gt"
  Begin Offset : 128054
  Content : gt
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.34697599807987e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "pa hope"
  Begin Offset : 141959
  Content : pa  hope
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.3444150428986177e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "folk"
  Begin Offset : 79361
  Content : folk
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.342787956877146e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "architecture"
  Begin Offset : 82742
  Content : architecture
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.341380422876682e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "architecture"
  Begin Offset : 83579
  Content : architecture
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.3407019398291595e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "architecture"
  Begin Offset : 83734
  Content : architecture
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.3407019398291595e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.4000000059604645


Name: "order prints lumierelondon facade landmark architecture"
  Begin Offset : 84600
  Content : order prints lumierelondon facade landmark architecture
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.3400392819894478e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "oppounity"
  Begin Offset : 122254
  Content : oppounity
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 138658
  Content : oppounity
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 139851
  Content : oppounity
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3386710381601006e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "miss"
  Begin Offset : 143301
  Content : miss
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.3349641196546145e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "legacy"
  Begin Offset : 77985
  Content : legacy
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.3279233573703095e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "transforms"
  Begin Offset : 92187
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3239435904542916e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 94116
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3233653337229043e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 94316
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3233653337229043e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 96213
  Content : transforms
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.3227987185236998e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "transforms"
  Begin Offset : 96765
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.322243199159857e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 97667
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.322243199159857e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 96513
  Content : transforms
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.322243199159857e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "set scene"
  Begin Offset : 100766
  Content : set scene
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.320540079381317e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "video"
  Begin Offset : 132791
  Content : video
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.3174050511443056e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "love motion royal"
  Begin Offset : 116969
  Content : love motion royal
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3098857127479278e-05
Sentiment: 

Name: "transforms"
  Begin Offset : 69569
  Content : transforms
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.3058508304529823e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "transforms"
  Begin Offset : 70292
  Content : transforms
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.305027737747878e-05
Sentiment: 

Name: "scifi movie"
  Begin Offset : 40308
  Content : scifi movie
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.3049055016599596e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "transforms"
  Begin Offset : 73466
  Content : transforms
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.3042279281071387e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "perspective"
  Begin Offset : 52430
  Content : perspective
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3024673282634467e-05
Sentiment: 

Name: "visit half price entry"
  Begin Offset : 97846
  Content : visit half price entry
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3010094082565047e-05
Sentiment: 

Name: "ideas"
  Begin Offset : 97524
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.3010094082565047e-05
Sentiment: 

Name: "flamingos"
  Begin Offset : 102444
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2999398424872197e-05
Sentiment: 

Name: "scifi movie"
  Begin Offset : 48443
  Content : scifi movie
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2997352061793208e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "place"
  Begin Offset : 108621
  Content : place
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.2984087991062552e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "place"
  Begin Offset : 108139
  Content : place
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.2984087991062552e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "travel find"
  Begin Offset : 151274
  Content : travel find
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.297678292961791e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "ideas"
  Begin Offset : 111116
  Content : ideas
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.2974327293923125e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "scifi movie"
  Begin Offset : 56871
  Content : scifi movie
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2953727238927968e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "visit half price entry"
  Begin Offset : 69166
  Content : visit half price entry
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.284766742377542e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "visit half price entry"
  Begin Offset : 68927
  Content : visit half price entry
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.284766742377542e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "visit half price entry"
  Begin Offset : 68753
  Content : visit half price entry
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.284766742377542e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "visit half price entry"
  Begin Offset : 75960
  Content : visit half price entry
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.2816388081992045e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "visit half price entry"
  Begin Offset : 76134
  Content : visit half price entry
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.2816388081992045e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "share experience"
  Begin Offset : 92583
  Content : share experience
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.280784428876359e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visit half price entry"
  Begin Offset : 78876
  Content : visit half price entry
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.2801978047937155e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visit half price entry"
  Begin Offset : 82044
  Content : visit half price entry
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2788277419749647e-05
Sentiment: 

Name: "visit half price entry"
  Begin Offset : 81076
  Content : visit half price entry
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2788277419749647e-05
Sentiment: 

Name: "flamingos"
  Begin Offset : 82943
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2781674488214776e-05
Sentiment: 

Name: "experience"
  Begin Offset : 105062
  Content : experience
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.2770362193114124e-05
Sentiment: magnitude: 1.2999999523162842
score: 0.6000000238418579


Name: "share experience"
  Begin Offset : 114319
  Content : share experience
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.2751019059796818e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "london lumierelightfestival lumierelightfestival2018 exitmagazine maxcoopermax"
  Begin Offset : 55198
  Content : london lumierelightfestival lumierelightfestival2018   exitmagazine  maxcoopermax
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.2740239728591405e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "thing"
  Begin Offset : 102013
  Content : thing
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.2704403818352148e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "tracyemin"
  Begin Offset : 46585
  Content : tracyemin
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2649075617664494e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "experiences"
  Begin Offset : 67982
  Content : experiences
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2630276362178847e-05
Sentiment: 

Name: "everyone"
  Begin Offset : 140854
  Content : everyone
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.262755879200995e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "fish"
  Begin Offset : 101216
  Content : fish
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.255717117805034e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "london leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  Begin Offset : 87786
  Content : london  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.2556521798833273e-05
Sentiment: 

Name: "fishes"
  Begin Offset : 106206
  Content : fishes
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.2547068510903046e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "fish"
  Begin Offset : 116636
  Content : fish
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.2523330699186772e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "fish"
  Begin Offset : 116704
  Content : fish
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2523330699186772e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere wave"
  Begin Offset : 120177
  Content : lumiere  wave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2514381271321326e-05
Sentiment: 

Name: "freedom fish"
  Begin Offset : 120971
  Content : freedom fish
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2514381271321326e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "capital"
  Begin Offset : 35296
  Content : capital
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.247679185529705e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "flamingos"
  Begin Offset : 160666
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 161497
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2426669602282345e-05
Sentiment: 

Name: "lighting london night wave"
  Begin Offset : 69021
  Content : lighting london night  wave
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.240835783595685e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amateurphotography lights colour"
  Begin Offset : 125195
  Content : amateurphotography lights colour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.235204192402307e-05
Sentiment: 

Name: "crowds"
  Begin Offset : 94763
  Content : crowds
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2344707758747973e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "illuminatedriv fish"
  Begin Offset : 87614
  Content : illuminatedriv fish
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2331123545882292e-05
Sentiment: 

Name: "crowds"
  Begin Offset : 101481
  Content : crowds
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.2328980776364915e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "fear"
  Begin Offset : 38644
  Content : fear
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "fear"
  Begin Offset : 38190
  Content : fear
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fear"
  Begin Offset : 39155
  Content : fear
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fear"
  Begin Offset : 38117
  Content : fear
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fear"
  Begin Offset : 39372
  Content : fear
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "fear"
  Begin Offset : 38743
  Content : fear
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2298396288533695e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon neon light lighting colour"
  Begin Offset : 154207
  Content : lumierelondon  neon light lighting colour
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2294949303613976e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon neon light lighting colour"
  Begin Offset : 154264
  Content : lumierelondon  neon light lighting colour
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2294949303613976e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "fear"
  Begin Offset : 39818
  Content : fear
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.2284313672571443e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "street level level playing field"
  Begin Offset : 49360
  Content : street level level playing field
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.2234324205783196e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon action"
  Begin Offset : 49559
  Content : visitlondon action
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.222314833488781e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "programme"
  Begin Offset : 52978
  Content : programme
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2212414478417486e-05
Sentiment: 

Name: "london lumiere kingscrossn1c beauty_blah visitlondon kingscrossn1c"
  Begin Offset : 40384
  Content : london lumiere  kingscrossn1c  beauty_blah  visitlondon kingscrossn1c
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 2.2196660211193375e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nkirkwoodlondon celebration"
  Begin Offset : 58904
  Content : nkirkwoodlondon celebration
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.2182557586347684e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "nkirkwoodlondon celebration"
  Begin Offset : 58964
  Content : nkirkwoodlondon celebration
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.2182557586347684e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "progress"
  Begin Offset : 58447
  Content : progress
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.2182557586347684e-05
Sentiment: 

Name: "phone box favourite"
  Begin Offset : 69470
  Content : phone box favourite
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.218167355749756e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "umbrella project regent"
  Begin Offset : 125273
  Content : umbrella project regent
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.217598375864327e-05
Sentiment: 

Name: "faves"
  Begin Offset : 96120
  Content : faves
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2153444660943933e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "david batchelor 60minutespectrum"
  Begin Offset : 1952
  Content : david batchelor 60minutespectrum
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.2136520783533342e-05
Sentiment: 

Name: "cambridge"
  Begin Offset : 3748
  Content : cambridge
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.2136520783533342e-05
Sentiment: 

Name: "crowd"
  Begin Offset : 85692
  Content : crowd
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.2111340513220057e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "pa catch"
  Begin Offset : 96626
  Content : pa  catch
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.210600723628886e-05
Sentiment: 

Name: "crowd"
  Begin Offset : 86153
  Content : crowd
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.210522143286653e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "crowd"
  Begin Offset : 88165
  Content : crowd
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.2099236957728863e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "crowd"
  Begin Offset : 87649
  Content : crowd
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.2099236957728863e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "installation sculpture"
  Begin Offset : 119612
  Content : installation sculpture
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.2036432710592635e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "hq"
  Begin Offset : 36236
  Content : hq
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.201725510531105e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "teams"
  Begin Offset : 140829
  Content : teams
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1965479390928522e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "team"
  Begin Offset : 148325
  Content : team
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1951051166979596e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "sroosegaarde pa catch"
  Begin Offset : 71334
  Content : sroosegaarde pa  catch
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.193451473431196e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "roads"
  Begin Offset : 94750
  Content : roads
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.191646308347117e-05
Sentiment: 

Name: "tinyplanet 360video"
  Begin Offset : 9461
  Content : tinyplanet 360video
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 2.1888086848775856e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet"
  Begin Offset : 9519
  Content : obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 2.1888086848775856e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "show"
  Begin Offset : 82782
  Content : show
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.1886562535655685e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "awork"
  Begin Offset : 92690
  Content : awork
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1883310182602145e-05
Sentiment: 

Name: "gin costs"
  Begin Offset : 38814
  Content : gin costs
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.187296558986418e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "awork"
  Begin Offset : 96014
  Content : awork
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.187252903240733e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "awork"
  Begin Offset : 95747
  Content : awork
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.187252903240733e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "laughter southmoltonstreet musical"
  Begin Offset : 103289
  Content : laughter southmoltonstreet musical
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1852196368854493e-05
Sentiment: 

Name: "music"
  Begin Offset : 109879
  Content : music
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1837906388100237e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "music"
  Begin Offset : 109808
  Content : music
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1837906388100237e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "music"
  Begin Offset : 112359
  Content : music
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1833307982888073e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "music"
  Begin Offset : 111433
  Content : music
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1833307982888073e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "patrols"
  Begin Offset : 141418
  Content : patrols
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.1821510017616674e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "que tengo que hacer para estar"
  Begin Offset : 13211
  Content : que tengo que hacer para estar
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.179756120312959e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumière à londres"
  Begin Offset : 94897
  Content : lumière à londres
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.1776033463538624e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "metpoliceevents londonfire"
  Begin Offset : 98169
  Content : metpoliceevents londonfire
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1770825696876273e-05
Sentiment: 

Name: "katarzyna malejka joachim"
  Begin Offset : 124056
  Content : katarzyna malejka joachim
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 124045
  Content : polish duo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1753015971626155e-05
Sentiment: 

Name: "park"
  Begin Offset : 102739
  Content : park
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.1746911443187855e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite cheekychops"
  Begin Offset : 16583
  Content : silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite   cheekychops
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 2.1730189473601058e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "donotrefreeze"
  Begin Offset : 142177
  Content : donotrefreeze
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 142164
  Content : photo credit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1718296920880675e-05
Sentiment: magnitude: 0.10000000149011612


Name: "westhandyside canopy laugh"
  Begin Offset : 113240
  Content : westhandyside canopy laugh
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.169315303035546e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visitlondon victoriabid createvictoria aichoketrust"
  Begin Offset : 117803
  Content : visitlondon victoriabid createvictoria aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.1676594769814983e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "aichoketrust wrap"
  Begin Offset : 94038
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.163337921956554e-05
Sentiment: 

Name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon btpvolunteers"
  Begin Offset : 24825
  Content : timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  btpvolunteers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1631987692671828e-05
Sentiment: 

Name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon stmaininthefields"
  Begin Offset : 25204
  Content : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon  stmaininthefields
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 2.1631987692671828e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "wrap"
  Begin Offset : 96448
  Content : wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1628102331305854e-05
Sentiment: 

Name: "londonisopen highlights"
  Begin Offset : 99303
  Content : londonisopen highlights
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 2.1617857782985084e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "thing"
  Begin Offset : 102370
  Content : thing
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.1612881027976982e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "american"
  Begin Offset : 27893
  Content : american
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1612249838653952e-05
Sentiment: 

Name: "folk"
  Begin Offset : 135743
  Content : folk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.1605654183076695e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "folk"
  Begin Offset : 137032
  Content : folk
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1605654183076695e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "folk"
  Begin Offset : 136122
  Content : folk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.1605654183076695e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "folk"
  Begin Offset : 140162
  Content : folk
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.1598261810140684e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lightfestival visitlondon aichoketrust westminsterabbey lumiere lumierelondon westminster abbey"
  Begin Offset : 91866
  Content : lightfestival visitlondon aichoketrust westminsterabbey lumiere  lumierelondon westminster abbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1596431906800717e-05
Sentiment: 

Name: "folk"
  Begin Offset : 141844
  Content : folk
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.1594642021227628e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito experiencias londres2018 alloaconnecting"
  Begin Offset : 29717
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito  experiencias londres2018 alloaconnecting
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 2.1593892597593367e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "things"
  Begin Offset : 115734
  Content : things
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.1580455722869374e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "thing"
  Begin Offset : 115455
  Content : thing
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.1580455722869374e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "london architecture"
  Begin Offset : 151984
  Content : london architecture
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.157725793949794e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson"
  Begin Offset : 31464
  Content : aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1576732251560315e-05
Sentiment: 

Name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature fouhstreetdan benjamingammon"
  Begin Offset : 32970
  Content : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  fouhstreetdan benjamingammon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.1576732251560315e-05
Sentiment: 

Name: "fishes"
  Begin Offset : 74415
  Content : fishes
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.157295421056915e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "lights darkness"
  Begin Offset : 118816
  Content : lights darkness
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.156453592760954e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumierelondon kingscross granarysquare visitlondon aichoketrust"
  Begin Offset : 73336
  Content : lumierelondon kingscross granarysquare visitlondon  aichoketrust
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 2.1555082639679313e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "power"
  Begin Offset : 4420
  Content : power
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 29297
  Content : power
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 43773
  Content : power
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 45196
  Content : power
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 55724
  Content : power
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1550009478232823e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "leicestersquare"
  Begin Offset : 78484
  Content : leicestersquare
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.1527126591536216e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "wildlife"
  Begin Offset : 34946
  Content : wildlife
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1502401068573818e-05
Sentiment: 

Name: "dismantling thousands"
  Begin Offset : 33700
  Content : dismantling thousands
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.1502401068573818e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "dinner"
  Begin Offset : 35403
  Content : dinner
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1502401068573818e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "dinner"
  Begin Offset : 38829
  Content : dinner
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.147296254406683e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aichoketrust wrap"
  Begin Offset : 69491
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1470295905601233e-05
Sentiment: 

Name: "amp pandora box brightnights"
  Begin Offset : 70826
  Content : amp pandora box brightnights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.146263068425469e-05
Sentiment: 

Name: "waterlicht sroosegaarde pa catch"
  Begin Offset : 154729
  Content : waterlicht sroosegaarde pa  catch
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.145394500985276e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "amp brightnights"
  Begin Offset : 75704
  Content : amp brightnights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.1440901036839932e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "amp pandora box brightnights"
  Begin Offset : 77939
  Content : amp pandora box brightnights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1427358660730533e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "marshalljulius london leicester square"
  Begin Offset : 75747
  Content : marshalljulius london leicester square
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
Salience: 2.1420366465463303e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "gt brightnights"
  Begin Offset : 82375
  Content : gt brightnights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.141448567272164e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "gt brightnights"
  Begin Offset : 82499
  Content : gt brightnights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.141448567272164e-05
Sentiment: 

Name: "childhood"
  Begin Offset : 81156
  Content : childhood
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.141448567272164e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "hare"
  Begin Offset : 49206
  Content : hare
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.1411262423498556e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "hare"
  Begin Offset : 51070
  Content : hare
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.1400499463197775e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "hare"
  Begin Offset : 50981
  Content : hare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1400499463197775e-05
Sentiment: 

Name: "thought"
  Begin Offset : 52465
  Content : thought
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1390163965406828e-05
Sentiment: 

Name: "neon"
  Begin Offset : 93376
  Content : neon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.138288073183503e-05
Sentiment: 

Name: "something"
  Begin Offset : 100343
  Content : something
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 2.1367539375205524e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "neon"
  Begin Offset : 98816
  Content : neon
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 2.1367539375205524e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "jubileeline"
  Begin Offset : 59310
  Content : jubileeline
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.1361411199904978e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "neon"
  Begin Offset : 105713
  Content : neon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1353052943595685e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "walk station"
  Begin Offset : 107564
  Content : walk station
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.134839814971201e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon neon"
  Begin Offset : 110083
  Content : lumierelondon  neon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1343825210351497e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "tfltrafficnews road closures"
  Begin Offset : 113817
  Content : tfltrafficnews  road closures
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 2.1334913981263526e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "circus tube station"
  Begin Offset : 115918
  Content : circus tube station
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1330570234567858e-05
Sentiment: 

Name: "aworks"
  Begin Offset : 107595
  Content : aworks
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.131107248715125e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "granarysquare rain"
  Begin Offset : 146972
  Content : granarysquare rain
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.1231606297078542e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "road closures"
  Begin Offset : 68289
  Content : road closures
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.1221685528871603e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "king cross station"
  Begin Offset : 70441
  Content : king cross station
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.1214109438005835e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "someone"
  Begin Offset : 78113
  Content : someone
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.1179246687097475e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lighta neon"
  Begin Offset : 82633
  Content : lighta neon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.116652285621967e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lighta neon"
  Begin Offset : 82829
  Content : lighta neon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1160389223950915e-05
Sentiment: 

Name: "power station"
  Begin Offset : 84131
  Content : power station
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.1160389223950915e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "king cross station"
  Begin Offset : 84420
  Content : king cross station
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.1160389223950915e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "road closures"
  Begin Offset : 85041
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.1154397472855635e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "king cross station"
  Begin Offset : 86006
  Content : king cross station
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.114854214596562e-05
Sentiment: 

Name: "audio guide"
  Begin Offset : 102047
  Content : audio guide
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.1105975974933244e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "audio guide"
  Begin Offset : 102404
  Content : audio guide
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.1105975974933244e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "shopping guide"
  Begin Offset : 116907
  Content : shopping guide
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.1074311007396318e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "triptych"
  Begin Offset : 122268
  Content : triptych
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.1061852748971432e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "dot aichoketrust legacy"
  Begin Offset : 91233
  Content : dot  aichoketrust legacy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1047402697149664e-05
Sentiment: 

Name: "flamingos"
  Begin Offset : 126205
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.104735358443577e-05
Sentiment: 

Name: "flamingos"
  Begin Offset : 130331
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1039615603513084e-05
Sentiment: 

Name: "energy"
  Begin Offset : 159785
  Content : energy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 164914
  Content : energy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 166020
  Content : energy
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.1034660676377825e-05
Sentiment: magnitude: 0.6000000238418579


Name: "idea"
  Begin Offset : 135768
  Content : idea
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.102843063767068e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "flamingos"
  Begin Offset : 139240
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.102480902976822e-05
Sentiment: 

Name: "place"
  Begin Offset : 138264
  Content : place
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.102480902976822e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "legacy"
  Begin Offset : 98701
  Content : legacy
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.1021729480708018e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "legacy"
  Begin Offset : 100591
  Content : legacy
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.1016889149905182e-05
Sentiment: magnitude: 0.8999999761581421


Name: "hat details"
  Begin Offset : 84979
  Content : hat details
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.1013616787968203e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "place"
  Begin Offset : 146595
  Content : place
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.1010811906307936e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "place"
  Begin Offset : 147513
  Content : place
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 2.100742858601734e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "visit half price entry"
  Begin Offset : 150637
  Content : visit half price entry
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.1004090740461834e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "places"
  Begin Offset : 150879
  Content : places
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 2.1004090740461834e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "flamingos"
  Begin Offset : 151483
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1004090740461834e-05
Sentiment: 

Name: "idea"
  Begin Offset : 150886
  Content : idea
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.1004090740461834e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "flamingos"
  Begin Offset : 153227
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.100079473166261e-05
Sentiment: 

Name: "place"
  Begin Offset : 153009
  Content : place
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.100079473166261e-05
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "place"
  Begin Offset : 151862
  Content : place
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.100079473166261e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "marlborough"
  Begin Offset : 68415
  Content : marlborough
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 85167
  Content : marlborough
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 86396
  Content : marlborough
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 87559
  Content : marlborough
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.096028401865624e-05
Sentiment: magnitude: 0.8999999761581421


Name: "sculptures"
  Begin Offset : 134732
  Content : sculptures
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.0949815734638833e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust lumierelondon2018 visitlondon"
  Begin Offset : 128356
  Content : aichoketrust lumierelondon2018  visitlondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 2.0852796296821907e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "pictures"
  Begin Offset : 99413
  Content : pictures
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 2.0847332052653655e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "picture"
  Begin Offset : 102667
  Content : picture
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.0837822376051918e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "world"
  Begin Offset : 105085
  Content : world
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.0833198504988104e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pictures"
  Begin Offset : 104602
  Content : pictures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.0833198504988104e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "picture"
  Begin Offset : 110444
  Content : picture
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.0824194507440552e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "picture"
  Begin Offset : 111341
  Content : picture
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.0819810742978007e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "uk"
  Begin Offset : 77746
  Content : uk
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 125842
  Content : uk
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.0810355636058375e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.10000000149011612


Name: "legacy"
  Begin Offset : 87867
  Content : legacy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.0800644051632844e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "legacy"
  Begin Offset : 88241
  Content : legacy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.0800644051632844e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "estate"
  Begin Offset : 35480
  Content : estate
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 2.0722342014778405e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "oppounities"
  Begin Offset : 68202
  Content : oppounities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0705028873635456e-05
Sentiment: 

Name: "chance"
  Begin Offset : 120511
  Content : chance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0697118088719435e-05
Sentiment: 

Name: "mayfair london estate"
  Begin Offset : 44592
  Content : mayfair london estate
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 2.0656636479543522e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "waves"
  Begin Offset : 138399
  Content : waves
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 2.062054591078777e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "appeal"
  Begin Offset : 35560
  Content : appeal
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0602261429303326e-05
Sentiment: 

Name: "swipeleft fish"
  Begin Offset : 152577
  Content : swipeleft fish
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.0596993635990657e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "wabbey westminsterabbey mpsonthewater southbank"
  Begin Offset : 64019
  Content : wabbey westminsterabbey  mpsonthewater southbank
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.0582192519214004e-05
Sentiment: 

Name: "camera lomo"
  Begin Offset : 39408
  Content : camera lomo
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.0574056179611944e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lomographyuk"
  Begin Offset : 39879
  Content : lomographyuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.0561061319313012e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "camera lomo"
  Begin Offset : 39854
  Content : camera lomo
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.0561061319313012e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "beauty"
  Begin Offset : 43357
  Content : beauty
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.0548708562273532e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "performance"
  Begin Offset : 44185
  Content : performance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0536937881843187e-05
Sentiment: 

Name: "srmlondon"
  Begin Offset : 57345
  Content : srmlondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.0467174181248993e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "care"
  Begin Offset : 58245
  Content : care
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.0467174181248993e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "umbrella performance"
  Begin Offset : 64602
  Content : umbrella performance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0442372260731645e-05
Sentiment: 

Name: "ave fi"
  Begin Offset : 64532
  Content : ave fi
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0442372260731645e-05
Sentiment: 

Name: "frog"
  Begin Offset : 65065
  Content : frog
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0442372260731645e-05
Sentiment: 

Name: "favourites"
  Begin Offset : 130204
  Content : favourites
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.0426321498234756e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "crowds"
  Begin Offset : 132563
  Content : crowds
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.0422648958628997e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "visitlondon southbanklondon"
  Begin Offset : 84230
  Content : visitlondon  southbanklondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 2.041143125097733e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "wish"
  Begin Offset : 70671
  Content : wish
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0302992197684944e-05
Sentiment: 

Name: "viewing"
  Begin Offset : 69788
  Content : viewing
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0302992197684944e-05
Sentiment: 

Name: "piece"
  Begin Offset : 103947
  Content : piece
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 2.028874951065518e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "victoria"
  Begin Offset : 59016
  Content : victoria
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 59087
  Content : victoria
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 2.0264445993234403e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "treasure hunt"
  Begin Offset : 121059
  Content : treasure hunt
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.0254839910194278e-05
Sentiment: magnitude: 0.30000001192092896


Name: "light show"
  Begin Offset : 128899
  Content : light show
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.0216635675751604e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "pa catch"
  Begin Offset : 148727
  Content : pa  catch
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.0182023945380934e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "pa catch"
  Begin Offset : 151614
  Content : pa  catch
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 2.0175652025500312e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "waterlicht sroosegaarde pa catch"
  Begin Offset : 152209
  Content : waterlicht sroosegaarde pa  catch
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.0175652025500312e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "plant"
  Begin Offset : 81696
  Content : plant
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0107052478124388e-05
Sentiment: 

Name: "legacy"
  Begin Offset : 92303
  Content : legacy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.003044937737286e-05
Sentiment: 

Name: "sculpture"
  Begin Offset : 93210
  Content : sculpture
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.003044937737286e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "legacy"
  Begin Offset : 95315
  Content : legacy
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 2.0020581359858625e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust legacy"
  Begin Offset : 96829
  Content : aichoketrust legacy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.0015793779748492e-05
Sentiment: 

Name: "legacy"
  Begin Offset : 102227
  Content : legacy
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.0006489648949355e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "job mayoroflondon"
  Begin Offset : 63072
  Content : job mayoroflondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.9981984223704785e-05
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "music"
  Begin Offset : 137874
  Content : music
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.99806072487263e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "carnaby"
  Begin Offset : 119667
  Content : carnaby
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9968540073023178e-05
Sentiment: 

Name: "lumierelondon stjamessquare oxfordstreet regentstreet"
  Begin Offset : 45835
  Content : lumierelondon  stjamessquare oxfordstreet regentstreet
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.9922581486753188e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "thewave veigo eatsleepshootuk"
  Begin Offset : 11252
  Content : thewave veigo  eatsleepshootuk
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.992220313695725e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
  Begin Offset : 148931
  Content : westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.987601353903301e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "londonblogger wintersinlondon nightfestival londonwhispers"
  Begin Offset : 147950
  Content : londonblogger wintersinlondon nightfestival  londonwhispers
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.987601353903301e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
  Begin Offset : 149277
  Content : westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.987601353903301e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "magic"
  Begin Offset : 110159
  Content : magic
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.9866187358275056e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "herroyalj visitlondon thelondoneye kingscrossn1c wabbey"
  Begin Offset : 58515
  Content : herroyalj visitlondon thelondoneye kingscrossn1c wabbey
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.986577990464866e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "mayoroflondon carnabylondon"
  Begin Offset : 73898
  Content : mayoroflondon  carnabylondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9853814592352137e-05
Sentiment: 

Name: "soho"
  Begin Offset : 83094
  Content : soho
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.981709647225216e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "legacy"
  Begin Offset : 88447
  Content : legacy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9800641894107684e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "festival lights"
  Begin Offset : 80097
  Content : festival lights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.979923945327755e-05
Sentiment: 

Name: "amp brightnights"
  Begin Offset : 128015
  Content : amp brightnights
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.9774844986386597e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "wave brightnights"
  Begin Offset : 134256
  Content : wave brightnights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.9764178432524204e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wave brightnights"
  Begin Offset : 138058
  Content : wave brightnights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.975732266146224e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "insight magic"
  Begin Offset : 68125
  Content : insight magic
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.9752504158532247e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "thanks"
  Begin Offset : 89506
  Content : thanks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9752422304009087e-05
Sentiment: 

Name: "london uk"
  Begin Offset : 43372
  Content : london uk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.9749331841012463e-05
Sentiment: 

Name: "lumierelondon images"
  Begin Offset : 92974
  Content : lumierelondon images
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.973424332391005e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "colleague"
  Begin Offset : 97571
  Content : colleague
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9719804186024703e-05
Sentiment: 

Name: "westminsterabbey wabbey"
  Begin Offset : 50216
  Content : westminsterabbey wabbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.9706963939825073e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "installation lovemotion royalacademy"
  Begin Offset : 102545
  Content : installation lovemotion royalacademy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.9706185412360355e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "image"
  Begin Offset : 118331
  Content : image
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.967712705663871e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installation light spirit london"
  Begin Offset : 155398
  Content : installation light spirit  london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9644554413389415e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "streets london"
  Begin Offset : 157266
  Content : streets london
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.9641547623905353e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "london"
  Begin Offset : 159982
  Content : london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9635648641269654e-05
Sentiment: 

Name: "lumière london"
  Begin Offset : 161629
  Content : lumière london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9632750991149805e-05
Sentiment: 

Name: "london"
  Begin Offset : 164798
  Content : london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.9629889720818028e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "londonlumiere lumiere london"
  Begin Offset : 165932
  Content : londonlumiere lumiere london
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.9627063011284918e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "leicestersquare london"
  Begin Offset : 167718
  Content : leicestersquare london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.9624267224571668e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "glow london"
  Begin Offset : 173774
  Content : glow  london
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.9616074496298097e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "delight"
  Begin Offset : 46249
  Content : delight
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.9599585357354954e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "rain someone"
  Begin Offset : 127264
  Content : rain someone
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.9549486751202494e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "case study events management"
  Begin Offset : 43865
  Content : case study events management
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.954770414158702e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "op ed"
  Begin Offset : 45384
  Content : op ed
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.954770414158702e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "ceo"
  Begin Offset : 45363
  Content : ceo
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.954770414158702e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "cities"
  Begin Offset : 45430
  Content : cities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.954770414158702e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.20000000298023224


Name: "station"
  Begin Offset : 127652
  Content : station
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.9545866962289438e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "road closures"
  Begin Offset : 131081
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.9542299924069084e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "image"
  Begin Offset : 79581
  Content : image
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.9535504179657437e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "road closures"
  Begin Offset : 135187
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.9535324099706486e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "road closures"
  Begin Offset : 133946
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.9535324099706486e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "road closures"
  Begin Offset : 134291
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.9535324099706486e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "minds"
  Begin Offset : 49340
  Content : minds
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.9526765754562803e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation trees"
  Begin Offset : 47767
  Content : installation trees
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.9526765754562803e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "engcathedrals"
  Begin Offset : 50622
  Content : engcathedrals
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.951695048774127e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "road closures"
  Begin Offset : 146536
  Content : road closures
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.9515544408932328e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "something"
  Begin Offset : 148285
  Content : something
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9512403014232405e-05
Sentiment: 

Name: "ceo"
  Begin Offset : 53335
  Content : ceo
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.950752266566269e-05
Sentiment: 

Name: "op ed"
  Begin Offset : 53356
  Content : op ed
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.950752266566269e-05
Sentiment: 

Name: "neon"
  Begin Offset : 152543
  Content : neon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.950624027813319e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sights"
  Begin Offset : 152437
  Content : sights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.949946272361558e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "case study events management"
  Begin Offset : 55816
  Content : case study events management
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9489723854348995e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "engcathedrals"
  Begin Offset : 64000
  Content : engcathedrals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.945769508893136e-05
Sentiment: 

Name: "somewhere"
  Begin Offset : 64108
  Content : somewhere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.945769508893136e-05
Sentiment: 

Name: "carnabylondon"
  Begin Offset : 152052
  Content : carnabylondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.942839298862964e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "warning"
  Begin Offset : 129164
  Content : warning
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.9395665731281042e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "cross road directions pall mall"
  Begin Offset : 131189
  Content : cross road directions pall mall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9392127796891145e-05
Sentiment: 

Name: "cross road directions pall mall"
  Begin Offset : 135295
  Content : cross road directions pall mall
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.938520472322125e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "cross road directions pall mall"
  Begin Offset : 134399
  Content : cross road directions pall mall
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.938520472322125e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "cross road directions pall mall"
  Begin Offset : 134054
  Content : cross road directions pall mall
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.938520472322125e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "warning"
  Begin Offset : 135979
  Content : warning
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.9381817764951847e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival lights"
  Begin Offset : 170880
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.9373737814021297e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival light aichoketrust wrap"
  Begin Offset : 44742
  Content : festival light  aichoketrust wrap
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9320672436151654e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "gloves amp scarf"
  Begin Offset : 43616
  Content : gloves amp scarf
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.931547922140453e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "trip"
  Begin Offset : 137191
  Content : trip
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.929725840454921e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "triptych"
  Begin Offset : 138672
  Content : triptych
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9293935110908933e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "triptych"
  Begin Offset : 139865
  Content : triptych
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.9290657292003743e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "royalacademy"
  Begin Offset : 93162
  Content : royalacademy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 139105
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 139389
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
  Begin Offset : 145593
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 164921
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 166027
  Content : royalacademy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 172805
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.9263665308244526e-05
Sentiment: magnitude: 1.899999976158142


Name: "ldn_gov"
  Begin Offset : 64851
  Content : ldn_gov
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.9173456166754477e-05
Sentiment: 

Name: "event hope"
  Begin Offset : 96417
  Content : event hope
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.9102333681075834e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "umbrellas"
  Begin Offset : 99630
  Content : umbrellas
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.9093284208793193e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "umbrellas"
  Begin Offset : 100251
  Content : umbrellas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.9093284208793193e-05
Sentiment: 

Name: "thelondoneye lumierelondon regentstreet piccadilly"
  Begin Offset : 164743
  Content : thelondoneye  lumierelondon regentstreet piccadilly
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 164878
  Content : lighting capital
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.9066656022914685e-05
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "royalacademy piano"
  Begin Offset : 115287
  Content : royalacademy piano
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.9062248611589894e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "chance"
  Begin Offset : 134195
  Content : chance
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.8962715330417268e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "chance"
  Begin Offset : 153615
  Content : chance
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.8931550584966317e-05
Sentiment: magnitude: 11.699999809265137
score: 0.10000000149011612


Name: "coin child hood"
  Begin Offset : 77795
  Content : coin child hood
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8925033145933412e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "umbrellas"
  Begin Offset : 81473
  Content : umbrellas
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.8913662643171847e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "gt mondaymotivation thinkingcity"
  Begin Offset : 46190
  Content : gt mondaymotivation  thinkingcity
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.8901384464697912e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "chrisplant one"
  Begin Offset : 146733
  Content : chrisplant one
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8894337699748576e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "chrisplant one"
  Begin Offset : 147158
  Content : chrisplant one
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8894337699748576e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "cocktails"
  Begin Offset : 156253
  Content : cocktails
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 157710
  Content : cocktails
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8875009118346497e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet"
  Begin Offset : 119914
  Content : visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 120837
  Content : visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.8850703781936318e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "crowds"
  Begin Offset : 99594
  Content : crowds
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8796525182551704e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "crowds"
  Begin Offset : 100215
  Content : crowds
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8796525182551704e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "pics"
  Begin Offset : 101819
  Content : pics
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.8761205865303054e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "wabbey lumierelondon2018 visitlondon aichoketrust"
  Begin Offset : 106434
  Content : wabbey lumierelondon2018  visitlondon  aichoketrust
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.8721597371040843e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "crowds"
  Begin Offset : 81437
  Content : crowds
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.8619693946675397e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "excuse catch check highlights"
  Begin Offset : 133689
  Content : excuse catch  check highlights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.8583681594463997e-05
Sentiment: magnitude: 0.800000011920929
score: 0.10000000149011612


Name: "map"
  Begin Offset : 123047
  Content : map
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.857799361459911e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "billboard planet"
  Begin Offset : 128123
  Content : billboard planet
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.8567512597655877e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "excuse catch check highlights"
  Begin Offset : 149647
  Content : excuse catch  check highlights
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8558928786660545e-05
Sentiment: magnitude: 0.800000011920929
score: 0.10000000149011612


Name: "piece"
  Begin Offset : 136602
  Content : piece
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8554255802882835e-05
Sentiment: 

Name: "plant"
  Begin Offset : 137302
  Content : plant
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.8554255802882835e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "serve"
  Begin Offset : 148350
  Content : serve
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.8545104467193596e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "treasure hunt"
  Begin Offset : 141539
  Content : treasure hunt
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.8544800695963204e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "map"
  Begin Offset : 148084
  Content : map
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.853572393883951e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "aworks"
  Begin Offset : 69844
  Content : aworks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.84936016012216e-05
Sentiment: 

Name: "chance win"
  Begin Offset : 39384
  Content : chance win
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.847233943408355e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "chance win"
  Begin Offset : 38656
  Content : chance win
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.847233943408355e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "chance win"
  Begin Offset : 39830
  Content : chance win
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.8460672436049208e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lighting capital"
  Begin Offset : 93119
  Content : lighting capital
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8442960936226882e-05
Sentiment: 

Name: "brand"
  Begin Offset : 46416
  Content : brand
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.842892015702091e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "pleasures"
  Begin Offset : 45572
  Content : pleasures
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.842892015702091e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "thisislondon leakestarches"
  Begin Offset : 98423
  Content : thisislondon  leakestarches
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.842514393501915e-05
Sentiment: 

Name: "branches"
  Begin Offset : 47860
  Content : branches
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.8419261323288083e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "love motion"
  Begin Offset : 116295
  Content : love motion
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.839326614572201e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "food cocktails"
  Begin Offset : 115467
  Content : food cocktails
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.839326614572201e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "light show"
  Begin Offset : 37195
  Content : light show
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.8390566765447147e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "love motion"
  Begin Offset : 118720
  Content : love motion
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.838958269217983e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "sights"
  Begin Offset : 119728
  Content : sights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.8385959265287966e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "atransformslives"
  Begin Offset : 55125
  Content : atransformslives
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.838432035583537e-05
Sentiment: 

Name: "stewards"
  Begin Offset : 59501
  Content : stewards
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.836870433180593e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "facade"
  Begin Offset : 62313
  Content : facade
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.836128649301827e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "sculptures"
  Begin Offset : 128700
  Content : sculptures
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.8305061530554667e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "cocktails"
  Begin Offset : 70770
  Content : cocktails
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.8292841559741646e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "capital"
  Begin Offset : 69866
  Content : capital
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8292841559741646e-05
Sentiment: 

Name: "sculpture"
  Begin Offset : 139153
  Content : sculpture
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.8288839783053845e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "sculpture"
  Begin Offset : 140278
  Content : sculpture
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.828573294915259e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "sculpture"
  Begin Offset : 139437
  Content : sculpture
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.828573294915259e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "carnabylondon"
  Begin Offset : 146313
  Content : carnabylondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8276665286975913e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "sculpture"
  Begin Offset : 145641
  Content : sculpture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8276665286975913e-05
Sentiment: 

Name: "cocktails"
  Begin Offset : 77615
  Content : cocktails
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.8268474377691746e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "aichoketrust carnabylondon"
  Begin Offset : 153582
  Content : aichoketrust  carnabylondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.826512198022101e-05
Sentiment: 

Name: "cocktails"
  Begin Offset : 77883
  Content : cocktails
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.8262779121869244e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "walk"
  Begin Offset : 79562
  Content : walk
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.8257225747220218e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "courses amp cocktail"
  Begin Offset : 82436
  Content : courses amp cocktail
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.8251806977787055e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "courses amp cocktail"
  Begin Offset : 82312
  Content : courses amp cocktail
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.8251806977787055e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "biuk"
  Begin Offset : 40705
  Content : biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.8193881260231137e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "wiermann frictions"
  Begin Offset : 131408
  Content : wiermann frictions
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8128190276911482e-05
Sentiment: 

Name: "wiermann frictions"
  Begin Offset : 137053
  Content : wiermann frictions
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.8118553271051496e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "2018 leicester square"
  Begin Offset : 136853
  Content : 2018 leicester square
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.8092245227308013e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "production students"
  Begin Offset : 92620
  Content : production students
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.80883398570586e-05
Sentiment: 

Name: "plants"
  Begin Offset : 152388
  Content : plants
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.8078964785672724e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "thelondoneye loki_lego lumierelondon trafalgar square"
  Begin Offset : 150286
  Content : thelondoneye   loki_lego lumierelondon  trafalgar square
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 1.8071301383315586e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "laughter southmoltonstreet musical"
  Begin Offset : 63174
  Content : laughter southmoltonstreet musical
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8070571968564764e-05
Sentiment: 

Name: "mpsprinces team"
  Begin Offset : 130085
  Content : mpsprinces team
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.805219471862074e-05
Sentiment: 

Name: "students"
  Begin Offset : 114367
  Content : students
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8043272575596347e-05
Sentiment: 

Name: "image"
  Begin Offset : 126922
  Content : image
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.8037710106000304e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "images"
  Begin Offset : 133235
  Content : images
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 1.8027836631517857e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "royalacademy"
  Begin Offset : 142424
  Content : royalacademy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.8012307918979786e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "colleagues"
  Begin Offset : 141456
  Content : colleagues
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.8012307918979786e-05
Sentiment: 

Name: "neon ladder"
  Begin Offset : 83503
  Content : neon ladder
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.8010723579209298e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "pinterest board selection books"
  Begin Offset : 130743
  Content : pinterest board selection books
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.8005792298936285e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "festival lights"
  Begin Offset : 167676
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.7996087990468368e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "supercube look camera"
  Begin Offset : 66841
  Content : supercube look camera
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7954112990992144e-05
Sentiment: 

Name: "asalto london victoriabid embspainuk spaincultureuk kingscrossn1c"
  Begin Offset : 144457
  Content : asalto london  victoriabid embspainuk spaincultureuk  kingscrossn1c
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.7931921320268884e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "sights"
  Begin Offset : 75639
  Content : sights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.782963408913929e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "nightlife chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon biuk"
  Begin Offset : 37313
  Content : nightlife chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon  biuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.7816577383200638e-05
Sentiment: 

Name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon biuk"
  Begin Offset : 37782
  Content : mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  biuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.7804715753300115e-05
Sentiment: 

Name: "eye updates"
  Begin Offset : 35309
  Content : eye updates
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.776968565536663e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "food"
  Begin Offset : 149957
  Content : food
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.776010867615696e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "area"
  Begin Offset : 114760
  Content : area
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7674168702797033e-05
Sentiment: 

Name: "lumierelondon timeoutlondon"
  Begin Offset : 125754
  Content : lumierelondon  timeoutlondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.7620197468204424e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "canon"
  Begin Offset : 70915
  Content : canon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7574091543792747e-05
Sentiment: 

Name: "lumierelondon carnabylondon"
  Begin Offset : 39334
  Content : lumierelondon  carnabylondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.753774267854169e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "voyages"
  Begin Offset : 82532
  Content : voyages
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7534668586449698e-05
Sentiment: 

Name: "scenes"
  Begin Offset : 80769
  Content : scenes
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.7534668586449698e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lots"
  Begin Offset : 83392
  Content : lots
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.752958633005619e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "canon"
  Begin Offset : 85893
  Content : canon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.7524624126963317e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "go"
  Begin Offset : 85389
  Content : go
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7524624126963317e-05
Sentiment: 

Name: "power"
  Begin Offset : 108652
  Content : power
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.751154923113063e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierelondon2018 london aquarium"
  Begin Offset : 114136
  Content : lumierelondon2018  london aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.7481166651123203e-05
Sentiment: 

Name: "child hood"
  Begin Offset : 133147
  Content : child hood
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.7459165974287316e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "hope"
  Begin Offset : 132781
  Content : hope
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.7459165974287316e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "child hood"
  Begin Offset : 133850
  Content : child hood
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.7456071873311885e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust aists"
  Begin Offset : 115190
  Content : aichoketrust aists
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.7326974557363428e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "child hood lumiere"
  Begin Offset : 166180
  Content : child hood lumiere
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.727765629766509e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon"
  Begin Offset : 172319
  Content : lumierelondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.7270360331167467e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "carnabylondon london lumiere"
  Begin Offset : 175223
  Content : carnabylondon london lumiere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7267982912017033e-05
Sentiment: 

Name: "night sky"
  Begin Offset : 35205
  Content : night sky
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.7221896996488795e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "go pop"
  Begin Offset : 128640
  Content : go pop
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.7220661902683787e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "benjamingammon"
  Begin Offset : 36260
  Content : benjamingammon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.720977707009297e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "locations"
  Begin Offset : 38000
  Content : locations
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.7198319255840033e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "website"
  Begin Offset : 68230
  Content : website
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.719618376228027e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "levanterman"
  Begin Offset : 39925
  Content : levanterman
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.7187456251122057e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "experience pics"
  Begin Offset : 132586
  Content : experience pics
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.715945836622268e-05
Sentiment: 

Name: "canary wharf adamscottg"
  Begin Offset : 45504
  Content : canary wharf  adamscottg
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.715789403533563e-05
Sentiment: 

Name: "londonwalks ghosts"
  Begin Offset : 45598
  Content : londonwalks ghosts
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.715789403533563e-05
Sentiment: 

Name: "detail"
  Begin Offset : 147805
  Content : detail
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7136288079200312e-05
Sentiment: 

Name: "reasons"
  Begin Offset : 52093
  Content : reasons
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.713200254016556e-05
Sentiment: 

Name: "decision"
  Begin Offset : 52733
  Content : decision
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.713200254016556e-05
Sentiment: 

Name: "fun"
  Begin Offset : 36243
  Content : fun
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7129388652392663e-05
Sentiment: 

Name: "angle"
  Begin Offset : 35148
  Content : angle
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.7120431948569603e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "thing"
  Begin Offset : 96364
  Content : thing
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.711511504254304e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "telephone box"
  Begin Offset : 66721
  Content : telephone box
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.7114953152486123e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aquarium telephone box"
  Begin Offset : 67776
  Content : aquarium telephone box
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7114953152486123e-05
Sentiment: 

Name: "interview harry qedproductions"
  Begin Offset : 57708
  Content : interview harry qedproductions
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.7108974134316668e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "response"
  Begin Offset : 58262
  Content : response
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.7108974134316668e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "breathing difficulties chest pain diabetic"
  Begin Offset : 58297
  Content : breathing difficulties chest pain diabetic
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7108974134316668e-05
Sentiment: 

Name: "drug overdoses"
  Begin Offset : 58350
  Content : drug overdoses
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.7108974134316668e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "development"
  Begin Offset : 58479
  Content : development
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.7108974134316668e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "decision"
  Begin Offset : 62818
  Content : decision
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.709492426016368e-05
Sentiment: 

Name: "list"
  Begin Offset : 64302
  Content : list
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.7088241293095052e-05
Sentiment: 

Name: "aquarium telephone box"
  Begin Offset : 79258
  Content : aquarium telephone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.707444607745856e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lumiere lumierelondon oxfordstreet london oxford street"
  Begin Offset : 127085
  Content : lumiere  lumierelondon oxfordstreet london oxford street
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.7041571481968276e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "tmnikonian christiana72 ganton sttreet carnaby street"
  Begin Offset : 131678
  Content : tmnikonian  christiana72  ganton sttreet carnaby street
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 1.7032243704306893e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lumiere lumierelondon lumierelondon2018 ganton sttreet carnaby street"
  Begin Offset : 131899
  Content : lumiere lumierelondon lumierelondon2018  ganton sttreet carnaby street
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.7032243704306893e-05
Sentiment: magnitude: 0.6000000238418579


Name: "tomodo"
  Begin Offset : 117458
  Content : tomodo
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.7013664546539076e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "night lights"
  Begin Offset : 156372
  Content : night lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.6936093743424863e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival lights"
  Begin Offset : 160264
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6931006030063145e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival lights"
  Begin Offset : 167123
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6923602743190713e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lightbulb"
  Begin Offset : 167433
  Content : lightbulb
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6923602743190713e-05
Sentiment: 

Name: "festival lights"
  Begin Offset : 167353
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6923602743190713e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival lights"
  Begin Offset : 166889
  Content : festival lights
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6923602743190713e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierefestival lights"
  Begin Offset : 166686
  Content : lumierefestival lights
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.6923602743190713e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "light"
  Begin Offset : 168790
  Content : light
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.6921192582231015e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "festival lights"
  Begin Offset : 168027
  Content : festival lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.6921192582231015e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lumierefestival lights"
  Begin Offset : 167741
  Content : lumierefestival lights
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.6921192582231015e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "festival lights"
  Begin Offset : 171142
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.6918811525101773e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lighting light"
  Begin Offset : 172340
  Content : lighting light
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.691645593382418e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival lights"
  Begin Offset : 172958
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.691645593382418e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival lights"
  Begin Offset : 173580
  Content : festival lights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.6914129446377046e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "fun"
  Begin Offset : 125248
  Content : fun
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6860603864188306e-05
Sentiment: 

Name: "sight"
  Begin Offset : 124307
  Content : sight
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.6860603864188306e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "sights"
  Begin Offset : 127248
  Content : sights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.6857433365657926e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "road closures buses"
  Begin Offset : 126109
  Content : road closures buses
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.6857433365657926e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "sights"
  Begin Offset : 126819
  Content : sights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.6857433365657926e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "sights"
  Begin Offset : 127950
  Content : sights
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.685431197984144e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lighting capital"
  Begin Offset : 139062
  Content : lighting capital
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6839376257848926e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lighting capital"
  Begin Offset : 139346
  Content : lighting capital
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6836514987517148e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "motion"
  Begin Offset : 142465
  Content : motion
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.683369373495225e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "wearewaterloouk leakestarches"
  Begin Offset : 144343
  Content : wearewaterloouk leakestarches
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.6830910681164823e-05
Sentiment: magnitude: 0.6000000238418579


Name: "lighting capital"
  Begin Offset : 145550
  Content : lighting capital
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.6828165826154873e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "leakestreetarches"
  Begin Offset : 154992
  Content : leakestreetarches
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.681753565208055e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "leakestreetarches"
  Begin Offset : 154939
  Content : leakestreetarches
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.681753565208055e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "amp culture"
  Begin Offset : 66070
  Content : amp culture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6799038348835893e-05
Sentiment: 

Name: "landscape"
  Begin Offset : 69337
  Content : landscape
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6792862879810855e-05
Sentiment: 

Name: "heres images"
  Begin Offset : 104360
  Content : heres images
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6790365407359786e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "friends"
  Begin Offset : 78589
  Content : friends
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6759278878453188e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "guide amp share pics"
  Begin Offset : 127984
  Content : guide amp share pics
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.6747964764363132e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon"
  Begin Offset : 83790
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 1.6747155314078555e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lightinstallation landscape"
  Begin Offset : 85828
  Content : lightinstallation landscape
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6739615603000857e-05
Sentiment: 

Name: "james piccadilly"
  Begin Offset : 98118
  Content : james piccadilly
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.664471346884966e-05
Sentiment: 

Name: "nofilterneeded lovelondon"
  Begin Offset : 100366
  Content : nofilterneeded lovelondon
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 1
Salience: 1.6640808098600246e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 archdeaconluke trafalgarsquare"
  Begin Offset : 60719
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  archdeaconluke trafalgarsquare
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.6639485693303868e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "visitlondon bealocaltourist phone"
  Begin Offset : 150098
  Content : visitlondon bealocaltourist phone
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.6622612747596577e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "cityshots snapshoot lightfestival lovelondon"
  Begin Offset : 117274
  Content : cityshots snapshoot lightfestival lovelondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.6608690202701837e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "trip"
  Begin Offset : 87313
  Content : trip
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6534557289560325e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "doorways"
  Begin Offset : 104429
  Content : doorways
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6525606042705476e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "doorways"
  Begin Offset : 106392
  Content : doorways
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.6521938960067928e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "camera"
  Begin Offset : 135530
  Content : camera
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.651843194849789e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "rain loki_lego"
  Begin Offset : 138910
  Content : rain  loki_lego
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.6515587049070746e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "doorways"
  Begin Offset : 109961
  Content : doorways
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.651479942665901e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "hotelkensington"
  Begin Offset : 145200
  Content : hotelkensington
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.650728336244356e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "cameras"
  Begin Offset : 148876
  Content : cameras
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.650193371460773e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "visitlondon printer"
  Begin Offset : 91305
  Content : visitlondon printer
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6500483980053104e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "hotelkensington"
  Begin Offset : 150900
  Content : hotelkensington
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.6499310731887817e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon balloons"
  Begin Offset : 154050
  Content : lumierelondon balloons
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.649416662985459e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "weather"
  Begin Offset : 95071
  Content : weather
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.6488167602801695e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "space"
  Begin Offset : 98048
  Content : space
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6484224033774808e-05
Sentiment: 

Name: "use"
  Begin Offset : 101285
  Content : use
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.6476562450407073e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "westminsterabbey reflection"
  Begin Offset : 104719
  Content : westminsterabbey reflection
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.646918462938629e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "mickfusion"
  Begin Offset : 116120
  Content : mickfusion
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.6451844203402288e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "reflections"
  Begin Offset : 116750
  Content : reflections
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.6451844203402288e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "use"
  Begin Offset : 117889
  Content : use
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6448550013592467e-05
Sentiment: 

Name: "use"
  Begin Offset : 118237
  Content : use
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6448550013592467e-05
Sentiment: 

Name: "tour"
  Begin Offset : 66416
  Content : tour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6373882317566313e-05
Sentiment: 

Name: "tour"
  Begin Offset : 67101
  Content : tour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6373882317566313e-05
Sentiment: 

Name: "dots order prints"
  Begin Offset : 65769
  Content : dots order prints
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6373882317566313e-05
Sentiment: 

Name: "academy"
  Begin Offset : 116987
  Content : academy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.6351639715139754e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "weather"
  Begin Offset : 80239
  Content : weather
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6330161088262685e-05
Sentiment: 

Name: "reflection"
  Begin Offset : 81399
  Content : reflection
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.632531530049164e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "wickeduk tour"
  Begin Offset : 83210
  Content : wickeduk tour
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.6320584109053016e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "order prints"
  Begin Offset : 85804
  Content : order prints
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.631596387596801e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "tourists"
  Begin Offset : 85556
  Content : tourists
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.631596387596801e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "masons window"
  Begin Offset : 110978
  Content : masons window
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.6246673112618737e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amp masons window"
  Begin Offset : 111664
  Content : amp masons window
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.6246673112618737e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "area"
  Begin Offset : 131269
  Content : area
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6189125744858757e-05
Sentiment: 

Name: "area"
  Begin Offset : 134479
  Content : area
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.618334681552369e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "area"
  Begin Offset : 135375
  Content : area
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.618334681552369e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "trains"
  Begin Offset : 151234
  Content : trains
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.616178997210227e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "scenes"
  Begin Offset : 155030
  Content : scenes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6156749552465044e-05
Sentiment: 

Name: "wish"
  Begin Offset : 126040
  Content : wish
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.61390289576957e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 165670
  Content : installations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.6124427929753438e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "pictures"
  Begin Offset : 39904
  Content : pictures
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.6090765711851418e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "londontown biuk"
  Begin Offset : 51805
  Content : londontown  biuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.6085536117316224e-05
Sentiment: magnitude: 0.5
score: 0.10000000149011612


Name: "visitlondon biuk"
  Begin Offset : 54236
  Content : visitlondon  biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.607806007086765e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "torch faces"
  Begin Offset : 129643
  Content : torch faces
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.6077063264674507e-05
Sentiment: 

Name: "energy"
  Begin Offset : 93155
  Content : energy
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.604295539436862e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "buildings"
  Begin Offset : 107648
  Content : buildings
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.6013098502298817e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "ping pong side imaginationuk building"
  Begin Offset : 111361
  Content : ping pong side imaginationuk building
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.600629730091896e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "cycling"
  Begin Offset : 58778
  Content : cycling
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.599658207851462e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lasers"
  Begin Offset : 117219
  Content : lasers
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5996522051864304e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "illumination"
  Begin Offset : 122520
  Content : illumination
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5990268366294913e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "illuminations"
  Begin Offset : 122392
  Content : illuminations
  Magnitude : 0.8999999761581421
  Sentiment : -0.8999999761581421
  Type : 2
Salience: 1.5990268366294913e-05
Sentiment: magnitude: 0.8999999761581421
score: -0.8999999761581421


Name: "south bank"
  Begin Offset : 87318
  Content : south bank
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.593406341271475e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "gasworks longexposures"
  Begin Offset : 101156
  Content : gasworks longexposures
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5925403204164468e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "staing"
  Begin Offset : 167399
  Content : staing
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 174837
  Content : staing
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.591344698681496e-05
Sentiment: magnitude: 1.0
score: 0.10000000149011612


Name: "london lumierelondon"
  Begin Offset : 175876
  Content : london lumierelondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.589075145602692e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "guide amp share pics"
  Begin Offset : 75673
  Content : guide amp share pics
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5858004189794883e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "dot"
  Begin Offset : 122868
  Content : dot
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5847172107896768e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "origin world bubble"
  Begin Offset : 135101
  Content : origin world bubble
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.582968980073929e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "canadian"
  Begin Offset : 46533
  Content : canadian
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 53234
  Content : canadian
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.582947515998967e-05
Sentiment: 

Name: "poal"
  Begin Offset : 137291
  Content : poal
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.58269249368459e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "friend toddler"
  Begin Offset : 141046
  Content : friend toddler
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.5817257008166052e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "mayfair"
  Begin Offset : 91166
  Content : mayfair
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5813979189260863e-05
Sentiment: 

Name: "lumierelondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon biuk"
  Begin Offset : 28158
  Content : lumierelondon   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  biuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.5800625988049433e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "50 aists dewdropbook dewdrop ay abi"
  Begin Offset : 51883
  Content : 50 aists  dewdropbook dewdrop ay abi
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.5767760487506166e-05
Sentiment: 

Name: "love md"
  Begin Offset : 34303
  Content : love md
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5706109479651786e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "background distractions"
  Begin Offset : 35173
  Content : background distractions
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5706109479651786e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "gin costs"
  Begin Offset : 35388
  Content : gin costs
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5706109479651786e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "david ward"
  Begin Offset : 36772
  Content : david ward
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5695055481046438e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "fish swimming"
  Begin Offset : 41371
  Content : fish swimming
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.5674699170631357e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "screens"
  Begin Offset : 42372
  Content : screens
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.56652822624892e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "reality"
  Begin Offset : 45655
  Content : reality
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5647738109692e-05
Sentiment: 

Name: "fireflies"
  Begin Offset : 47820
  Content : fireflies
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.5639538105460815e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "sofas"
  Begin Offset : 52329
  Content : sofas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.562412580824457e-05
Sentiment: 

Name: "magnificence"
  Begin Offset : 56252
  Content : magnificence
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5609870388288982e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "flamingo flyway"
  Begin Offset : 55413
  Content : flamingo flyway
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5609870388288982e-05
Sentiment: 

Name: "saws"
  Begin Offset : 63213
  Content : saws
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5590310795232654e-05
Sentiment: 

Name: "launch"
  Begin Offset : 64718
  Content : launch
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.558421536174137e-05
Sentiment: 

Name: "aichoketrust londonisopen"
  Begin Offset : 168217
  Content : aichoketrust londonisopen
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 1.5579817045363598e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "blog"
  Begin Offset : 94211
  Content : blog
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.555679045850411e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "scifi movie"
  Begin Offset : 97344
  Content : scifi movie
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5549278032267466e-05
Sentiment: 

Name: "lumierelondon ball"
  Begin Offset : 135556
  Content : lumierelondon  ball
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.553179208713118e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "doorways"
  Begin Offset : 108361
  Content : doorways
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.5531702956650406e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "town"
  Begin Offset : 112859
  Content : town
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.552510730107315e-05
Sentiment: 

Name: "production"
  Begin Offset : 114356
  Content : production
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5521893146797083e-05
Sentiment: 

Name: "plug bulbs"
  Begin Offset : 119646
  Content : plug bulbs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5512567188125104e-05
Sentiment: 

Name: "pics"
  Begin Offset : 64834
  Content : pics
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5504898328799754e-05
Sentiment: 

Name: "life"
  Begin Offset : 125877
  Content : life
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5469624486286193e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "calls"
  Begin Offset : 141392
  Content : calls
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5447840269189328e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "polaroidorignls"
  Begin Offset : 67501
  Content : polaroidorignls
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.544519363960717e-05
Sentiment: 

Name: "poland"
  Begin Offset : 68362
  Content : poland
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.54395147546893e-05
Sentiment: magnitude: 1.5
score: 0.4000000059604645


Name: "glass"
  Begin Offset : 70725
  Content : glass
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5434003216796555e-05
Sentiment: 

Name: "glass"
  Begin Offset : 77570
  Content : glass
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.541344499855768e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "glass"
  Begin Offset : 77838
  Content : glass
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.540863922855351e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "extravaganza magic"
  Begin Offset : 79940
  Content : extravaganza magic
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5403951692860574e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "names"
  Begin Offset : 156274
  Content : names
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
  Begin Offset : 157731
  Content : names
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.539680306450464e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "jar kids"
  Begin Offset : 66870
  Content : jar kids
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.53876007971121e-05
Sentiment: 

Name: "poland"
  Begin Offset : 86343
  Content : poland
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.5386300219688565e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "poland"
  Begin Offset : 87506
  Content : poland
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.5386300219688565e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "people"
  Begin Offset : 73855
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5344943676609546e-05
Sentiment: 

Name: "selection craft beer food tickle tastebuds"
  Begin Offset : 129816
  Content : selection craft beer food tickle tastebuds
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.5304140106309205e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "westminster marshalljulius"
  Begin Offset : 144991
  Content : westminster  marshalljulius
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.5276624253601767e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installations"
  Begin Offset : 155641
  Content : installations
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5172511666605715e-05
Sentiment: magnitude: 0.4000000059604645


Name: "installations"
  Begin Offset : 159344
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5170218830462545e-05
Sentiment: 

Name: "installations"
  Begin Offset : 158396
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.5170218830462545e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "installations"
  Begin Offset : 160954
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.516795418865513e-05
Sentiment: 

Name: "installations"
  Begin Offset : 162106
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.516571683168877e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 163181
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.516571683168877e-05
Sentiment: 

Name: "installations"
  Begin Offset : 161975
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.516571683168877e-05
Sentiment: 

Name: "installations"
  Begin Offset : 161937
  Content : installations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.516571683168877e-05
Sentiment: 

Name: "installations"
  Begin Offset : 166733
  Content : installations
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.5161322153289802e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "installation"
  Begin Offset : 168203
  Content : installation
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.5159163012867793e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "southbank installation"
  Begin Offset : 167937
  Content : southbank installation
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.5159163012867793e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 167607
  Content : installations
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.5159163012867793e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "installations"
  Begin Offset : 170545
  Content : installations
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.5157029338297434e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "installation"
  Begin Offset : 173729
  Content : installation
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5152833839238156e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installation"
  Begin Offset : 174087
  Content : installation
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5152833839238156e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "installations"
  Begin Offset : 173320
  Content : installations
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.5152833839238156e-05
Sentiment: magnitude: 0.4000000059604645


Name: "tour"
  Begin Offset : 123227
  Content : tour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5083829566719942e-05
Sentiment: 

Name: "jacob ladder"
  Begin Offset : 129207
  Content : jacob ladder
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.5075320334290154e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "tour"
  Begin Offset : 132249
  Content : tour
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.506985972810071e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "whizz"
  Begin Offset : 141288
  Content : whizz
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.5059402358019724e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "whizz"
  Begin Offset : 141500
  Content : whizz
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.5056879419717006e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "rain grantchito 2018 leicester square"
  Begin Offset : 137755
  Content : rain  grantchito  2018 leicester square
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.5054749383125454e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "space"
  Begin Offset : 147499
  Content : space
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.5049510693643242e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "weather"
  Begin Offset : 153377
  Content : weather
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5044757674331777e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "reflections"
  Begin Offset : 154187
  Content : reflections
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.5042426639411133e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "churches"
  Begin Offset : 94648
  Content : churches
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5036956028779969e-05
Sentiment: 

Name: "cathedral"
  Begin Offset : 97011
  Content : cathedral
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5033359886729158e-05
Sentiment: 

Name: "progress"
  Begin Offset : 98475
  Content : progress
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5029832866275683e-05
Sentiment: 

Name: "field"
  Begin Offset : 99668
  Content : field
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.5029832866275683e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "ldn_culture"
  Begin Offset : 104072
  Content : ldn_culture
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5022977095213719e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "physics glory nohern"
  Begin Offset : 110835
  Content : physics glory nohern
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5013152733445168e-05
Sentiment: 

Name: "academy"
  Begin Offset : 113467
  Content : academy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5006884495960549e-05
Sentiment: 

Name: "progress"
  Begin Offset : 114519
  Content : progress
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5006884495960549e-05
Sentiment: 

Name: "academy"
  Begin Offset : 116313
  Content : academy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.5003829503257293e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "view"
  Begin Offset : 116421
  Content : view
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.5003829503257293e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "homes"
  Begin Offset : 115075
  Content : homes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.5003829503257293e-05
Sentiment: 

Name: "view"
  Begin Offset : 116551
  Content : view
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.5003829503257293e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "destinations"
  Begin Offset : 115541
  Content : destinations
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.5003829503257293e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "academy"
  Begin Offset : 118738
  Content : academy
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5000824532762635e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "public"
  Begin Offset : 117401
  Content : public
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.5000824532762635e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "london kings cross"
  Begin Offset : 127439
  Content : london kings cross
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.4989837836765219e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "communities"
  Begin Offset : 53409
  Content : communities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4962212844693568e-05
Sentiment: 

Name: "programme"
  Begin Offset : 69371
  Content : programme
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4927239135431591e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "names"
  Begin Offset : 70791
  Content : names
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.4921910405973904e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "pa w"
  Begin Offset : 77780
  Content : pa w
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4897386790835299e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "field"
  Begin Offset : 81511
  Content : field
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.4888436453475151e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "fields"
  Begin Offset : 83475
  Content : fields
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.488412181060994e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "lumierelondon2018 newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium piccadilly circus"
  Begin Offset : 93665
  Content : lumierelondon2018   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium piccadilly circus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.487638019170845e-05
Sentiment: 

Name: "julian crowe"
  Begin Offset : 119889
  Content : julian crowe
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 120812
  Content : julian crowe
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.4871293387841433e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "amp capture"
  Begin Offset : 137980
  Content : amp capture
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4869574442855082e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "instagram gt"
  Begin Offset : 75733
  Content : instagram gt
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 1.4848167666059453e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "brightnights gt"
  Begin Offset : 77687
  Content : brightnights gt
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.483878895669477e-05
Sentiment: 

Name: "tag"
  Begin Offset : 164989
  Content : tag
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 166095
  Content : tag
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.481803792557912e-05
Sentiment: magnitude: 0.699999988079071
score: 0.30000001192092896


Name: "pop south bank"
  Begin Offset : 134237
  Content : pop south bank
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.4718591955897864e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "pop south bank"
  Begin Offset : 136704
  Content : pop south bank
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.471601990488125e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "followers"
  Begin Offset : 75086
  Content : followers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4713884411321487e-05
Sentiment: 

Name: "pop south bank"
  Begin Offset : 137661
  Content : pop south bank
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4713485143147409e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "pop south bank"
  Begin Offset : 138039
  Content : pop south bank
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4713485143147409e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visitlondon"
  Begin Offset : 156568
  Content : visitlondon
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4712785741721746e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "night go check visitlondon"
  Begin Offset : 163209
  Content : night go check visitlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.47061964526074e-05
Sentiment: 

Name: "wave brightnights"
  Begin Offset : 137680
  Content : wave brightnights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4700825886393432e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "youtubers"
  Begin Offset : 123451
  Content : youtubers
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4666504284832627e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "gardens"
  Begin Offset : 124189
  Content : gardens
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4666504284832627e-05
Sentiment: 

Name: "london lasers"
  Begin Offset : 131878
  Content : london lasers
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.4655719496659003e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "ldn festival spectacle"
  Begin Offset : 132885
  Content : ldn festival spectacle
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.4655719496659003e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "london lasers"
  Begin Offset : 131783
  Content : london lasers
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.4655719496659003e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "coin"
  Begin Offset : 133871
  Content : coin
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.465312197979074e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "others"
  Begin Offset : 135788
  Content : others
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4650561752205249e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "nightlife"
  Begin Offset : 165402
  Content : nightlife
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.464897741243476e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "flamingoflyway nightlife"
  Begin Offset : 165698
  Content : flamingoflyway nightlife
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.464897741243476e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nightlife"
  Begin Offset : 173164
  Content : nightlife
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.4642791938968003e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "gardens"
  Begin Offset : 149928
  Content : gardens
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.4633603313995991e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "chrissykinsella friend toddler"
  Begin Offset : 140403
  Content : chrissykinsella friend toddler
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4510585060634185e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "aether"
  Begin Offset : 91554
  Content : aether
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4487450243905187e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "tag"
  Begin Offset : 93230
  Content : tag
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.4487450243905187e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lanterns"
  Begin Offset : 94542
  Content : lanterns
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.4483845006907359e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "dinner"
  Begin Offset : 100051
  Content : dinner
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4473453120444901e-05
Sentiment: 

Name: "cross road directions pall mall"
  Begin Offset : 113941
  Content : cross road directions pall mall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4451354218181223e-05
Sentiment: 

Name: "glory electricpedals"
  Begin Offset : 116167
  Content : glory electricpedals
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.4448412002820987e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "shaftesburyplc"
  Begin Offset : 117084
  Content : shaftesburyplc
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.4445518900174648e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "couyard maxcoopermax"
  Begin Offset : 118749
  Content : couyard  maxcoopermax
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4445518900174648e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "boomerang maxcoopermax"
  Begin Offset : 117547
  Content : boomerang  maxcoopermax
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4445518900174648e-05
Sentiment: 

Name: "chance experience aether"
  Begin Offset : 117576
  Content : chance experience aether
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4445518900174648e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "chance experience aether"
  Begin Offset : 118776
  Content : chance experience aether
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4445518900174648e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lanterncompany"
  Begin Offset : 120561
  Content : lanterncompany
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4442672181758098e-05
Sentiment: 

Name: "cross road directions pall mall"
  Begin Offset : 121735
  Content : cross road directions pall mall
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.4439870938076638e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "programme"
  Begin Offset : 132458
  Content : programme
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.4437582649406977e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "panership technicians_mih techniciansmakeithappen"
  Begin Offset : 43288
  Content : panership technicians_mih techniciansmakeithappen
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.4425586414290592e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "bat"
  Begin Offset : 70813
  Content : bat
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.4369525160873309e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "panership technicians_mih"
  Begin Offset : 57742
  Content : panership technicians_mih
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.4368347365234513e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bat"
  Begin Offset : 77658
  Content : bat
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.4350384844874498e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "bat"
  Begin Offset : 77926
  Content : bat
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4345910130941775e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "wildlife"
  Begin Offset : 84198
  Content : wildlife
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.4333136277855374e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "hare"
  Begin Offset : 87396
  Content : hare
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4325111806101631e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "theatre hare"
  Begin Offset : 89436
  Content : theatre  hare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4317441127786878e-05
Sentiment: 

Name: "hare"
  Begin Offset : 90792
  Content : hare
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4313728570414241e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival lights"
  Begin Offset : 170142
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4238934454624541e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "people"
  Begin Offset : 82201
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.4229526641429402e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "scifi movie"
  Begin Offset : 124488
  Content : scifi movie
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4225589438865427e-05
Sentiment: 

Name: "plug bulbs"
  Begin Offset : 124097
  Content : plug bulbs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4225589438865427e-05
Sentiment: 

Name: "officers"
  Begin Offset : 127760
  Content : officers
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.4220279808796477e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "head offices"
  Begin Offset : 129585
  Content : head offices
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.4217685020412318e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "stories"
  Begin Offset : 132236
  Content : stories
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4215129340300336e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "selfie"
  Begin Offset : 134494
  Content : selfie
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.4212610039976425e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "car bus"
  Begin Offset : 136364
  Content : car bus
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.4210127119440585e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "scifi movie"
  Begin Offset : 139725
  Content : scifi movie
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4205264960764907e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "storage"
  Begin Offset : 140303
  Content : storage
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4205264960764907e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "scifi movie"
  Begin Offset : 142562
  Content : scifi movie
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.4202884813130368e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "bulb"
  Begin Offset : 148307
  Content : bulb
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4195934454619419e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "officers"
  Begin Offset : 153832
  Content : officers
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.4189252397045493e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "amp"
  Begin Offset : 156772
  Content : amp
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.4149050912237726e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "amp"
  Begin Offset : 157325
  Content : amp
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4149050912237726e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "westend amp"
  Begin Offset : 158454
  Content : westend amp
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.4146912690193858e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amp"
  Begin Offset : 160159
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.414479993400164e-05
Sentiment: 

Name: "stairway heaven amp"
  Begin Offset : 159757
  Content : stairway heaven amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.414479993400164e-05
Sentiment: 

Name: "amp"
  Begin Offset : 162317
  Content : amp
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.4142713553155772e-05
Sentiment: 

Name: "check light"
  Begin Offset : 155910
  Content : check light
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.4078987987886649e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "charing cross road"
  Begin Offset : 134096
  Content : charing cross road
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 1.405740749760298e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "timeoutlondon londonist standardnews guardianphotos lumierelondon"
  Begin Offset : 101605
  Content : timeoutlondon londonist standardnews guardianphotos lumierelondon
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 1.3959188436274417e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lumiere southbank southbanklondon"
  Begin Offset : 106149
  Content : lumiere  southbank southbanklondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.395293656969443e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "festival lights"
  Begin Offset : 170328
  Content : festival lights
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.3892440620111302e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "taize prayer trudyakelly pa gift"
  Begin Offset : 94715
  Content : taize prayer  trudyakelly pa gift
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3874123396817595e-05
Sentiment: 

Name: "buses cars"
  Begin Offset : 94794
  Content : buses cars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3874123396817595e-05
Sentiment: 

Name: "frictions"
  Begin Offset : 98868
  Content : frictions
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.3867550478607882e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "buses cars"
  Begin Offset : 101512
  Content : buses cars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3864358152204659e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "buses cars"
  Begin Offset : 102346
  Content : buses cars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3864358152204659e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "gift"
  Begin Offset : 101462
  Content : gift
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3864358152204659e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visitlondon pa gift"
  Begin Offset : 102281
  Content : visitlondon pa gift
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3864358152204659e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "beauty"
  Begin Offset : 103886
  Content : beauty
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.3861224942957051e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "changes colours amp designs"
  Begin Offset : 105755
  Content : changes colours amp designs
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3858149031875655e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "home"
  Begin Offset : 109599
  Content : home
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.385216000926448e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "stuff"
  Begin Offset : 122578
  Content : stuff
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.383537437504856e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "stroll"
  Begin Offset : 144177
  Content : stroll
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3807024515699595e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "stroll"
  Begin Offset : 143776
  Content : stroll
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3807024515699595e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "delays fi"
  Begin Offset : 153038
  Content : delays fi
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3799536645819899e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "day ifo"
  Begin Offset : 34256
  Content : day ifo
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3793485777569003e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "object jacques"
  Begin Offset : 34282
  Content : object jacques
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3793485777569003e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "birdcage"
  Begin Offset : 34187
  Content : birdcage
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3793485777569003e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "work collaboration owners"
  Begin Offset : 36827
  Content : work collaboration owners
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.378377783112228e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "vote"
  Begin Offset : 35881
  Content : vote
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.378377783112228e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fairies"
  Begin Offset : 67665
  Content : fairies
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3776612831861712e-05
Sentiment: magnitude: 0.10000000149011612


Name: "yes"
  Begin Offset : 39569
  Content : yes
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3774601939076092e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "buses cars"
  Begin Offset : 70194
  Content : buses cars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3767973541689571e-05
Sentiment: 

Name: "gift"
  Begin Offset : 70144
  Content : gift
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3767973541689571e-05
Sentiment: 

Name: "age"
  Begin Offset : 42344
  Content : age
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.375763076794101e-05
Sentiment: 

Name: "case wi fi"
  Begin Offset : 76954
  Content : case wi fi
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.374963358102832e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "churches"
  Begin Offset : 129448
  Content : churches
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.3745947399002034e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "neon sign"
  Begin Offset : 46604
  Content : neon sign
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.3742223018198274e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "befaithfultoyourdreams"
  Begin Offset : 46614
  Content : befaithfultoyourdreams
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3742223018198274e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "vids"
  Begin Offset : 46722
  Content : vids
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.3742223018198274e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "bump"
  Begin Offset : 45787
  Content : bump
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.3742223018198274e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "action"
  Begin Offset : 135137
  Content : action
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.374104067508597e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "wish"
  Begin Offset : 140220
  Content : wish
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3733939340454526e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "stuff"
  Begin Offset : 83379
  Content : stuff
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.3733107152802404e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "piccadilly victoria"
  Begin Offset : 104158
  Content : piccadilly victoria
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 105888
  Content : piccadilly victoria
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.3723926713282708e-05
Sentiment: magnitude: 0.4000000059604645


Name: "frogs"
  Begin Offset : 88866
  Content : frogs
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.3721703908231575e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "frogs"
  Begin Offset : 89384
  Content : frogs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.371806956740329e-05
Sentiment: 

Name: "lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon"
  Begin Offset : 99197
  Content : lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 1.3716116882278584e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "buses cars"
  Begin Offset : 90600
  Content : buses cars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3714512533624656e-05
Sentiment: 

Name: "aquarium trudyakelly pa gift"
  Begin Offset : 90525
  Content : aquarium  trudyakelly pa gift
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3714512533624656e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "venues"
  Begin Offset : 55321
  Content : venues
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3708966434933245e-05
Sentiment: 

Name: "bunny"
  Begin Offset : 63813
  Content : bunny
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.3691789717995562e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "purple haze"
  Begin Offset : 64134
  Content : purple haze
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3686436432180926e-05
Sentiment: 

Name: "help"
  Begin Offset : 64565
  Content : help
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3686436432180926e-05
Sentiment: 

Name: "photo eleni"
  Begin Offset : 64095
  Content : photo eleni
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3686436432180926e-05
Sentiment: 

Name: "rg"
  Begin Offset : 64249
  Content : rg
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3686436432180926e-05
Sentiment: 

Name: "princes"
  Begin Offset : 130109
  Content : princes
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.3658139323524665e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "festival"
  Begin Offset : 156093
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3657987437909469e-05
Sentiment: 

Name: "festival"
  Begin Offset : 158872
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3655923794431146e-05
Sentiment: 

Name: "kingscrossn1c festival"
  Begin Offset : 157592
  Content : kingscrossn1c festival
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3655923794431146e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "festival"
  Begin Offset : 160455
  Content : festival
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3653884707309771e-05
Sentiment: 

Name: "festival"
  Begin Offset : 171475
  Content : festival
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3642151316162199e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "light festival"
  Begin Offset : 176330
  Content : light festival
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3638417840411421e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon thelondonguidee"
  Begin Offset : 71393
  Content : lumierelondon  thelondonguidee
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 1.3612902876047883e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "aichoketrust visitlondon mayoroflondon"
  Begin Offset : 89608
  Content : aichoketrust visitlondon mayoroflondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.3568267604568973e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "aichoketrust biggsytravels"
  Begin Offset : 133445
  Content : aichoketrust biggsytravels
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.3531231161323376e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "job mayoroflondon"
  Begin Offset : 85488
  Content : job mayoroflondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3414766726782545e-05
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "darraghdoyle"
  Begin Offset : 137346
  Content : darraghdoyle
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.3402010154095478e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "canary wharf winter lights"
  Begin Offset : 169714
  Content : canary wharf winter lights
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.3388444131123833e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "aichoketrust wrap"
  Begin Offset : 94238
  Content : aichoketrust wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3381246390054002e-05
Sentiment: 

Name: "haya luz segunda edición del festival de"
  Begin Offset : 110568
  Content : haya luz segunda edición del festival de
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 174664
  Content : haya luz segunda edición del festival de
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.33344601636054e-05
Sentiment: 

Name: "nofilter ihealondon wabbey"
  Begin Offset : 119679
  Content : nofilter ihealondon wabbey
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.3299726560944691e-05
Sentiment: 

Name: "foodie"
  Begin Offset : 124958
  Content : foodie
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3244452929939143e-05
Sentiment: 

Name: "dinner"
  Begin Offset : 124683
  Content : dinner
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.3244452929939143e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "cross road directions pall mall"
  Begin Offset : 123791
  Content : cross road directions pall mall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3244452929939143e-05
Sentiment: 

Name: "experience aether"
  Begin Offset : 126590
  Content : experience aether
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3241961823950987e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "experience aether"
  Begin Offset : 129730
  Content : experience aether
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3237093298812397e-05
Sentiment: 

Name: "delight"
  Begin Offset : 104997
  Content : delight
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3232865057943854e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "hare"
  Begin Offset : 134129
  Content : hare
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.3232368473836686e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "droplets"
  Begin Offset : 134935
  Content : droplets
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3232368473836686e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "photography lantern"
  Begin Offset : 133767
  Content : photography lantern
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.3232368473836686e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "humans"
  Begin Offset : 130346
  Content : humans
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3229978321760427e-05
Sentiment: 

Name: "check night market"
  Begin Offset : 144535
  Content : check night market
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3221128028817475e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "restaurants"
  Begin Offset : 144593
  Content : restaurants
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3221128028817475e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "check night market"
  Begin Offset : 143344
  Content : check night market
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3221128028817475e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "restaurants"
  Begin Offset : 143402
  Content : restaurants
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.3221128028817475e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "droplets"
  Begin Offset : 147459
  Content : droplets
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.321897070738487e-05
Sentiment: 

Name: "tag"
  Begin Offset : 145661
  Content : tag
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.321897070738487e-05
Sentiment: 

Name: "chrisplant one"
  Begin Offset : 147854
  Content : chrisplant one
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.321684248978272e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "photography lantern"
  Begin Offset : 149725
  Content : photography lantern
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3214741557021625e-05
Sentiment: magnitude: 0.800000011920929
score: 0.20000000298023224


Name: "spire stop café"
  Begin Offset : 153539
  Content : spire  stop café
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3212668818596285e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "winterlights"
  Begin Offset : 93390
  Content : winterlights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.321258969255723e-05
Sentiment: 

Name: "hat"
  Begin Offset : 92391
  Content : hat
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3212325939093716e-05
Sentiment: 

Name: "game pong"
  Begin Offset : 91970
  Content : game pong
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.3212325939093716e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "snapshots"
  Begin Offset : 97475
  Content : snapshots
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3202658919908572e-05
Sentiment: 

Name: "snapshots"
  Begin Offset : 98676
  Content : snapshots
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 1.3199561180954333e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "videography musicvideo zacdenman"
  Begin Offset : 103590
  Content : videography musicvideo zacdenman
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.3193540326028597e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "mind"
  Begin Offset : 105110
  Content : mind
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.3190611753088888e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "aaron"
  Begin Offset : 106707
  Content : aaron
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3187736840336584e-05
Sentiment: 

Name: "conditions"
  Begin Offset : 109444
  Content : conditions
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.3184911949792877e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "hat"
  Begin Offset : 113400
  Content : hat
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.3179406778363045e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "violin centrepiece"
  Begin Offset : 113442
  Content : violin centrepiece
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3179406778363045e-05
Sentiment: 

Name: "cosmoscope sculpture"
  Begin Offset : 114623
  Content : cosmoscope sculpture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3179406778363045e-05
Sentiment: 

Name: "aaron"
  Begin Offset : 115956
  Content : aaron
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3176723768992815e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aaron"
  Begin Offset : 115800
  Content : aaron
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3176723768992815e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aaron"
  Begin Offset : 116347
  Content : aaron
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3176723768992815e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aaron"
  Begin Offset : 116477
  Content : aaron
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3176723768992815e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "hatmanoflondon"
  Begin Offset : 116940
  Content : hatmanoflondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.3176723768992815e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "videography musicvideo zacdenman"
  Begin Offset : 119246
  Content : videography musicvideo zacdenman
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.317148871748941e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "atmosphere"
  Begin Offset : 119352
  Content : atmosphere
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.317148871748941e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "atmosphere"
  Begin Offset : 119498
  Content : atmosphere
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.317148871748941e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "faves"
  Begin Offset : 122357
  Content : faves
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.316893394687213e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "must"
  Begin Offset : 67655
  Content : must
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.3114281500747893e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "photography engcathedrals"
  Begin Offset : 67526
  Content : photography  engcathedrals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3114281500747893e-05
Sentiment: 

Name: "training jobs"
  Begin Offset : 68166
  Content : training jobs
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3109460269333795e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "tfl update"
  Begin Offset : 68262
  Content : tfl update
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3109460269333795e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "bond"
  Begin Offset : 68344
  Content : bond
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.3109460269333795e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "photography fave"
  Begin Offset : 79439
  Content : photography fave
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3083243175060488e-05
Sentiment: 

Name: "offer"
  Begin Offset : 82418
  Content : offer
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3075382412353065e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "offer"
  Begin Offset : 82294
  Content : offer
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.3075382412353065e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kx10 omg newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium openyoureyesldn show"
  Begin Offset : 91561
  Content : kx10 omg   newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  openyoureyesldn show
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.3068046428088564e-05
Sentiment: 

Name: "bond"
  Begin Offset : 85096
  Content : bond
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.3067892723483965e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "bond"
  Begin Offset : 86325
  Content : bond
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3064275663055014e-05
Sentiment: 

Name: "bond"
  Begin Offset : 87488
  Content : bond
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.3064275663055014e-05
Sentiment: 

Name: "hat"
  Begin Offset : 86031
  Content : hat
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.3064275663055014e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "shop"
  Begin Offset : 89696
  Content : shop
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.3057279829808977e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 levanterman"
  Begin Offset : 48078
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  levanterman
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 50800
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 58081
  Content : aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.3053811926511116e-05
Sentiment: magnitude: 1.0
score: 0.30000001192092896


Name: "citylife travelblogger"
  Begin Offset : 133827
  Content : citylife travelblogger
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
  Begin Offset : 149785
  Content : citylife travelblogger
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.3035388292337302e-05
Sentiment: magnitude: 0.699999988079071
score: 0.10000000149011612


Name: "lumiere london rhianbwatts"
  Begin Offset : 153131
  Content : lumiere london   rhianbwatts
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.2970536772627383e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "event"
  Begin Offset : 163456
  Content : event
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2948107723786961e-05
Sentiment: 

Name: "wrap"
  Begin Offset : 73401
  Content : wrap
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.2948082257935312e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "people"
  Begin Offset : 159697
  Content : people
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.2944943591719493e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "event"
  Begin Offset : 168931
  Content : event
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.2944398804393131e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "gloves amp scarf"
  Begin Offset : 74467
  Content : gloves amp scarf
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2940233318659011e-05
Sentiment: 

Name: "events"
  Begin Offset : 175626
  Content : events
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.2937233805132564e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta"
  Begin Offset : 99727
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.2914440958411433e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "westend"
  Begin Offset : 163061
  Content : westend
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2897930901090149e-05
Sentiment: 

Name: "lovelyweather lightexhibition london2018"
  Begin Offset : 114644
  Content : lovelyweather  lightexhibition london2018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.2894722203782294e-05
Sentiment: 

Name: "lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife travelbloggers lovelondon"
  Begin Offset : 115625
  Content : lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife  travelbloggers lovelondon
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.2892097402072977e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumiere aworks"
  Begin Offset : 69006
  Content : lumiere aworks
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.2826286365452688e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "friend toddler"
  Begin Offset : 67599
  Content : friend toddler
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2796402188541833e-05
Sentiment: 

Name: "emmaallendesign greymatters timeoutlondon visitlondon"
  Begin Offset : 150218
  Content : emmaallendesign greymatters timeoutlondon  visitlondon
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 1.2748134395224042e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "kingdom"
  Begin Offset : 162158
  Content : kingdom
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2721081475319806e-05
Sentiment: 

Name: "king"
  Begin Offset : 167308
  Content : king
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.2717394383798819e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kingdom"
  Begin Offset : 172281
  Content : kingdom
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.2712024727079552e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "canal kings"
  Begin Offset : 174114
  Content : canal kings
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.271027485927334e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "canal kings"
  Begin Offset : 173756
  Content : canal kings
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.271027485927334e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "umbrella project performance"
  Begin Offset : 122907
  Content : umbrella project performance
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.2692421478277538e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "beauty"
  Begin Offset : 124165
  Content : beauty
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.2689997674897313e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "home"
  Begin Offset : 126168
  Content : home
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.2687612070294563e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "festival hurry"
  Begin Offset : 125539
  Content : festival hurry
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2687612070294563e-05
Sentiment: 

Name: "buses"
  Begin Offset : 136454
  Content : buses
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.2687120943155605e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "gallery"
  Begin Offset : 140251
  Content : gallery
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.2671867807512172e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "fairies"
  Begin Offset : 140669
  Content : fairies
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.2670631804212462e-05
Sentiment: magnitude: 0.30000001192092896


Name: "fairies"
  Begin Offset : 140485
  Content : fairies
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.2670631804212462e-05
Sentiment: magnitude: 0.10000000149011612


Name: "festival hurry"
  Begin Offset : 150052
  Content : festival hurry
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.2661531400226522e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "biggsytravels pa beauty"
  Begin Offset : 150838
  Content : biggsytravels pa beauty
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.2661531400226522e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "dials"
  Begin Offset : 154590
  Content : dials
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.2657583283726126e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "canonukandie visitlondon aichoketrust southbanklondon fuzzworks_uk"
  Begin Offset : 48306
  Content : canonukandie visitlondon aichoketrust southbanklondon  fuzzworks_uk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.264807451661909e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon lumierelondon2018 visitlondon fuzzworks_uk"
  Begin Offset : 56743
  Content : lumierelondon lumierelondon2018  visitlondon  fuzzworks_uk
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.2624081136891618e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "posts tix"
  Begin Offset : 117429
  Content : posts tix
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.24539128592005e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "rainbow tunnel"
  Begin Offset : 98456
  Content : rainbow tunnel
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2450906069716439e-05
Sentiment: 

Name: "anywhere"
  Begin Offset : 108175
  Content : anywhere
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2439752936188597e-05
Sentiment: 

Name: "ping pong side"
  Begin Offset : 110464
  Content : ping pong side
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2437088116712403e-05
Sentiment: 

Name: "coat turn telly"
  Begin Offset : 133508
  Content : coat turn telly
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.2435309145075735e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "sea level"
  Begin Offset : 111601
  Content : sea level
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.2434469681465998e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "guardian angels"
  Begin Offset : 120352
  Content : guardian angels
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.242442613147432e-05
Sentiment: 

Name: "guardian angels"
  Begin Offset : 120307
  Content : guardian angels
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.242442613147432e-05
Sentiment: 

Name: "guardian angels"
  Begin Offset : 120397
  Content : guardian angels
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.242442613147432e-05
Sentiment: 

Name: "londonlife sessions"
  Begin Offset : 119155
  Content : londonlife sessions
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.242442613147432e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "fish telephone box butterfly"
  Begin Offset : 122590
  Content : fish telephone box  butterfly
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2422016880009323e-05
Sentiment: 

Name: "happylondon"
  Begin Offset : 121278
  Content : happylondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2422016880009323e-05
Sentiment: 

Name: "lights darkness"
  Begin Offset : 129763
  Content : lights darkness
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.2374315701890737e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "visitlondon pleasure"
  Begin Offset : 66233
  Content : visitlondon pleasure
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2370463991828728e-05
Sentiment: 

Name: "amp regent street btwn moimer"
  Begin Offset : 68372
  Content : amp regent street btwn moimer
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.2365915608825162e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "londonlife sessions"
  Begin Offset : 79064
  Content : londonlife sessions
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.2341185538389254e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "amp regent street btwn moimer"
  Begin Offset : 85124
  Content : amp regent street btwn moimer
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.2326705473242328e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "amp regent street btwn moimer"
  Begin Offset : 86353
  Content : amp regent street btwn moimer
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.2323293958615977e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "amp regent street btwn moimer"
  Begin Offset : 87516
  Content : amp regent street btwn moimer
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.2323293958615977e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "nickede"
  Begin Offset : 128340
  Content : nickede
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.2293007785046939e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "locations"
  Begin Offset : 76973
  Content : locations
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.2223721569171175e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "twitter"
  Begin Offset : 75721
  Content : twitter
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 128032
  Content : twitter
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 1.2182261343696155e-05
Sentiment: magnitude: 1.0
score: 0.20000000298023224


Name: "goods"
  Begin Offset : 104842
  Content : goods
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.2139685168222059e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "justin_venn lumierelondon2018 lumierelondon biuk"
  Begin Offset : 43463
  Content : justin_venn  lumierelondon2018 lumierelondon  biuk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.2138534657424316e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "popcornmedia_uk wrap"
  Begin Offset : 97586
  Content : popcornmedia_uk wrap
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2119670827814844e-05
Sentiment: 

Name: "wabbey westminsterabbey biuk"
  Begin Offset : 50641
  Content : wabbey westminsterabbey  biuk
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.2112493095628452e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "look updates"
  Begin Offset : 126485
  Content : look updates
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.2076457096554805e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "suzystories"
  Begin Offset : 128855
  Content : suzystories
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.2074220649083145e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "update"
  Begin Offset : 133923
  Content : update
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.2067707757523749e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "must"
  Begin Offset : 141102
  Content : must
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.2061471352353692e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "must"
  Begin Offset : 140475
  Content : must
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.2061471352353692e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "must"
  Begin Offset : 140659
  Content : must
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.2061471352353692e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "must"
  Begin Offset : 142277
  Content : must
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.2059450455126353e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "trees"
  Begin Offset : 153960
  Content : trees
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.2047874406562187e-05
Sentiment: 

Name: "見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium cheriecity"
  Begin Offset : 71215
  Content : 見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  cheriecity
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 90277
  Content : が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1961006748606451e-05
Sentiment: 

Name: "gloves amp scarf"
  Begin Offset : 133347
  Content : gloves amp scarf
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.1926455044886097e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "flickr"
  Begin Offset : 80169
  Content : flickr
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.1925330909434706e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "works"
  Begin Offset : 163039
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1915179129573517e-05
Sentiment: 

Name: "gloves amp scarf"
  Begin Offset : 150727
  Content : gloves amp scarf
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.1908457054232713e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "tube"
  Begin Offset : 91080
  Content : tube
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 1.1844349501188844e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "case"
  Begin Offset : 149355
  Content : case
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.1839021681225859e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "fitzrovia dontmissout egondesign"
  Begin Offset : 109291
  Content : fitzrovia  dontmissout  egondesign
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.1807830560428556e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumiere aworks"
  Begin Offset : 149124
  Content : lumiere aworks
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.1793182238761801e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "friend toddler"
  Begin Offset : 140603
  Content : friend toddler
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1769109732995275e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "friend toddler"
  Begin Offset : 142221
  Content : friend toddler
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.1767137948481832e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "videoproduction zacvideo studiosession"
  Begin Offset : 79092
  Content : videoproduction zacvideo studiosession
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 103527
  Content : videoproduction zacvideo studiosession
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
  Begin Offset : 119183
  Content : videoproduction zacvideo studiosession
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.1754622391890734e-05
Sentiment: magnitude: 0.800000011920929
score: 0.10000000149011612


Name: "projection voyages"
  Begin Offset : 82165
  Content : projection voyages
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1677908332785591e-05
Sentiment: 

Name: "aist imakefings leakestreet"
  Begin Offset : 122277
  Content : aist imakefings leakestreet
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 139874
  Content : aist imakefings leakestreet
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.1676344911393244e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.10000000149011612


Name: "decision"
  Begin Offset : 92430
  Content : decision
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1603376151470002e-05
Sentiment: 

Name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon marshalljulius london"
  Begin Offset : 161747
  Content : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  marshalljulius london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1597448974498548e-05
Sentiment: 

Name: "southbank london"
  Begin Offset : 165332
  Content : southbank london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1595758223847952e-05
Sentiment: 

Name: "daan roosegaarde london"
  Begin Offset : 167248
  Content : daan roosegaarde  london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 1.1594087482080795e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "flickr iesphotos cityatnight london"
  Begin Offset : 168399
  Content : flickr iesphotos cityatnight  london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 1.1592436749197077e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wasthatadream"
  Begin Offset : 99067
  Content : wasthatadream
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1592165719775949e-05
Sentiment: 

Name: "leakestreetarches development"
  Begin Offset : 98489
  Content : leakestreetarches development
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1592165719775949e-05
Sentiment: 

Name: "colcannon"
  Begin Offset : 100084
  Content : colcannon
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 1.1592165719775949e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "lumierelondon carnabylondon london"
  Begin Offset : 174938
  Content : lumierelondon carnabylondon london
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 1.1587597327888943e-05
Sentiment: magnitude: 0.800000011920929
score: -0.4000000059604645


Name: "cheese"
  Begin Offset : 102749
  Content : cheese
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.1586877917579841e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "xtophe_williams"
  Begin Offset : 107340
  Content : xtophe_williams
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1581781109271105e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature"
  Begin Offset : 36541
  Content : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.157578662969172e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "xtophe_williams"
  Begin Offset : 114003
  Content : xtophe_williams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1574466043384746e-05
Sentiment: 

Name: "leakestreetarches development"
  Begin Offset : 114533
  Content : leakestreetarches development
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1574466043384746e-05
Sentiment: 

Name: "clarateddy"
  Begin Offset : 115783
  Content : clarateddy
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.1572109542612452e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "couyard clarateddy"
  Begin Offset : 116321
  Content : couyard  clarateddy
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.1572109542612452e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "xtophe_williams"
  Begin Offset : 116061
  Content : xtophe_williams
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.1572109542612452e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "gasholders"
  Begin Offset : 118910
  Content : gasholders
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.1569792150112335e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "winterlights yourcanarywharf"
  Begin Offset : 38209
  Content : winterlights yourcanarywharf
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.1568079571588896e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "person"
  Begin Offset : 119563
  Content : person
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.156751204689499e-05
Sentiment: 

Name: "person"
  Begin Offset : 119417
  Content : person
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.156751204689499e-05
Sentiment: 

Name: "の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます 英国のホテル newsdigest 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht"
  Begin Offset : 76648
  Content : の英国および国際的なアーティストたちによって ロンドンの象徴的な建築と通りを再想像し ロンドンの街を 夜間美術館に変えます  英国のホテル  newsdigest 英国 昨日から始まったリュミエール ロンドン 動画はキングス クロス グラナリースクエアで展示されている 洪水をバーチャルで表現している光と霧のアート waterlicht
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1547112080734223e-05
Sentiment: 

Name: "redbridgelive umbrellaproject thisisredbridge mylocalculture"
  Begin Offset : 46041
  Content : redbridgelive umbrellaproject thisisredbridge mylocalculture
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.1540888408489991e-05
Sentiment: magnitude: 0.800000011920929
score: 0.4000000059604645


Name: "anyone"
  Begin Offset : 37111
  Content : anyone
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.1539444130903576e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "river quality"
  Begin Offset : 66576
  Content : river quality
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1517270650074352e-05
Sentiment: 

Name: "locations"
  Begin Offset : 69444
  Content : locations
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.1513036042742897e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "amsharif"
  Begin Offset : 74931
  Content : amsharif
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.1501050721562933e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "amp witchcraft"
  Begin Offset : 79997
  Content : amp witchcraft
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1486517905723304e-05
Sentiment: 

Name: "colours sphere"
  Begin Offset : 83141
  Content : colours sphere
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.1479781278467271e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "excursion"
  Begin Offset : 88519
  Content : excursion
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1470247955003288e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "movement"
  Begin Offset : 88062
  Content : movement
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1470247955003288e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "attendance"
  Begin Offset : 98229
  Content : attendance
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.142500332207419e-05
Sentiment: 

Name: "kulbinderm"
  Begin Offset : 125465
  Content : kulbinderm
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1416284905862994e-05
Sentiment: 

Name: "abbey"
  Begin Offset : 165783
  Content : abbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.1406253179302439e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "abbey"
  Begin Offset : 176045
  Content : abbey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.1398316019040067e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "volumes"
  Begin Offset : 126445
  Content : volumes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.139150026574498e-05
Sentiment: 

Name: "haywardgallery"
  Begin Offset : 132420
  Content : haywardgallery
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.1385264770069625e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "thamespulse seacontainers mondrianhotel jasonbruges"
  Begin Offset : 66428
  Content : thamespulse seacontainers mondrianhotel jasonbruges
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 67113
  Content : thamespulse seacontainers mondrianhotel jasonbruges
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 123239
  Content : thamespulse seacontainers mondrianhotel
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.1382820957805961e-05
Sentiment: magnitude: 0.10000000149011612


Name: "tflbusales"
  Begin Offset : 136342
  Content : tflbusales
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.1381258445908315e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "tweeps"
  Begin Offset : 138090
  Content : tweeps
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1379298484825995e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "bandwagon"
  Begin Offset : 139596
  Content : bandwagon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.1377364899090026e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "tweeps"
  Begin Offset : 146421
  Content : tweeps
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.1371722393960226e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "facade"
  Begin Offset : 147766
  Content : facade
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.1369891581125557e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "crafts goods"
  Begin Offset : 149907
  Content : crafts goods
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.1368084415153135e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "tweeps"
  Begin Offset : 151688
  Content : tweeps
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.1366300896042958e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "tweeps"
  Begin Offset : 152835
  Content : tweeps
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.1366300896042958e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "butterflies"
  Begin Offset : 153940
  Content : butterflies
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.1364539204805624e-05
Sentiment: 

Name: "aichoketrust visitlondon timeoutlondon lumierelondon2018 lumiere lumierelondon lightfestival lighta kingscrossn1c"
  Begin Offset : 147519
  Content : aichoketrust visitlondon timeoutlondon  lumierelondon2018 lumiere lumierelondon lightfestival lighta  kingscrossn1c
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
  Begin Offset : 175209
  Content : lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1349657143000513e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "description"
  Begin Offset : 67689
  Content : description
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.1312288734188769e-05
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "london architecture"
  Begin Offset : 132354
  Content : london architecture
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.1251216164964717e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "event"
  Begin Offset : 169548
  Content : event
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.1164176612510346e-05
Sentiment: magnitude: 1.2000000476837158
score: 0.10000000149011612


Name: "ppl"
  Begin Offset : 64661
  Content : ppl
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.1136708963022102e-05
Sentiment: 

Name: "mrsmmain chance"
  Begin Offset : 168457
  Content : mrsmmain chance
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.1135518434457481e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance"
  Begin Offset : 36649
  Content : lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.0919226951955352e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "redbridgelive umbrellaproject thisisredbridge mylocalculture engcathedrals"
  Begin Offset : 41039
  Content : redbridgelive umbrellaproject thisisredbridge mylocalculture  engcathedrals
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.0905065209954046e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "canonukandie visitlondon aichoketrust southbanklondon levanterman"
  Begin Offset : 48219
  Content : canonukandie visitlondon aichoketrust southbanklondon  levanterman
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.0880601621465757e-05
Sentiment: 

Name: "aichoketrust asturn"
  Begin Offset : 57810
  Content : aichoketrust  asturn
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.0878886314458214e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "squares"
  Begin Offset : 157509
  Content : squares
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0876761734834872e-05
Sentiment: 

Name: "instagram sneequaye"
  Begin Offset : 50240
  Content : instagram sneequaye
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.0875131920329295e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "cycling"
  Begin Offset : 100838
  Content : cycling
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.0835960893018637e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "cycling"
  Begin Offset : 101875
  Content : cycling
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.0835960893018637e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierelondon carnabylondon"
  Begin Offset : 154799
  Content : lumierelondon  carnabylondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.0789546649903059e-05
Sentiment: 

Name: "happylondon"
  Begin Offset : 97995
  Content : happylondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0611071047605947e-05
Sentiment: 

Name: "colcannon"
  Begin Offset : 124716
  Content : colcannon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0607819604047108e-05
Sentiment: 

Name: "props"
  Begin Offset : 124313
  Content : props
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.0607819604047108e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "colcannon"
  Begin Offset : 124931
  Content : colcannon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0607819604047108e-05
Sentiment: 

Name: "business"
  Begin Offset : 127338
  Content : business
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.060582508216612e-05
Sentiment: 

Name: "clothes"
  Begin Offset : 127752
  Content : clothes
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.0603860573610291e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bits"
  Begin Offset : 132503
  Content : bits
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.0600019777484704e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "benjamingammon"
  Begin Offset : 136479
  Content : benjamingammon
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.0596289030218031e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "rain cheekychops"
  Begin Offset : 137724
  Content : rain  cheekychops
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.0594463674351573e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "neon tower"
  Begin Offset : 140259
  Content : neon tower
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.0592663784336764e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "congratulations"
  Begin Offset : 140784
  Content : congratulations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0592663784336764e-05
Sentiment: 

Name: "pop bar"
  Begin Offset : 144559
  Content : pop bar
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.058913767337799e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "pop bar"
  Begin Offset : 143368
  Content : pop bar
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.058913767337799e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "businesses"
  Begin Offset : 152494
  Content : businesses
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.0582362847344484e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "memories"
  Begin Offset : 92261
  Content : memories
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0582088179944549e-05
Sentiment: 

Name: "clothes"
  Begin Offset : 153824
  Content : clothes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0580723028397188e-05
Sentiment: 

Name: "businesses"
  Begin Offset : 153757
  Content : businesses
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 1.0580723028397188e-05
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "rain snow brain fog shine"
  Begin Offset : 93561
  Content : rain snow brain fog shine
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0579455192782916e-05
Sentiment: 

Name: "festival goers"
  Begin Offset : 94692
  Content : festival goers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0576874956313986e-05
Sentiment: 

Name: "memory"
  Begin Offset : 95195
  Content : memory
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 1.0576874956313986e-05
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "film"
  Begin Offset : 100360
  Content : film
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 1.057186455000192e-05
Sentiment: magnitude: 0.5
score: -0.5


Name: "nurse"
  Begin Offset : 100514
  Content : nurse
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.0569430742179975e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "sphere lumiere jakubkrupa"
  Begin Offset : 103137
  Content : sphere lumiere   jakubkrupa
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.056704240909312e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "angles"
  Begin Offset : 103105
  Content : angles
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.056704240909312e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "saws"
  Begin Offset : 103328
  Content : saws
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.056704240909312e-05
Sentiment: 

Name: "album"
  Begin Offset : 104387
  Content : album
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.056704240909312e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "edition"
  Begin Offset : 102619
  Content : edition
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.056704240909312e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "board game"
  Begin Offset : 108049
  Content : board game
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.0562393981672358e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "rainbow shades"
  Begin Offset : 110198
  Content : rainbow shades
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0560132068349048e-05
Sentiment: 

Name: "red man"
  Begin Offset : 111969
  Content : red man
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0557908353803214e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "green man"
  Begin Offset : 111951
  Content : green man
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0557908353803214e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "church services"
  Begin Offset : 115008
  Content : church services
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.0553573702054564e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "prevalence"
  Begin Offset : 117344
  Content : prevalence
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 1.0551460036367644e-05
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "timeoutlondon grabber"
  Begin Offset : 120135
  Content : timeoutlondon grabber
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.054938093147939e-05
Sentiment: 

Name: "pa"
  Begin Offset : 173260
  Content : pa
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 1.052781954058446e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "magnificence"
  Begin Offset : 66087
  Content : magnificence
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.0503561497898772e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "pity"
  Begin Offset : 80234
  Content : pity
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.04755154097802e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "description"
  Begin Offset : 140693
  Content : description
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.040413735609036e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "description"
  Begin Offset : 140509
  Content : description
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.040413735609036e-05
Sentiment: magnitude: 1.899999976158142
score: 0.6000000238418579


Name: "details"
  Begin Offset : 123055
  Content : details
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 148092
  Content : details
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 165462
  Content : details
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0304122042725794e-05
Sentiment: magnitude: 0.6000000238418579
score: -0.10000000149011612


Name: "rainbow tunnel"
  Begin Offset : 58428
  Content : rainbow tunnel
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 1.0299934729118831e-05
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "oxfordcircus julie_guldahl"
  Begin Offset : 109036
  Content : oxfordcircus  julie_guldahl
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.0216558621323202e-05
Sentiment: 

Name: "chance check"
  Begin Offset : 165265
  Content : chance check
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0212367669737432e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lewisham lumierelondon"
  Begin Offset : 167027
  Content : lewisham lumierelondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.020622130454285e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster lumierelondon"
  Begin Offset : 171837
  Content : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster  lumierelondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.0201911209151149e-05
Sentiment: 

Name: "lumiere lumierelondon"
  Begin Offset : 173190
  Content : lumiere  lumierelondon
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 1.0201911209151149e-05
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "photos"
  Begin Offset : 165006
  Content : photos
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0172756446991116e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "photography"
  Begin Offset : 168438
  Content : photography
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 1.0169842425966635e-05
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "photos"
  Begin Offset : 172890
  Content : photos
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 1.0166995707550086e-05
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "photography"
  Begin Offset : 175003
  Content : photography
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 1.0165595995204058e-05
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "atransformslives aichoketrust visitlondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon justin_venn lumierelondon2018 lumierelondon theresidentmag"
  Begin Offset : 42934
  Content : atransformslives aichoketrust visitlondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  justin_venn  lumierelondon2018 lumierelondon  theresidentmag
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 1.0146837666979991e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "jungle city"
  Begin Offset : 160111
  Content : jungle city
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0146812201128341e-05
Sentiment: 

Name: "city"
  Begin Offset : 168268
  Content : city
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 1.0140931408386678e-05
Sentiment: magnitude: 0.5
score: 0.5


Name: "city"
  Begin Offset : 169929
  Content : city
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 1.0139503501704894e-05
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "nofilter cityscape"
  Begin Offset : 170410
  Content : nofilter cityscape
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 1.0139503501704894e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "city"
  Begin Offset : 175530
  Content : city
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 1.0135318007087335e-05
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "50 aists couauldgall"
  Begin Offset : 52287
  Content : 50 aists couauldgall
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.0120179467776325e-05
Sentiment: 

Name: "london lumiere dewdropbook dewdrop ay abi"
  Begin Offset : 56947
  Content : london lumiere  dewdropbook dewdrop ay abi
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 1.0110945368069224e-05
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "force"
  Begin Offset : 141436
  Content : force
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 1.0079002095153555e-05
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "pattenden couesy aichoke aists simonmanleyfco que haya luz segunda edición del festival de"
  Begin Offset : 151039
  Content : pattenden couesy aichoke aists  simonmanleyfco que haya luz segunda edición del festival de
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
  Begin Offset : 157093
  Content : simonmanleyfco que haya luz segunda edición del festival de
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 1.0053229743789416e-05
Sentiment: magnitude: 1.7000000476837158
score: 0.20000000298023224


Name: "works"
  Begin Offset : 159736
  Content : works
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.0029317309090402e-05
Sentiment: 

Name: "works"
  Begin Offset : 168798
  Content : works
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 1.002350381895667e-05
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "work"
  Begin Offset : 171265
  Content : work
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 1.00206980278017e-05
Sentiment: 

Name: "installations impulse pa exhibition"
  Begin Offset : 161670
  Content : installations impulse pa  exhibition
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.968377526092809e-06
Sentiment: 

Name: "lots"
  Begin Offset : 121577
  Content : lots
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.898467396851629e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "westminsterabbey colour timeout"
  Begin Offset : 171389
  Content : westminsterabbey  colour timeout
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 9.80793538474245e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "way"
  Begin Offset : 132524
  Content : way
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 9.785829206521157e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "canadian"
  Begin Offset : 128287
  Content : canadian
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 129367
  Content : canadian
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 9.782862434803974e-06
Sentiment: 

Name: "thinkingcity addition"
  Begin Offset : 104959
  Content : thinkingcity addition
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.749373020895291e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "therose pedalpower petalpower"
  Begin Offset : 51981
  Content : therose pedalpower petalpower
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 57051
  Content : therose pedalpower petalpower
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 9.737555046740454e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "westminsterabbey ceainly trudyakelly"
  Begin Offset : 99542
  Content : westminsterabbey ceainly  trudyakelly
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 1
Salience: 9.730000783747528e-06
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "object"
  Begin Offset : 124784
  Content : object
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.674155080574565e-06
Sentiment: 

Name: "vlog editing"
  Begin Offset : 123469
  Content : vlog editing
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.674155080574565e-06
Sentiment: 

Name: "circus regents street spot"
  Begin Offset : 127719
  Content : circus regents street spot
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.670544386608526e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "festival goers"
  Begin Offset : 129492
  Content : festival goers
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.668779966887087e-06
Sentiment: 

Name: "cross section"
  Begin Offset : 131856
  Content : cross section
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.667041922511999e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cross section"
  Begin Offset : 131761
  Content : cross section
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.667041922511999e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "visitor rules"
  Begin Offset : 133283
  Content : visitor rules
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.667041922511999e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "plate rules"
  Begin Offset : 134141
  Content : plate rules
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.665328434493858e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "photo credit"
  Begin Offset : 141210
  Content : photo credit
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.660333489591721e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "menus"
  Begin Offset : 143422
  Content : menus
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.657117516326252e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "menus"
  Begin Offset : 144613
  Content : menus
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.657117516326252e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "walls"
  Begin Offset : 144407
  Content : walls
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.657117516326252e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "check blog spots"
  Begin Offset : 149383
  Content : check blog spots
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.653987945057452e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "trafalgarsquare"
  Begin Offset : 166214
  Content : trafalgarsquare
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.653820598032326e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "comfo food"
  Begin Offset : 115331
  Content : comfo food
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.622466677683406e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "visit website"
  Begin Offset : 84582
  Content : visit website
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.607862921257038e-06
Sentiment: 

Name: "visit website"
  Begin Offset : 85786
  Content : visit website
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.607862921257038e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "host"
  Begin Offset : 35494
  Content : host
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.598545148037374e-06
Sentiment: 

Name: "host"
  Begin Offset : 44621
  Content : host
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.568109817337245e-06
Sentiment: 

Name: "lumiere smitf_london"
  Begin Offset : 152699
  Content : lumiere   smitf_london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 9.55890936893411e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "earlham street"
  Begin Offset : 161102
  Content : earlham street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.49400600802619e-06
Sentiment: 

Name: "earlham street"
  Begin Offset : 160589
  Content : earlham street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.49400600802619e-06
Sentiment: magnitude: 0.10000000149011612


Name: "lightbulb installation ganton street"
  Begin Offset : 174871
  Content : lightbulb installation ganton street
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.484541806159541e-06
Sentiment: magnitude: 1.0


Name: "lightbulb installation ganton street"
  Begin Offset : 175142
  Content : lightbulb installation ganton street
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.484541806159541e-06
Sentiment: magnitude: 1.0


Name: "jubilee line baker street"
  Begin Offset : 175782
  Content : jubilee line baker street
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.483251233177725e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "regent street"
  Begin Offset : 176305
  Content : regent street
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.483251233177725e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "balloon lights"
  Begin Offset : 175957
  Content : balloon lights
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.479040272708517e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "hot chocolate"
  Begin Offset : 136764
  Content : hot chocolate
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.428479643247556e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "westminster smitf_london"
  Begin Offset : 154390
  Content : westminster  smitf_london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
  Begin Offset : 155432
  Content : westminster  smitf_london
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 9.427978511666879e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.20000000298023224


Name: "dreams"
  Begin Offset : 158745
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.394026164954994e-06
Sentiment: 

Name: "badgerust fox amp badger stars"
  Begin Offset : 160225
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.39262372412486e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "badgerust fox amp badger stars"
  Begin Offset : 160726
  Content : badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.39262372412486e-06
Sentiment: 

Name: "dreams"
  Begin Offset : 163255
  Content : dreams
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.39123856369406e-06
Sentiment: 

Name: "dreams"
  Begin Offset : 166159
  Content : dreams
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 9.388516446051653e-06
Sentiment: magnitude: 3.4000000953674316
score: 0.6000000238418579


Name: "badgerust fox amp badger stars"
  Begin Offset : 165501
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.388516446051653e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "ipreview badgerust fox amp badger stars"
  Begin Offset : 166840
  Content : ipreview  badgerust fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.388516446051653e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "travel badgerust fox amp badger stars"
  Begin Offset : 167076
  Content : travel  badgerust fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.388516446051653e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "badgerust fox amp badger stars"
  Begin Offset : 167314
  Content : badgerust fox amp badger stars
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.388516446051653e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "badgerust fox amp badger stars"
  Begin Offset : 167988
  Content : badgerust fox amp badger stars
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.387179488840047e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "guide gt badgerust fox amp badger stars"
  Begin Offset : 167627
  Content : guide gt  badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.387179488840047e-06
Sentiment: 

Name: "badgerust fox amp badger stars"
  Begin Offset : 171103
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.385857993038371e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "visitlondon badgerust fox amp badger stars"
  Begin Offset : 170828
  Content : visitlondon  badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.385857993038371e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "badgerust fox amp badger stars"
  Begin Offset : 169999
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.385857993038371e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "badgerust fox amp badger stars"
  Begin Offset : 170103
  Content : badgerust fox amp badger stars
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.385857993038371e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "badgerust fox amp badger stars"
  Begin Offset : 172919
  Content : badgerust fox amp badger stars
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 9.384551958646625e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "badgerust fox amp badger stars"
  Begin Offset : 173541
  Content : badgerust fox amp badger stars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.383260476170108e-06
Sentiment: 

Name: "londonlife sessions"
  Begin Offset : 103499
  Content : londonlife sessions
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.37483855523169e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "ink"
  Begin Offset : 91339
  Content : ink
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.2957916422165e-06
Sentiment: 

Name: "ponds"
  Begin Offset : 92956
  Content : ponds
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.293431503465399e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "puddles"
  Begin Offset : 92943
  Content : puddles
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.293431503465399e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "gear"
  Begin Offset : 92090
  Content : gear
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.293431503465399e-06
Sentiment: 

Name: "woxxy"
  Begin Offset : 92405
  Content : woxxy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.293431503465399e-06
Sentiment: 

Name: "display"
  Begin Offset : 155125
  Content : display
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.293076800531708e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "fab"
  Begin Offset : 94199
  Content : fab
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.29111865843879e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "doublemacbex"
  Begin Offset : 95392
  Content : doublemacbex
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.288853107136674e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "ai"
  Begin Offset : 94875
  Content : ai
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.288853107136674e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "woman"
  Begin Offset : 98307
  Content : woman
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.286631211580243e-06
Sentiment: 

Name: "ride"
  Begin Offset : 99990
  Content : ride
  Magnitude : 0.6000000238418579
  Sentiment : -0.6000000238418579
  Type : 2
Salience: 9.284452971769497e-06
Sentiment: magnitude: 0.6000000238418579
score: -0.6000000238418579


Name: "shift team facltd treatment unit alpha1"
  Begin Offset : 100398
  Content : shift team facltd treatment unit alpha1
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 9.284452971769497e-06
Sentiment: magnitude: 0.5
score: -0.5


Name: "check hashtag"
  Begin Offset : 103866
  Content : check  hashtag
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.28021745494334e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "duds"
  Begin Offset : 104837
  Content : duds
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.278157449443825e-06
Sentiment: 

Name: "thewave"
  Begin Offset : 34918
  Content : thewave
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 9.277864592149854e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "globe"
  Begin Offset : 107897
  Content : globe
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.276135642721783e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "issues"
  Begin Offset : 108161
  Content : issues
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.276135642721783e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visitlondon jonchanuk"
  Begin Offset : 110394
  Content : visitlondon  jonchanuk
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.27414839679841e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "feast"
  Begin Offset : 110748
  Content : feast
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.27414839679841e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "quokkas"
  Begin Offset : 109612
  Content : quokkas
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.27414839679841e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "madness"
  Begin Offset : 110123
  Content : madness
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.27414839679841e-06
Sentiment: 

Name: "tea pots"
  Begin Offset : 111720
  Content : tea pots
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 9.272195711673703e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "thefools"
  Begin Offset : 114255
  Content : thefools
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.270276677852962e-06
Sentiment: 

Name: "existence"
  Begin Offset : 114612
  Content : existence
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.270276677852962e-06
Sentiment: 

Name: "festival lights badger badger badger badger mushroom"
  Begin Offset : 113579
  Content : festival lights badger badger badger badger mushroom
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 9.270276677852962e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "minster"
  Begin Offset : 115042
  Content : minster
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.268388566852082e-06
Sentiment: 

Name: "jars"
  Begin Offset : 115768
  Content : jars
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.268388566852082e-06
Sentiment: 

Name: "sound design projection mapping"
  Begin Offset : 116581
  Content : sound design projection mapping
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.268388566852082e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "miracle"
  Begin Offset : 115059
  Content : miracle
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.268388566852082e-06
Sentiment: 

Name: "rover"
  Begin Offset : 115904
  Content : rover
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 9.268388566852082e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "amp pandora box"
  Begin Offset : 156309
  Content : amp pandora box
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.256504199584015e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "amp pandora box"
  Begin Offset : 157060
  Content : amp pandora box
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 9.256504199584015e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "fish phone box"
  Begin Offset : 157287
  Content : fish phone box
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.256504199584015e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "beasts"
  Begin Offset : 161907
  Content : beasts
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.252358722733334e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "aquarium telephone box"
  Begin Offset : 166919
  Content : aquarium telephone box
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 9.249676622857805e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "aichoketrust biggsytravels toevho"
  Begin Offset : 43714
  Content : aichoketrust biggsytravels  toevho
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 9.248445167031605e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "londonlumiere lumierelondon aichoketrust"
  Begin Offset : 160855
  Content : londonlumiere  lumierelondon  aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 9.245758519682568e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk"
  Begin Offset : 51674
  Content : flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 9.229433999280445e-06
Sentiment: 

Name: "bicycles"
  Begin Offset : 67752
  Content : bicycles
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 9.224467248714063e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018"
  Begin Offset : 55481
  Content : chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 9.22101298783673e-06
Sentiment: 

Name: "lumiere london 2018 lumierelondon lumierelondon2018 meizu meizumx6"
  Begin Offset : 55632
  Content : lumiere london 2018 lumierelondon lumierelondon2018  meizu meizumx6
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 9.22101298783673e-06
Sentiment: 

Name: "whatthefishsaw aquarium phoneaddict mania"
  Begin Offset : 73702
  Content : whatthefishsaw aquarium  phoneaddict mania
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.211476026393939e-06
Sentiment: 

Name: "non"
  Begin Offset : 80270
  Content : non
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.199836313200649e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "defying gravity"
  Begin Offset : 83224
  Content : defying gravity
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.19444028113503e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "amp nature"
  Begin Offset : 84086
  Content : amp nature
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.19444028113503e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "world light amp colours balance"
  Begin Offset : 84012
  Content : world light amp colours balance
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.19444028113503e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "fella"
  Begin Offset : 84460
  Content : fella
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 9.19444028113503e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "hugs"
  Begin Offset : 84473
  Content : hugs
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.19444028113503e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "wabbey rcwestminster"
  Begin Offset : 107609
  Content : wabbey rcwestminster
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 9.192328434437513e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "legs ache"
  Begin Offset : 86211
  Content : legs ache
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.189293450617697e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "selfie london transpo system"
  Begin Offset : 87007
  Content : selfie london transpo system
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 9.189293450617697e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival"
  Begin Offset : 74269
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 9.18723253562348e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "structure"
  Begin Offset : 88003
  Content : structure
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 9.186805073113646e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "gates"
  Begin Offset : 88048
  Content : gates
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 9.186805073113646e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "poem"
  Begin Offset : 89971
  Content : poem
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 9.184372174786404e-06
Sentiment: 

Name: "eyes"
  Begin Offset : 89708
  Content : eyes
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 2
Salience: 9.184372174786404e-06
Sentiment: magnitude: 0.5
score: -0.5


Name: "aquarium evdjones"
  Begin Offset : 91040
  Content : aquarium  evdjones
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 9.181991117657162e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon lumierelondon2018 lumiere"
  Begin Offset : 176350
  Content : lumierelondon  lumierelondon2018 lumiere
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 9.177019819617271e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "glance"
  Begin Offset : 103118
  Content : glance
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 9.054387192009017e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "aquarium"
  Begin Offset : 161072
  Content : aquarium
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.923882887756918e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "aquarium"
  Begin Offset : 160559
  Content : aquarium
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.923882887756918e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "south bank king cross"
  Begin Offset : 158577
  Content : south bank king cross
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.809288374322932e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "disney"
  Begin Offset : 100353
  Content : disney
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
  Begin Offset : 162310
  Content : disney
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.805289326119237e-06
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "south bank king cross"
  Begin Offset : 168712
  Content : south bank king cross
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.802868251223117e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "south bank king cross"
  Begin Offset : 169244
  Content : south bank king cross
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.802868251223117e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "south bank king cross"
  Begin Offset : 169631
  Content : south bank king cross
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.801629519439302e-06
Sentiment: 

Name: "line king cross"
  Begin Offset : 172157
  Content : line king cross
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 8.800404430076014e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "line king cross"
  Begin Offset : 172456
  Content : line king cross
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 8.800404430076014e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "tip king cross"
  Begin Offset : 175554
  Content : tip king cross
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.797995178611018e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "images"
  Begin Offset : 174744
  Content : images
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 8.795320354693104e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "images"
  Begin Offset : 176200
  Content : images
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.79412345966557e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "images"
  Begin Offset : 175834
  Content : images
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 8.79412345966557e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "tmnikonian darraghdoyle"
  Begin Offset : 114844
  Content : tmnikonian  darraghdoyle
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 8.649091796542052e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "fitzroy"
  Begin Offset : 147505
  Content : fitzroy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 8.645681191410404e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "pattenden couesy aichoke aists"
  Begin Offset : 151430
  Content : pattenden couesy aichoke aists
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 1
Salience: 8.644306944916025e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです benedetto bufalino benoit deseille aquarium"
  Begin Offset : 75152
  Content : ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  barkingsideac
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 79612
  Content : 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium  newsdigest 英国 ロンドンの赤い電話ボックスが水槽に変身 電話機のまわりをスイスイ泳ぐカラフルな金魚もインパクト大ですが 今ではほとんど見向きもされなくなった電話ボックスに大勢の人が群がる様子もおもしろかったです  benedetto bufalino benoit deseille aquarium
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.629456715425476e-06
Sentiment: 

Name: "spirit"
  Begin Offset : 162262
  Content : spirit
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.564650670450646e-06
Sentiment: 

Name: "spirit"
  Begin Offset : 164656
  Content : spirit
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.563401934225112e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "installation light spirit"
  Begin Offset : 165827
  Content : installation light spirit
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.562168659409508e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "spirit"
  Begin Offset : 169093
  Content : spirit
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 8.560949936509132e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "installation light spirit"
  Begin Offset : 176089
  Content : installation light spirit
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.556210559618194e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon victoriabid createvictoria"
  Begin Offset : 118087
  Content : visitlondon victoriabid createvictoria
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 8.533200343663339e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather"
  Begin Offset : 122051
  Content : westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 8.529864317097235e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "babcockwalk step count thethroneseekers team"
  Begin Offset : 157213
  Content : babcockwalk step count thethroneseekers team
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 8.497182534483727e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "thecrownestate"
  Begin Offset : 124022
  Content : thecrownestate
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.496061127516441e-06
Sentiment: 

Name: "elements"
  Begin Offset : 123988
  Content : elements
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.496061127516441e-06
Sentiment: 

Name: "money"
  Begin Offset : 126055
  Content : money
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.494463145325426e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "balls fire"
  Begin Offset : 127074
  Content : balls fire
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.494463145325426e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "heawarming"
  Begin Offset : 125997
  Content : heawarming
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.494463145325426e-06
Sentiment: 

Name: "cans"
  Begin Offset : 126937
  Content : cans
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.494463145325426e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "look rbehotels"
  Begin Offset : 128915
  Content : look rbehotels
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.49289062898606e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "desks"
  Begin Offset : 129629
  Content : desks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.49134085001424e-06
Sentiment: 

Name: "divas"
  Begin Offset : 130325
  Content : divas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.49134085001424e-06
Sentiment: 

Name: "bank light bulbs pulse flash"
  Begin Offset : 134650
  Content : bank light bulbs pulse flash
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.48830950417323e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "outcome"
  Begin Offset : 135507
  Content : outcome
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.486826118314639e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "rococochocs"
  Begin Offset : 136786
  Content : rococochocs
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.486826118314639e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lovers"
  Begin Offset : 157382
  Content : lovers
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 8.484460522595327e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "susie"
  Begin Offset : 141247
  Content : susie
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 8.48392301122658e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "fans"
  Begin Offset : 142677
  Content : fans
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.482500561513007e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "glow sticks"
  Begin Offset : 141927
  Content : glow sticks
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.482500561513007e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "frost bite pneumonia"
  Begin Offset : 143841
  Content : frost bite pneumonia
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.481098120682873e-06
Sentiment: 

Name: "enter calming"
  Begin Offset : 147485
  Content : enter calming
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.479714779241476e-06
Sentiment: 

Name: "challenge"
  Begin Offset : 148268
  Content : challenge
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 8.478349627694115e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "evening standard"
  Begin Offset : 149161
  Content : evening standard
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.478349627694115e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "metline"
  Begin Offset : 149560
  Content : metline
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.478349627694115e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "ambassador house forecou"
  Begin Offset : 149858
  Content : ambassador house forecou
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 8.477001756546088e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "thornton heath"
  Begin Offset : 149816
  Content : thornton heath
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.477001756546088e-06
Sentiment: 

Name: "operations"
  Begin Offset : 153852
  Content : operations
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.474358764942735e-06
Sentiment: 

Name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  Begin Offset : 81570
  Content : trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 8.46926741360221e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "gasholderiplets kingscross lumiere levanterman"
  Begin Offset : 162822
  Content : gasholderiplets kingscross  lumiere  levanterman
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 162803
  Content : reality gasholders
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.428373803326394e-06
Sentiment: 

Name: "ldn_culture"
  Begin Offset : 105802
  Content : ldn_culture
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.418456673098262e-06
Sentiment: 

Name: "way"
  Begin Offset : 166265
  Content : way
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 8.418309334956575e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "way"
  Begin Offset : 166390
  Content : way
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 8.418309334956575e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "view"
  Begin Offset : 106781
  Content : view
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.416621312790085e-06
Sentiment: 

Name: "granarysquare"
  Begin Offset : 159200
  Content : granarysquare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.397358215006534e-06
Sentiment: 

Name: "lumierelondon lumiere leicestersquare"
  Begin Offset : 140870
  Content : lumierelondon lumiere leicestersquare
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.391276423935778e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "granarysquare"
  Begin Offset : 171691
  Content : granarysquare
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.388889000343625e-06
Sentiment: 

Name: "people"
  Begin Offset : 170778
  Content : people
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 8.30241151561495e-06
Sentiment: 

Name: "people"
  Begin Offset : 175589
  Content : people
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 8.298983630083967e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "goodge street fouh"
  Begin Offset : 110424
  Content : goodge street  fouh
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
  Begin Offset : 111321
  Content : goodge street  fouh
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 8.298876309709158e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "dinner"
  Begin Offset : 124898
  Content : dinner
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 8.293771315948106e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "likes"
  Begin Offset : 127298
  Content : likes
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 8.287754099001177e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "fitzrovia dontmissout"
  Begin Offset : 109227
  Content : fitzrovia  dontmissout
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 110943
  Content : fitzrovia  dontmissout
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 112176
  Content : fitzrovia  dontmissout
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 8.20625700725941e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.10000000149011612


Name: "gosee themayfairhotel"
  Begin Offset : 114775
  Content : gosee  themayfairhotel
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.179272299457807e-06
Sentiment: 

Name: "exitmagazine maxcoopermax 2nickjones"
  Begin Offset : 35659
  Content : exitmagazine  maxcoopermax  2nickjones
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.142293154378422e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "taize prayer"
  Begin Offset : 129515
  Content : taize prayer
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 8.137256372720003e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "aurais tellement aimé pouvoir assister aux décidément notre"
  Begin Offset : 38389
  Content : aurais tellement aimé pouvoir assister aux  décidément notre
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.136872565955855e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "mauvais peut être"
  Begin Offset : 38463
  Content : mauvais peut être
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 8.136872565955855e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "panasonicfz2500 fz2500"
  Begin Offset : 42099
  Content : panasonicfz2500 fz2500
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.126848115352914e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumierelondon2018 lumierelondon justin_venn lumierelondon2018 lumierelondon lm_westminster"
  Begin Offset : 42757
  Content : lumierelondon2018 lumierelondon  justin_venn  lumierelondon2018 lumierelondon  lm_westminster
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.126848115352914e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "visitlondon keeponwalking"
  Begin Offset : 123067
  Content : visitlondon keeponwalking
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 8.126012289721984e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "go aichoketrust lumierelondon2018 visitlondon livonshoestring"
  Begin Offset : 52657
  Content : go aichoketrust lumierelondon2018  visitlondon  livonshoestring
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.10549590823939e-06
Sentiment: 

Name: "kensington palace"
  Begin Offset : 55328
  Content : kensington palace
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.098099897324573e-06
Sentiment: 

Name: "atransformslives aichoketrust visitlondon openyoureyesldn"
  Begin Offset : 56679
  Content : atransformslives aichoketrust visitlondon  openyoureyesldn
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.098099897324573e-06
Sentiment: 

Name: "wabbey westminsterabbey greatbritain"
  Begin Offset : 55879
  Content : wabbey westminsterabbey  greatbritain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 8.098099897324573e-06
Sentiment: 

Name: "redbridgelive umbrellaproject thisisredbridge mylocalculture livonshoestring"
  Begin Offset : 62728
  Content : redbridgelive umbrellaproject thisisredbridge mylocalculture  livonshoestring
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 8.087953574431594e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere mr_simms_hx"
  Begin Offset : 121939
  Content : lumiere   mr_simms_hx
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 8.016057108761743e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "swim bladder infection"
  Begin Offset : 116646
  Content : swim bladder infection
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.896961506048683e-06
Sentiment: 

Name: "project"
  Begin Offset : 166543
  Content : project
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.88356555858627e-06
Sentiment: 

Name: "miss"
  Begin Offset : 170683
  Content : miss
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.881333658588119e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "mayoroflondon"
  Begin Offset : 163423
  Content : mayoroflondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.834854841348715e-06
Sentiment: 

Name: "aworks"
  Begin Offset : 158654
  Content : aworks
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.822609404684044e-06
Sentiment: 

Name: "aist imakefings"
  Begin Offset : 138681
  Content : aist imakefings
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 7.81385006121127e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "aichoketrust visitlondon fuzzworks_uk"
  Begin Offset : 139617
  Content : aichoketrust visitlondon  fuzzworks_uk
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 7.812523108441383e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "shaftesbury avenue"
  Begin Offset : 113983
  Content : shaftesbury avenue
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 121777
  Content : shaftesbury avenue
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 123833
  Content : shaftesbury avenue
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.808462214597967e-06
Sentiment: magnitude: 0.20000000298023224


Name: "lumierelondon grosvenor_ldn"
  Begin Offset : 103341
  Content : lumierelondon grosvenor_ldn
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 7.793625627527945e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "dot dot dot dot dot philippe morvan"
  Begin Offset : 65704
  Content : dot dot dot dot dot philippe morvan
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.749742508167401e-06
Sentiment: 

Name: "londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c suzystories"
  Begin Offset : 70500
  Content : londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c  suzystories
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.741193257970735e-06
Sentiment: 

Name: "london chinatownldn festivaloflights"
  Begin Offset : 109759
  Content : london chinatownldn festivaloflights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 109675
  Content : london chinatownldn festivaloflights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 7.726495823590085e-06
Sentiment: magnitude: 0.10000000149011612


Name: "catch"
  Begin Offset : 162348
  Content : catch
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.713278137089219e-06
Sentiment: 

Name: "aworks"
  Begin Offset : 168290
  Content : aworks
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.626686510775471e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "video"
  Begin Offset : 170821
  Content : video
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 7.625142188771861e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "piccadillycircus building lights music video"
  Begin Offset : 171484
  Content : piccadillycircus building lights music video
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 7.624080808454892e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "visitlondon keeponwalking"
  Begin Offset : 148104
  Content : visitlondon keeponwalking
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 165474
  Content : visitlondon keeponwalking
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 7.613204161316389e-06
Sentiment: magnitude: 0.5
score: -0.20000000298023224


Name: "marshalljulius london leicester square"
  Begin Offset : 157799
  Content : marshalljulius london leicester square
  Magnitude : 0.5
  Sentiment : -0.5
  Type : 1
Salience: 7.539726084360154e-06
Sentiment: magnitude: 0.5
score: -0.5


Name: "westminsterabbey timeoutlondon kingscrossn1c"
  Begin Offset : 170436
  Content : westminsterabbey timeoutlondon  kingscrossn1c
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 7.510228442697553e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "colour"
  Begin Offset : 164232
  Content : colour
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 7.352391548920423e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "facebook"
  Begin Offset : 104378
  Content : facebook
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 7.3515793701517396e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "amp walk home"
  Begin Offset : 108066
  Content : amp walk home
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 7.350088708335534e-06
Sentiment: 

Name: "colours"
  Begin Offset : 171974
  Content : colours
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 7.348228336923057e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany"
  Begin Offset : 110755
  Content : lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 7.346771781158168e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "ajwoodcock"
  Begin Offset : 82986
  Content : ajwoodcock
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 7.299475782929221e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "exhibits"
  Begin Offset : 176399
  Content : exhibits
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 7.2294933488592505e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "group"
  Begin Offset : 149597
  Content : group
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 7.1353847488353495e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "iphonese"
  Begin Offset : 125155
  Content : iphonese
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.135080522857606e-06
Sentiment: 

Name: "thisislondon iphonephotography"
  Begin Offset : 125164
  Content : thisislondon iphonephotography
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 7.135080522857606e-06
Sentiment: 

Name: "ltda lumiere piccadilly burlington house"
  Begin Offset : 126358
  Content : ltda lumiere piccadilly burlington house
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 7.133739018172491e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
  Begin Offset : 138733
  Content : lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 7.126096988940844e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "westminster thegl0betrotter"
  Begin Offset : 148469
  Content : westminster  thegl0betrotter
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 7.120206191757461e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "arches"
  Begin Offset : 156760
  Content : arches
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 7.118826943042222e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "folk"
  Begin Offset : 167022
  Content : folk
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 7.113576430128887e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "brown ha gardens"
  Begin Offset : 173819
  Content : brown ha gardens
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 7.0625837906845845e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "song lumierelondon thought"
  Begin Offset : 76871
  Content : song lumierelondon  thought
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 7.024101705610519e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "tracey emin"
  Begin Offset : 82612
  Content : tracey emin
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 82808
  Content : tracey emin
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.987894266785588e-06
Sentiment: magnitude: 0.10000000149011612


Name: "walk rainbow tunnel"
  Begin Offset : 114495
  Content : walk rainbow tunnel
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.96801180311013e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "croydon"
  Begin Offset : 149981
  Content : croydon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 6.945833774807397e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "flamingos"
  Begin Offset : 155289
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.9296916080929805e-06
Sentiment: 

Name: "flamingos"
  Begin Offset : 155971
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.928631137270713e-06
Sentiment: 

Name: "flamingos"
  Begin Offset : 158925
  Content : flamingos
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.927583854121622e-06
Sentiment: 

Name: "visit half price entry"
  Begin Offset : 165873
  Content : visit half price entry
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.923521141288802e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "visit half price entry"
  Begin Offset : 176135
  Content : visit half price entry
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.91870309310616e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "share experience"
  Begin Offset : 164496
  Content : share experience
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.858630058559356e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "tmnikonian redlionmayfair"
  Begin Offset : 94993
  Content : tmnikonian  redlionmayfair
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 6.8509025368257426e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "piccadilly victoria amsharif"
  Begin Offset : 106885
  Content : piccadilly victoria  amsharif
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 6.8415224632190075e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "swimming sevendials coventgarden outsidework greypointe cubitt"
  Begin Offset : 108746
  Content : swimming  sevendials coventgarden outsidework  greypointe  cubitt
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 6.840057267254451e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "mayfair grosvenor_ldn grosvenor_gbi greypointe cubitt"
  Begin Offset : 112382
  Content : mayfair grosvenor_ldn grosvenor_gbi  greypointe  cubitt
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 6.838617082394194e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "bhawnasaini_yml"
  Begin Offset : 66896
  Content : bhawnasaini_yml
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.803415089962073e-06
Sentiment: 

Name: "newwestend wave"
  Begin Offset : 156664
  Content : newwestend wave
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.795402896386804e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "telephonebox bufalino deseille jakubkrupa"
  Begin Offset : 73745
  Content : telephonebox bufalino deseille  jakubkrupa
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 6.793834018026246e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "newcastle fontwell crz_mankai8"
  Begin Offset : 75096
  Content : newcastle  fontwell crz_mankai8
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.793834018026246e-06
Sentiment: 

Name: "website"
  Begin Offset : 171327
  Content : website
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.746376584487734e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "actioncountersterrorism teamworktomakethedreamwork revdsimonharvey"
  Begin Offset : 127833
  Content : actioncountersterrorism teamworktomakethedreamwork  revdsimonharvey
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 6.74251168675255e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "child hood"
  Begin Offset : 174438
  Content : child hood
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.740458047715947e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "sevendials lumierelondon ianbeetlestone westminsterabbey exitmagazine maxcoopermax"
  Begin Offset : 128957
  Content : sevendials  lumierelondon  ianbeetlestone westminsterabbey   exitmagazine  maxcoopermax
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 6.727873824274866e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "favourites"
  Begin Offset : 155186
  Content : favourites
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.7276869231136516e-06
Sentiment: 

Name: "rhys coren"
  Begin Offset : 142449
  Content : rhys coren
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 6.719643351971172e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "child hood pulse movement light amp sound"
  Begin Offset : 158766
  Content : child hood pulse movement light amp sound
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.6698621594696306e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "city hall danielcanogar"
  Begin Offset : 144425
  Content : city hall danielcanogar
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.591907549591269e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "dancing lights music"
  Begin Offset : 175998
  Content : dancing lights music
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.575071893166751e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "simonmanleyfco que haya luz segunda edición del festival de luces en londres"
  Begin Offset : 160281
  Content : simonmanleyfco que haya luz segunda edición del festival de luces en londres
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 6.553487310156925e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "canonukandie visitlondon aichoketrust"
  Begin Offset : 172530
  Content : canonukandie visitlondon aichoketrust
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 1
Salience: 6.5336535044480115e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "brightnights"
  Begin Offset : 156325
  Content : brightnights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.510921593871899e-06
Sentiment: magnitude: 0.20000000298023224


Name: "amp pandora box brightnights"
  Begin Offset : 157766
  Content : amp pandora box brightnights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.509937520604581e-06
Sentiment: 

Name: "amp pandora box brightnights"
  Begin Offset : 158011
  Content : amp pandora box brightnights
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 6.509937520604581e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "highlights"
  Begin Offset : 162946
  Content : highlights
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.508005753858015e-06
Sentiment: 

Name: "things"
  Begin Offset : 167892
  Content : things
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.505193141492782e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "child"
  Begin Offset : 174459
  Content : child
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.502476935565937e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "traveljunkiegrl"
  Begin Offset : 156830
  Content : traveljunkiegrl
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.4355272115790285e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "statue"
  Begin Offset : 171374
  Content : statue
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 6.428064807550982e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "david batchelor"
  Begin Offset : 132383
  Content : david batchelor
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.395257059921278e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "warning"
  Begin Offset : 158162
  Content : warning
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.385106644302141e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "warning"
  Begin Offset : 161439
  Content : warning
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.383211257343646e-06
Sentiment: 

Name: "warning"
  Begin Offset : 162501
  Content : warning
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.383211257343646e-06
Sentiment: 

Name: "warning"
  Begin Offset : 163889
  Content : warning
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.3822808442637324e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "warning"
  Begin Offset : 165139
  Content : warning
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.3822808442637324e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "thing"
  Begin Offset : 156130
  Content : thing
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.35247988611809e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "planning trip"
  Begin Offset : 170482
  Content : planning trip
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 6.35172091278946e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "make note"
  Begin Offset : 126153
  Content : make note
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 6.320424290606752e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "piccadilly stjames jermynstreet"
  Begin Offset : 155853
  Content : piccadilly stjames jermynstreet
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 155847
  Content : style
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.28770976618398e-06
Sentiment: 

Name: "scape collectifcoin echelle ronhaselden"
  Begin Offset : 159845
  Content : scape collectifcoin echelle ronhaselden
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 159818
  Content : child hood light amp sound
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.2858207456883974e-06
Sentiment: 

Name: "visitlondon visitlondon createvictoria tanjaphotograph magical lumière london"
  Begin Offset : 159528
  Content : visitlondon visitlondon createvictoria  tanjaphotograph magical lumière london
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
  Begin Offset : 159507
  Content : blogger photographer
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.2858207456883974e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "oppounities"
  Begin Offset : 163583
  Content : oppounities
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.275116447795881e-06
Sentiment: 

Name: "pictures"
  Begin Offset : 168501
  Content : pictures
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.273319286265178e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bhawnasaini_yml"
  Begin Offset : 144743
  Content : bhawnasaini_yml
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.2551475821237545e-06
Sentiment: 

Name: "chance"
  Begin Offset : 165659
  Content : chance
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 6.2422786868410185e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "kingscross couesy nofilterneeded"
  Begin Offset : 110868
  Content : kingscross couesy  nofilterneeded
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.2366993915929925e-06
Sentiment: 

Name: "mayfair johansford johansfordsalon"
  Begin Offset : 119001
  Content : mayfair johansford johansfordsalon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 6.2328904277819674e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "pong lumierelondon2018 waterlicht dan"
  Begin Offset : 118341
  Content : pong   lumierelondon2018 waterlicht dan
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 6.2328904277819674e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "londonblogger wintersinlondon nightfestival wildscreens"
  Begin Offset : 67023
  Content : londonblogger wintersinlondon nightfestival   wildscreens
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 6.204596047609812e-06
Sentiment: 

Name: "scrums"
  Begin Offset : 83407
  Content : scrums
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 6.123356342868647e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "map"
  Begin Offset : 155247
  Content : map
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 6.114326424722094e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "treasure hunt"
  Begin Offset : 156532
  Content : treasure hunt
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 6.113391009421321e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "treasure hunt"
  Begin Offset : 163340
  Content : treasure hunt
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 6.110652975621633e-06
Sentiment: 

Name: "treasure hunt"
  Begin Offset : 165213
  Content : treasure hunt
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.109762125561247e-06
Sentiment: magnitude: 0.30000001192092896


Name: "planet"
  Begin Offset : 164274
  Content : planet
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.109762125561247e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "map"
  Begin Offset : 165454
  Content : map
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.108882189437281e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "treasure hunt"
  Begin Offset : 171798
  Content : treasure hunt
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 6.1063024077157024e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "piece"
  Begin Offset : 174425
  Content : piece
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 6.105462034611264e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "sculpture"
  Begin Offset : 164969
  Content : sculpture
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.023397872922942e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sculpture"
  Begin Offset : 166075
  Content : sculpture
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 6.022530214977451e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "soho"
  Begin Offset : 167415
  Content : soho
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 6.022530214977451e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "soho"
  Begin Offset : 167932
  Content : soho
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.021672561473679e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "soho"
  Begin Offset : 168188
  Content : soho
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.021672561473679e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sculpture"
  Begin Offset : 172853
  Content : sculpture
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 6.019986813043943e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "soho"
  Begin Offset : 174853
  Content : soho
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.0191582633706275e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "soho"
  Begin Offset : 175124
  Content : soho
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 6.0191582633706275e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "insight magic"
  Begin Offset : 163506
  Content : insight magic
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.986421911075013e-06
Sentiment: 

Name: "trafalgarsquare collectifcoin"
  Begin Offset : 158815
  Content : trafalgarsquare collectifcoin
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.9369490372773726e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "physicalenergy openyoureyesldn"
  Begin Offset : 139487
  Content : physicalenergy  openyoureyesldn
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 5.92289688938763e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lumiere southbanklondon"
  Begin Offset : 162018
  Content : lumiere   southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.834327566844877e-06
Sentiment: 

Name: "lumierelondon carnabylondon southbanklondon"
  Begin Offset : 167500
  Content : lumierelondon carnabylondon  southbanklondon
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 5.831805992784211e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "sroosegaarde pa catch"
  Begin Offset : 157561
  Content : sroosegaarde pa  catch
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.812025392515352e-06
Sentiment: 

Name: "window"
  Begin Offset : 156885
  Content : window
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.75053718421259e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "way"
  Begin Offset : 159678
  Content : way
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 5.748809599026572e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "leebrowne1971 lumierelondon2018 lumierelondon visitlondon maxcoopermax"
  Begin Offset : 129965
  Content : leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  maxcoopermax
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 5.73131046621711e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "london lumierelondon timeoutlondon lightfestival glamazonlondon"
  Begin Offset : 126659
  Content : london lumierelondon  timeoutlondon lightfestival  glamazonlondon
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 5.713574410037836e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "lumierelondon bbctravelale"
  Begin Offset : 151660
  Content : lumierelondon  bbctravelale
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 5.700934707419947e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "piccadilly stjames jermynstreet smitf_london"
  Begin Offset : 153436
  Content : piccadilly stjames jermynstreet  smitf_london
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 5.700934707419947e-06
Sentiment: magnitude: 0.800000011920929
score: 0.4000000059604645


Name: "dinner"
  Begin Offset : 157458
  Content : dinner
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.576840976573294e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "cocktails"
  Begin Offset : 157004
  Content : cocktails
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.5492982937721536e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "cocktails"
  Begin Offset : 157955
  Content : cocktails
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.548459739657119e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "love motion"
  Begin Offset : 160825
  Content : love motion
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.547631644731155e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "lighting capital"
  Begin Offset : 165984
  Content : lighting capital
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.545205567614175e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "love motion"
  Begin Offset : 169026
  Content : love motion
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 5.5444161262130365e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "love motion"
  Begin Offset : 169788
  Content : love motion
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.543635325011564e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "buses"
  Begin Offset : 169535
  Content : buses
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.543635325011564e-06
Sentiment: 

Name: "buses"
  Begin Offset : 169410
  Content : buses
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.543635325011564e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "lighting capital"
  Begin Offset : 172762
  Content : lighting capital
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.542864073504461e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "music amp wind everyone"
  Begin Offset : 174506
  Content : music amp wind everyone
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 5.5421010074496735e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "fun"
  Begin Offset : 174530
  Content : fun
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 5.5421010074496735e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "magic mayfair lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy"
  Begin Offset : 93412
  Content : magic mayfair  lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.488382157636806e-06
Sentiment: 

Name: "vous voulez voir quelques vidéos"
  Begin Offset : 94836
  Content : vous voulez voir quelques vidéos
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 5.487043381435797e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "shaida ealking"
  Begin Offset : 98335
  Content : shaida ealking
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.485731435328489e-06
Sentiment: 

Name: "lumiere umusicuk"
  Begin Offset : 120433
  Content : lumiere   umusicuk
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.472779776027892e-06
Sentiment: 

Name: "lewisham vbp2011"
  Begin Offset : 67884
  Content : lewisham  vbp2011
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.4470065151690505e-06
Sentiment: 

Name: "cast commentary"
  Begin Offset : 158136
  Content : cast commentary
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.441770099423593e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "students"
  Begin Offset : 164544
  Content : students
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.439362212200649e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "euro_tour 光の祭典 ルミエール ロンドン"
  Begin Offset : 76609
  Content : euro_tour 光の祭典 ルミエール ロンドン
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 5.43780834050267e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.20000000298023224


Name: "balloons"
  Begin Offset : 174489
  Content : balloons
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.435533694253536e-06
Sentiment: 

Name: "flickr"
  Begin Offset : 174986
  Content : flickr
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.435533694253536e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "ilovelondon nationalhuggingday2018"
  Begin Offset : 84513
  Content : ilovelondon nationalhuggingday2018
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 1
Salience: 5.431272256828379e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "wld"
  Begin Offset : 173702
  Content : wld
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.400603640737245e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "jayonlife visitlondon julie_guldahl"
  Begin Offset : 112893
  Content : jayonlife  visitlondon  julie_guldahl
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 5.342810709407786e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "fitzrovia area"
  Begin Offset : 158689
  Content : fitzrovia area
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.330446128937183e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust mrcravenracont"
  Begin Offset : 141578
  Content : london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  mrcravenracont
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 5.329026407707715e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "scenes"
  Begin Offset : 162878
  Content : scenes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.328864062903449e-06
Sentiment: 

Name: "scenes"
  Begin Offset : 162547
  Content : scenes
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.328864062903449e-06
Sentiment: 

Name: "scenes"
  Begin Offset : 172517
  Content : scenes
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 5.325070105755003e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "amp care animals"
  Begin Offset : 159709
  Content : amp care animals
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 5.277275704429485e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "order prints"
  Begin Offset : 171339
  Content : order prints
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 5.272740509099094e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "origin world bubble"
  Begin Offset : 156600
  Content : origin world bubble
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 5.214744305703789e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "website"
  Begin Offset : 163611
  Content : website
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.211648840486305e-06
Sentiment: 

Name: "world bubble"
  Begin Offset : 164188
  Content : world bubble
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 5.211648840486305e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "eye visitlondon website"
  Begin Offset : 170502
  Content : eye visitlondon website
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 5.209422852203716e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "families"
  Begin Offset : 170580
  Content : families
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.172857072466286e-06
Sentiment: 

Name: "friend"
  Begin Offset : 157313
  Content : friend
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 5.092433184472611e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "friends"
  Begin Offset : 166800
  Content : friends
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.08867742610164e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "bench lumierelondon friendship"
  Begin Offset : 166808
  Content : bench  lumierelondon friendship
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.08867742610164e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "flowers"
  Begin Offset : 173072
  Content : flowers
  Magnitude : 0.800000011920929
  Sentiment : -0.800000011920929
  Type : 2
Salience: 5.0865282901213504e-06
Sentiment: magnitude: 0.800000011920929
score: -0.800000011920929


Name: "canonukandie visitlondon aichoketrust southbanklondon"
  Begin Offset : 155043
  Content : canonukandie visitlondon aichoketrust southbanklondon
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
  Begin Offset : 162560
  Content : canonukandie visitlondon aichoketrust southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
  Begin Offset : 162891
  Content : canonukandie visitlondon aichoketrust southbanklondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.045871148467995e-06
Sentiment: magnitude: 0.10000000149011612


Name: "trip"
  Begin Offset : 162065
  Content : trip
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 5.029188741900725e-06
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "trip"
  Begin Offset : 167566
  Content : trip
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 5.027015504310839e-06
Sentiment: magnitude: 0.5
score: 0.20000000298023224


Name: "kings cross lumiere reed_claire"
  Begin Offset : 123548
  Content : kings cross lumiere   reed_claire
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 1
Salience: 5.018726824346231e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey visitlondon lumierelondon lumierelondon soed dslr lumiere london lumiere lumierelondon aichoketrust visitlondon tfltrafficnews"
  Begin Offset : 130840
  Content : visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey  visitlondon lumierelondon  lumierelondon soed dslr lumiere london  lumiere lumierelondon aichoketrust visitlondon  tfltrafficnews
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.0159383135905955e-06
Sentiment: 

Name: "manchester"
  Begin Offset : 137167
  Content : manchester
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 5.013271675124997e-06
Sentiment: 

Name: "philip vaughan"
  Begin Offset : 140288
  Content : philip vaughan
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 1
Salience: 5.0115563681174535e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "lumierelondon southbank chinatown westminsterabbey stjames london lovelondon piccadillyline"
  Begin Offset : 172006
  Content : lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  piccadillyline
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 5.006062565371394e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "weather"
  Begin Offset : 155794
  Content : weather
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.963548235537019e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "movement amp sound"
  Begin Offset : 156738
  Content : movement amp sound
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.963548235537019e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "beacon light darkness riverfront"
  Begin Offset : 156785
  Content : beacon light darkness riverfront
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.963548235537019e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "stuff"
  Begin Offset : 157423
  Content : stuff
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.96269740324351e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "animals"
  Begin Offset : 160140
  Content : animals
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.962057118973462e-06
Sentiment: 

Name: "weather"
  Begin Offset : 161186
  Content : weather
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.962057118973462e-06
Sentiment: 

Name: "animal"
  Begin Offset : 159632
  Content : animal
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.962057118973462e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "ladder"
  Begin Offset : 162191
  Content : ladder
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.961324975738535e-06
Sentiment: 

Name: "whizz"
  Begin Offset : 163301
  Content : whizz
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.961324975738535e-06
Sentiment: 

Name: "justice"
  Begin Offset : 168510
  Content : justice
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.959180841979105e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "tour"
  Begin Offset : 171082
  Content : tour
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.958482804795494e-06
Sentiment: 

Name: "whizz"
  Begin Offset : 171759
  Content : whizz
  Magnitude : 0.699999988079071
  Sentiment : -0.699999988079071
  Type : 2
Salience: 4.957792498316849e-06
Sentiment: magnitude: 0.699999988079071
score: -0.699999988079071


Name: "south bank"
  Begin Offset : 162070
  Content : south bank
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.84653583043837e-06
Sentiment: 

Name: "south bank"
  Begin Offset : 167571
  Content : south bank
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.844441264140187e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "weather"
  Begin Offset : 169962
  Content : weather
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.837818778469227e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "child hood collectif coin"
  Begin Offset : 155660
  Content : child hood collectif coin
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.8271394916810095e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "child hood collectif coin"
  Begin Offset : 160973
  Content : child hood collectif coin
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.825689302379033e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "child hood collectif coin"
  Begin Offset : 168316
  Content : child hood collectif coin
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.82289215142373e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "energy"
  Begin Offset : 172798
  Content : energy
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.821542006538948e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "child hood collectif coin"
  Begin Offset : 173339
  Content : child hood collectif coin
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.820878530154005e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "array"
  Begin Offset : 149892
  Content : array
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.751292635774007e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "glass"
  Begin Offset : 156959
  Content : glass
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.6820186980767176e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "glass"
  Begin Offset : 156208
  Content : glass
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.6820186980767176e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "car bus"
  Begin Offset : 158516
  Content : car bus
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.681311111198738e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "glass"
  Begin Offset : 157665
  Content : glass
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.681311111198738e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "scifi movie"
  Begin Offset : 159152
  Content : scifi movie
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.681311111198738e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "production"
  Begin Offset : 164533
  Content : production
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.67923973701545e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "car bus"
  Begin Offset : 168828
  Content : car bus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.677899596572388e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "car bus"
  Begin Offset : 168651
  Content : car bus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.677899596572388e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "car bus"
  Begin Offset : 169320
  Content : car bus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.677899596572388e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "car bus"
  Begin Offset : 169183
  Content : car bus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.677899596572388e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "car bus"
  Begin Offset : 169570
  Content : car bus
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.677241122408304e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "stories"
  Begin Offset : 171069
  Content : stories
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.677241122408304e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "car bus"
  Begin Offset : 169445
  Content : car bus
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.677241122408304e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "scifi movie"
  Begin Offset : 171643
  Content : scifi movie
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.676589924201835e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "staing"
  Begin Offset : 175108
  Content : staing
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 4.675946456700331e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "installation ganton street"
  Begin Offset : 167443
  Content : installation ganton street
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.635488494386664e-06
Sentiment: 

Name: "lumiere2018 southbank leicestersquare westminsterabbey"
  Begin Offset : 172212
  Content : lumiere2018 southbank leicestersquare westminsterabbey
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 4.6255199777078815e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "names"
  Begin Offset : 157025
  Content : names
  Magnitude : 0.8999999761581421
  Sentiment : 0.8999999761581421
  Type : 2
Salience: 4.526667453319533e-06
Sentiment: magnitude: 0.8999999761581421
score: 0.8999999761581421


Name: "plastic bottles"
  Begin Offset : 156864
  Content : plastic bottles
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.526667453319533e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "church"
  Begin Offset : 168561
  Content : church
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.522684321273118e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "glissando action"
  Begin Offset : 169854
  Content : glissando action
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.522047674981877e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "academy"
  Begin Offset : 171277
  Content : academy
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.52141830464825e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "london lumierelondon londonisopen sadiqkhan"
  Begin Offset : 163379
  Content : london lumierelondon londonisopen sadiqkhan
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 4.431250999914482e-06
Sentiment: 

Name: "spire stop café"
  Begin Offset : 155515
  Content : spire  stop café
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.359760168881621e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "bat"
  Begin Offset : 156296
  Content : bat
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.359093054517871e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bat"
  Begin Offset : 157047
  Content : bat
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.359093054517871e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bum"
  Begin Offset : 158184
  Content : bum
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.358434125606436e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "bat"
  Begin Offset : 157753
  Content : bat
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.358434125606436e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "bat"
  Begin Offset : 157998
  Content : bat
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 4.358434125606436e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "bum"
  Begin Offset : 163911
  Content : bum
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.356505542091327e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "spire stop café"
  Begin Offset : 163714
  Content : spire  stop café
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.356505542091327e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "spire stop café"
  Begin Offset : 164398
  Content : spire  stop café
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.356505542091327e-06
Sentiment: magnitude: 0.4000000059604645


Name: "spire stop café"
  Begin Offset : 163986
  Content : spire  stop café
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.356505542091327e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "wildlife"
  Begin Offset : 166654
  Content : wildlife
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 4.3558779907471035e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "corner"
  Begin Offset : 167477
  Content : corner
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 4.355257715360494e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "images wildlife"
  Begin Offset : 167702
  Content : images wildlife
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.355257715360494e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "creation"
  Begin Offset : 170965
  Content : creation
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
Salience: 4.354644715931499e-06
Sentiment: magnitude: 0.800000011920929
score: 0.800000011920929


Name: "tag"
  Begin Offset : 172873
  Content : tag
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.354038537712768e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "hyde park corner"
  Begin Offset : 172483
  Content : hyde park corner
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 4.354038537712768e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "hyde park corner"
  Begin Offset : 172184
  Content : hyde park corner
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 4.354038537712768e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "corner"
  Begin Offset : 174915
  Content : corner
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.353439180704299e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "corner"
  Begin Offset : 175186
  Content : corner
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.353439180704299e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "rhianbwatts"
  Begin Offset : 156055
  Content : rhianbwatts
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 4.279207587387646e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "pa imakefings"
  Begin Offset : 170730
  Content : pa  imakefings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.248674486007076e-06
Sentiment: 

Name: "well"
  Begin Offset : 155227
  Content : well
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.177242317382479e-06
Sentiment: 

Name: "buses"
  Begin Offset : 168918
  Content : buses
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 4.176522452326026e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "toddy"
  Begin Offset : 158912
  Content : toddy
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 4.175972208031453e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "dials"
  Begin Offset : 161087
  Content : dials
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.175348749413388e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "dials"
  Begin Offset : 160574
  Content : dials
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.175348749413388e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.10000000149011612


Name: "srmlondon"
  Begin Offset : 163277
  Content : srmlondon
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 4.174733021500288e-06
Sentiment: 

Name: "london lumiere srmlondon"
  Begin Offset : 171719
  Content : london lumiere  srmlondon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.171760338067543e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "hands"
  Begin Offset : 171315
  Content : hands
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 4.171760338067543e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "theatre"
  Begin Offset : 173513
  Content : theatre
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 4.171186446910724e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "lumierelondon2018 thelondoneye"
  Begin Offset : 171543
  Content : lumierelondon2018 thelondoneye
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 4.126203748455737e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "frogs"
  Begin Offset : 156414
  Content : frogs
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 4.074966000189306e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "helbron"
  Begin Offset : 156342
  Content : helbron
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.975414529122645e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "installation company"
  Begin Offset : 156695
  Content : installation company
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 3.975414529122645e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "training jobs"
  Begin Offset : 163547
  Content : training jobs
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.973054845118895e-06
Sentiment: 

Name: "tfl update"
  Begin Offset : 168614
  Content : tfl update
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.971916612499626e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "mader wiermann grabber computer"
  Begin Offset : 170901
  Content : mader wiermann grabber computer
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.971357728005387e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "sta"
  Begin Offset : 169909
  Content : sta
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.971357728005387e-06
Sentiment: 

Name: "oxfordstreet bike"
  Begin Offset : 173787
  Content : oxfordstreet bike
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.970258603658294e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "hatmanoflondon"
  Begin Offset : 174544
  Content : hatmanoflondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.970258603658294e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "gloves amp scarf"
  Begin Offset : 158368
  Content : gloves amp scarf
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.92759102396667e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "lumiere lumierelondon lumierelondon2018 mayfair streeta"
  Begin Offset : 159906
  Content : lumiere  lumierelondon lumierelondon2018 mayfair streeta
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 1
Salience: 3.888371793436818e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "que haya luz segunda edición del festival de"
  Begin Offset : 171174
  Content : que haya luz segunda edición del festival de
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.751508074856247e-06
Sentiment: 

Name: "app"
  Begin Offset : 155263
  Content : app
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
Salience: 3.7505049022001913e-06
Sentiment: magnitude: 0.10000000149011612
score: 0.10000000149011612


Name: "thesavoylondon"
  Begin Offset : 164043
  Content : thesavoylondon
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.7477050227607833e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "tflbusales"
  Begin Offset : 169298
  Content : tflbusales
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.746631591639016e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "front page"
  Begin Offset : 173691
  Content : front page
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
Salience: 3.7450672607519664e-06
Sentiment: magnitude: 0.4000000059604645
score: -0.4000000059604645


Name: "background"
  Begin Offset : 175605
  Content : background
  Magnitude : 0.20000000298023224
  Sentiment : 0.20000000298023224
  Type : 2
Salience: 3.744557716345298e-06
Sentiment: magnitude: 0.20000000298023224
score: 0.20000000298023224


Name: "techniciansmakeithappen smitf_london"
  Begin Offset : 163619
  Content : techniciansmakeithappen  smitf_london
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.609101668189396e-06
Sentiment: 

Name: "piccadillycircus wabbey stas"
  Begin Offset : 165740
  Content : piccadillycircus  wabbey  stas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.504961568978615e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "westminster mayfair"
  Begin Offset : 168168
  Content : westminster mayfair
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 1
Salience: 3.504462483761017e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "giant"
  Begin Offset : 160640
  Content : giant
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.490243216219824e-06
Sentiment: 

Name: "light festival gasholders"
  Begin Offset : 162721
  Content : light festival gasholders
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.4897284422186203e-06
Sentiment: 

Name: "bum levanterman"
  Begin Offset : 162523
  Content : bum  levanterman
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.4897284422186203e-06
Sentiment: 

Name: "giant"
  Begin Offset : 161471
  Content : giant
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.4897284422186203e-06
Sentiment: 

Name: "followers"
  Begin Offset : 166403
  Content : followers
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.488717084110249e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "followers"
  Begin Offset : 166278
  Content : followers
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
Salience: 3.488717084110249e-06
Sentiment: magnitude: 0.4000000059604645
score: 0.4000000059604645


Name: "photography lumiere london point"
  Begin Offset : 175296
  Content : photography  lumiere london point
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.486289188003866e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "pic"
  Begin Offset : 176447
  Content : pic
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 3.486289188003866e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "nickede wait"
  Begin Offset : 159009
  Content : nickede wait
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
Salience: 3.4058166420436464e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "shaftesburyplc regentst_assoc thecrownestate"
  Begin Offset : 163118
  Content : shaftesburyplc regentst_assoc thecrownestate
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 3.2445761917188065e-06
Sentiment: 

Name: "seat"
  Begin Offset : 164149
  Content : seat
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.20010440191254e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "culture fitness"
  Begin Offset : 157401
  Content : culture fitness
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 3.183994977007387e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "buzz"
  Begin Offset : 159896
  Content : buzz
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 3.1830384159547975e-06
Sentiment: 

Name: "film exposure"
  Begin Offset : 166578
  Content : film exposure
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.1816466616874095e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "waltz piano"
  Begin Offset : 171295
  Content : waltz piano
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 2
Salience: 3.18030288326554e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "timings"
  Begin Offset : 173673
  Content : timings
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 2
Salience: 3.1798654163139872e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "wld"
  Begin Offset : 173645
  Content : wld
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 3.1798654163139872e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "aichoketrust biggsytravels"
  Begin Offset : 158466
  Content : aichoketrust biggsytravels
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 3.079936277572415e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "badgermoon stopthecull"
  Begin Offset : 176451
  Content : badgermoon stopthecull
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 1
Salience: 3.0038406748644775e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "habitat"
  Begin Offset : 156461
  Content : habitat
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7962501008005347e-06
Sentiment: 

Name: "water fountain"
  Begin Offset : 156436
  Content : water fountain
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7962501008005347e-06
Sentiment: 

Name: "performance wiltonmusichall"
  Begin Offset : 157347
  Content : performance wiltonmusichall
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.7962501008005347e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "night go check visitlondon alifestylerebel"
  Begin Offset : 159372
  Content : night go check visitlondon  alifestylerebel
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.7958274131378857e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "spire hallelujah chorus"
  Begin Offset : 162202
  Content : spire hallelujah chorus
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7949977265961934e-06
Sentiment: 

Name: "drawings"
  Begin Offset : 162772
  Content : drawings
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.7949977265961934e-06
Sentiment: 

Name: "amp sweets sugar"
  Begin Offset : 163470
  Content : amp  sweets sugar
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.794590272969799e-06
Sentiment: 

Name: "polaroidorignls type"
  Begin Offset : 166553
  Content : polaroidorignls type
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.7941878215642646e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "hell"
  Begin Offset : 167877
  Content : hell
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
Salience: 2.793789917632239e-06
Sentiment: magnitude: 0.30000001192092896
score: 0.30000001192092896


Name: "festival lights engineering"
  Begin Offset : 167805
  Content : festival lights engineering
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.793789917632239e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "backdrop coal"
  Begin Offset : 170978
  Content : backdrop coal
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.793396561173722e-06
Sentiment: 

Name: "version"
  Begin Offset : 170943
  Content : version
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.793396561173722e-06
Sentiment: 

Name: "cuties"
  Begin Offset : 176433
  Content : cuties
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.792243321891874e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "brrrrr"
  Begin Offset : 176419
  Content : brrrrr
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
Salience: 2.792243321891874e-06
Sentiment: magnitude: 0.6000000238418579
score: 0.6000000238418579


Name: "lumière london lumierelondon2018 7dialslondon"
  Begin Offset : 160479
  Content : lumière london  lumierelondon2018  7dialslondon
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 1
Salience: 2.6731424895842792e-06
Sentiment: magnitude: 0.699999988079071
score: 0.699999988079071


Name: "aichoketrust lumierelondon2018 visitlondon fuzzworks_uk"
  Begin Offset : 159025
  Content : aichoketrust lumierelondon2018  visitlondon  fuzzworks_uk
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 2.5745684979483485e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "names"
  Begin Offset : 157976
  Content : names
  Magnitude : 0.699999988079071
  Sentiment : 0.699999988079071
  Type : 2
Salience: 2.5367658054165076e-06
Sentiment: magnitude: 1.600000023841858
score: 0.800000011920929


Name: "london lumierelondon ivysohobrass"
  Begin Offset : 174786
  Content : london lumierelondon  ivysohobrass
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 2.533257656978094e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "shapes"
  Begin Offset : 164252
  Content : shapes
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
Salience: 2.440462367303553e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "london lumiere openyoureyesldn"
  Begin Offset : 159228
  Content : london lumiere  openyoureyesldn
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 2.3479592528019566e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "piccadilly stjames jermynstreet loki_lego"
  Begin Offset : 161245
  Content : piccadilly stjames jermynstreet  loki_lego
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.347608642594423e-06
Sentiment: 

Name: "igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon"
  Begin Offset : 174133
  Content : igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 2.345268285353086e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


Name: "ideas"
  Begin Offset : 4134
  Content : ideas
  Magnitude : 0.800000011920929
  Sentiment : 0.800000011920929
  Type : 2
  Begin Offset : 16333
  Content : ideas
  Magnitude : 0.4000000059604645
  Sentiment : 0.4000000059604645
  Type : 2
  Begin Offset : 22836
  Content : ideas
  Magnitude : 0.30000001192092896
  Sentiment : 0.30000001192092896
  Type : 2
  Begin Offset : 27424
  Content : ideas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 31998
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 33468
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 33610
  Content : ideas
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 2
  Begin Offset : 35973
  Content : ideas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 44415
  Content : ideas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 44820
  Content : ideas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 47016
  Content : ideas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 47425
  Content : ideas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 48698
  Content : ideas
  Magnitude : 0.6000000238418579
  Sentiment : 0.6000000238418579
  Type : 2
  Begin Offset : 63920
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 69553
  Content : ideas
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 2
  Begin Offset : 70276
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 73450
  Content : ideas
  Magnitude : 0.4000000059604645
  Sentiment : -0.4000000059604645
  Type : 2
  Begin Offset : 92171
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 94100
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 94300
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 96197
  Content : ideas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 96497
  Content : ideas
  Magnitude : 0.10000000149011612
  Sentiment : 0.10000000149011612
  Type : 2
  Begin Offset : 96749
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
  Begin Offset : 97651
  Content : ideas
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.206231101808953e-06
Sentiment: magnitude: 6.5
score: 0.10000000149011612


Name: "copper pic"
  Begin Offset : 160051
  Content : copper pic
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 2
Salience: 2.1855937575310236e-06
Sentiment: 

Name: "lumierelondon photograghy lizziemidd"
  Begin Offset : 155147
  Content : lumierelondon  photograghy  lizziemidd
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 2.0626530385925435e-06
Sentiment: 

Name: "newcastle"
  Begin Offset : 166288
  Content : newcastle
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 2.060816314042313e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon lumierelondon2018 visitlondon ontheroadtoyou"
  Begin Offset : 159265
  Content : lumierelondon lumierelondon2018  visitlondon  ontheroadtoyou
  Magnitude : 0.10000000149011612
  Sentiment : -0.10000000149011612
  Type : 1
Salience: 1.9383360267966054e-06
Sentiment: magnitude: 0.10000000149011612
score: -0.10000000149011612


Name: "danish"
  Begin Offset : 156688
  Content : danish
  Magnitude : 0.0
  Sentiment : 0.0
  Type : 1
Salience: 1.8808135564540862e-06
Sentiment: 

Name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_"
  Begin Offset : 173926
  Content : westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.8783741779770935e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "thejanuarychallenge 64millionaists"
  Begin Offset : 164306
  Content : thejanuarychallenge 64millionaists
  Magnitude : 0.20000000298023224
  Sentiment : -0.20000000298023224
  Type : 1
Salience: 1.6507881355209975e-06
Sentiment: magnitude: 0.20000000298023224
score: -0.20000000298023224


Name: "newcastle fontwell crz_mankai8 awesmoeb adithatsme"
  Begin Offset : 166413
  Content : newcastle  fontwell crz_mankai8 awesmoeb  adithatsme
  Magnitude : 0.5
  Sentiment : 0.5
  Type : 1
Salience: 1.6505504163433216e-06
Sentiment: magnitude: 0.5
score: 0.5


Name: "lumierelondon lumierelondon2018 lumiere airheadhell"
  Begin Offset : 173080
  Content : lumierelondon lumierelondon2018  lumiere  airheadhell
  Magnitude : 0.30000001192092896
  Sentiment : -0.30000001192092896
  Type : 1
Salience: 1.6498534023412503e-06
Sentiment: magnitude: 0.30000001192092896
score: -0.30000001192092896


In [113]:
print(entities_sentiment)
entities {
  name: "project"
  type: OTHER
  salience: 0.3702075183391571
  mentions {
    text {
      content: "project"
      begin_offset: 4185
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 16384
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 22887
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 27475
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 32049
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 33519
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 33661
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 36024
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 44466
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 44871
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 47067
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 47476
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 48749
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 63971
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 69604
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 70327
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 73501
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 92222
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 94151
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 94351
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 96248
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 96548
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 96800
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "project"
      begin_offset: 97702
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 5.199999809265137
    score: 0.10000000149011612
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.37012481689453125
  mentions {
    text {
      content: "display"
      begin_offset: 10857
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 28269
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 37501
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 37887
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 40740
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 44312
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 49149
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 50701
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 51271
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 51347
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 52180
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 52527
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "display"
      begin_offset: 54284
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.699999988079071
  }
}
entities {
  name: "awork entre les rangs _kanva behindthescenes grosvenor_gbi mayfair london"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/04jpl"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/London"
  }
  salience: 0.024993306025862694
  mentions {
    text {
      content: "london"
      begin_offset: 749
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 2182
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 3492
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 4862
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 4936
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "awork entre les rangs _kanva behindthescenes  grosvenor_gbi mayfair london"
      begin_offset: 5467
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 5615
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 5869
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 7066
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 7146
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 7676
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 7756
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 9025
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 10560
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 11529
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 11680
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 12531
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 15148
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 17014
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 17198
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 17440
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 17886
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 18034
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 18182
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 18434
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 18525
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 18708
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 19098
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 19592
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 19327
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 20907
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 21053
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 21178
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 21569
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 22080
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 22283
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 22548
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 24791
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 25647
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 25694
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 26635
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 27093
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 27965
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 28971
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 30145
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 30406
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 30571
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 31566
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 33837
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 35553
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 36474
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 41324
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 42198
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 42452
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 43439
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 44117
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 44015
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 44680
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 45548
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 45710
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 46386
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 47725
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 49218
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 50267
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 51082
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 50993
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 51448
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 51643
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 53119
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 56122
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 57142
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 57971
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 58702
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 58683
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 62372
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 63287
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 63410
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 64180
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65057
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65420
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65697
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65740
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65957
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 65922
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 66213
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 66327
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 67002
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 67384
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 69821
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 69705
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 73276
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 75654
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 76221
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 76585
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 77733
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 78093
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 78032
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 79221
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 79431
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 80090
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 80139
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 81390
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 81367
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 82923
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 85633
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "waterlicht daan roosegaarde london"
      begin_offset: 85751
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 85956
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 85999
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 87933
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 88288
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 88494
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 91097
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 92350
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 95174
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 95362
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 95813
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 96889
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 97251
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 98748
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 100004
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 100185
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 100638
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 100929
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 100984
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 101395
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 101571
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 102274
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 102467
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 104690
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 105224
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 107714
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 110059
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 110386
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 110541
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 111539
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 112322
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 112695
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 114990
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 117466
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 117747
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 118031
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 118483
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 118853
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 119136
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 120113
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 121082
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 122014
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 123143
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 123920
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 124300
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 124564
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 124852
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 125014
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 126228
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 127689
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 127674
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 127965
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 128847
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 130417
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 130456
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 130605
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 130813
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 131592
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 132003
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 132217
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 132451
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 132725
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 132934
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 133426
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 133732
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 137184
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 138991
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 139945
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 140385
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 141202
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 141891
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 142068
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 142156
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 143510
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 144734
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 145019
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 146916
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 146808
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 147929
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 148820
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 149690
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 150492
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 151227
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 151294
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 151506
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 151934
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 152487
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 153250
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 153707
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 154179
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 154698
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 155312
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 155994
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 158948
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 159478
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 160448
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "lumi\303\250re london"
      begin_offset: 160381
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 160257
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 160216
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 160758
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 161720
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 162144
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 162647
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 163054
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 164087
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 164569
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 164709
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 165236
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 165533
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 165572
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 166362
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 166882
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 166785
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 166756
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167116
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167069
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167155
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167346
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167301
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167669
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167798
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 168020
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 168076
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 168132
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 168379
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 168607
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 169117
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 169768
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 170135
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 170187
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 170321
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 170378
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 170873
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 171135
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 171050
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 172333
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 172721
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 172951
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 172990
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 173573
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 173852
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 173889
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 174258
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 174994
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 175543
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 175703
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 176544
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 10538
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "lumiere2018 oxfordstreet travel londonlife hireme lookingforajob londonphotographer  simon_burgess lumiere london"
      begin_offset: 34471
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 89.5
    score: 0.20000000298023224
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 0.009003369137644768
  mentions {
    text {
      content: "aists"
      begin_offset: 10450
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 45158
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 48981
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 49057
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 51229
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 51305
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 52214
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 52561
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 52637
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53491
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53567
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53643
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53719
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53795
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53871
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53947
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54023
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54099
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54175
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54318
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54394
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54470
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54546
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54622
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54698
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54774
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54850
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 54926
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 11.399999618530273
    score: 0.30000001192092896
  }
}
entities {
  name: "leicester square"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0n7zx"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Leicester_Square"
  }
  salience: 0.007908349856734276
  mentions {
    text {
      content: "leicester square"
      begin_offset: 943
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 12547
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 73592
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 77368
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 80540
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 80638
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 80616
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 84478
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 84898
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 86522
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 86500
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 86911
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "china town london  marshalljulius london"
      begin_offset: 86870
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 87217
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 87415
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 89450
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 89419
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 89665
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 90874
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 90797
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 91529
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 106281
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 106274
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 107422
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 112702
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 118490
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 124172
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 127165
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 129682
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester"
      begin_offset: 133298
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 134685
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 138321
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 142710
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 142688
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 142891
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 143113
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 143091
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 143970
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 143948
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 145026
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 145124
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 145102
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 145452
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 145729
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 146057
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 146035
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 146155
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 146133
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 148604
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 160087
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 161862
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 164576
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 165579
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 167162
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 167294
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 172997
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 174757
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 175423
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "london"
      begin_offset: 175416
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 175847
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "leicester square"
      begin_offset: 176213
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 20.5
    score: -0.10000000149011612
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.0022680754773318768
  mentions {
    text {
      content: "festival"
      begin_offset: 33184
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival"
      begin_offset: 55181
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival"
      begin_offset: 118015
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival"
      begin_offset: 154162
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival"
      begin_offset: 159462
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.0018272475572302938
  mentions {
    text {
      content: "work"
      begin_offset: 10883
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 37527
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 37913
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 40766
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 45150
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 48973
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 49049
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 50372
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 50727
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 51221
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 51297
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 52206
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 52282
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 52553
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 52629
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53483
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53559
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53635
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53711
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53787
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53863
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 53939
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54015
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54091
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54167
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54310
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54386
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54462
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54538
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54614
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54690
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54766
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54842
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54918
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 54988
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.0017155271489173174
  mentions {
    text {
      content: "light installations"
      begin_offset: 5587
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 7118
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 7728
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 35525
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 44652
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 4.800000190734863
    score: 0.8999999761581421
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 0.0015754628693684936
  mentions {
    text {
      content: "dreams"
      begin_offset: 47341
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 57323
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 78222
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 81907
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 150279
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 3.4000000953674316
    score: 0.6000000238418579
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.001548128784634173
  mentions {
    text {
      content: "lights"
      begin_offset: 21621
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 50430
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 58066
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 122748
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 133116
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations amp"
  type: OTHER
  salience: 0.001483282190747559
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 15391
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 28871
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 29213
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 40612
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 91448
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 128467
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 2.9000000953674316
    score: 0.699999988079071
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0014494014903903008
  mentions {
    text {
      content: "installations"
      begin_offset: 14195
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 59568
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 60337
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 61182
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.30000001192092896
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.00141461833845824
  mentions {
    text {
      content: "work"
      begin_offset: 40330
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 48465
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 56893
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 97366
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 124510
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 139747
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 142584
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 159174
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 171665
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 6.400000095367432
    score: 0.699999988079071
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 0.0013763554161414504
  mentions {
    text {
      content: "amp"
      begin_offset: 7002
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 13398
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 13587
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 25053
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 26127
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0013611754402518272
  mentions {
    text {
      content: "installations"
      begin_offset: 16550
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 23053
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 75433
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 75589
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 2.799999952316284
    score: 0.699999988079071
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0011756190797314048
  mentions {
    text {
      content: "installations"
      begin_offset: 46490
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 53191
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 96931
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 129324
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "bridge london"
  type: LOCATION
  salience: 0.0011265557259321213
  mentions {
    text {
      content: "bridge london"
      begin_offset: 13548
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "bridge london"
      begin_offset: 25014
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "bridge london"
      begin_offset: 26088
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.10000000149011612
  }
}
entities {
  name: "aichoketrust biggsytravels newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium"
  type: PERSON
  salience: 0.0010874784784391522
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 12
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "mondaymotivation ginoclock  ginuary  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  weekendaswa"
      begin_offset: 38840
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "wabbey westminsterabbey  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 41120
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243"
      begin_offset: 51479
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "westminsterabbey  lumierelondon joinin247  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251"
      begin_offset: 70941
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "aichoketrust biggsytravels  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 74565
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "\343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 76290
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 85233
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 88638
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "waterlicht  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272"
      begin_offset: 90012
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 94379
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 3.700000047683716
    score: 0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0010838861344382167
  mentions {
    text {
      content: "installations"
      begin_offset: 143031
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 143583
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 145974
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 147067
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 147363
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 148181
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.5
    score: -0.20000000298023224
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.0010816248832270503
  mentions {
    text {
      content: "event"
      begin_offset: 4753
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 10677
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 24008
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 26822
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: 0.5
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0010199201060459018
  mentions {
    text {
      content: "installations"
      begin_offset: 64928
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 134215
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 136682
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 137639
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 138017
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 3.5
    score: 0.699999988079071
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 0.0009826116729527712
  mentions {
    text {
      content: "city"
      begin_offset: 5652
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 7183
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 7793
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 44717
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.20000000298023224
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.0009651865693740547
  mentions {
    text {
      content: "work"
      begin_offset: 9215
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 41811
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 42626
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "work"
      begin_offset: 43570
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "beasts"
  type: OTHER
  salience: 0.0009520838502794504
  mentions {
    text {
      content: "beasts"
      begin_offset: 73637
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: -0.8999999761581421
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 75814
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 77413
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 80585
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 80683
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 84943
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 86567
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 86956
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 106326
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 112747
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 118535
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 127210
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 142755
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 142936
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 143158
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 144015
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 145071
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 145169
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 145497
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 145774
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 146102
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 146200
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 148649
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 157866
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 164621
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 165624
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 167207
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 173042
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  mentions {
    text {
      content: "beasts"
      begin_offset: 175468
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  sentiment {
    magnitude: 22.700000762939453
    score: -0.699999988079071
  }
}
entities {
  name: "aichoketrust mayoroflondon visitlondon"
  type: OTHER
  salience: 0.0009227250120602548
  mentions {
    text {
      content: "aichoketrust mayoroflondon visitlondon"
      begin_offset: 842
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "wonderland"
      begin_offset: 831
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "show"
  type: WORK_OF_ART
  salience: 0.00087244767928496
  mentions {
    text {
      content: "show"
      begin_offset: 15526
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "show"
      begin_offset: 45023
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "show"
      begin_offset: 47257
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "show"
      begin_offset: 69981
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "show"
      begin_offset: 95603
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "show"
      begin_offset: 158271
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 2.5999999046325684
    score: 0.4000000059604645
  }
}
entities {
  name: "telephone box library"
  type: OTHER
  salience: 0.0008327019168063998
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 11203
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 66780
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 67844
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 79326
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 135708
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 136087
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 136997
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 140127
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 141809
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "telephone box library"
      begin_offset: 166987
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.000814691768027842
  mentions {
    text {
      content: "installation"
      begin_offset: 59059
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "installation"
      begin_offset: 100819
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "installation"
      begin_offset: 132073
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 3.5999999046325684
    score: 0.699999988079071
  }
}
entities {
  name: "professionalphotographer london lumierelondon lumiere westminsterabbey westminster"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0f485"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/City_of_Westminster"
  }
  salience: 0.0007875790470279753
  mentions {
    text {
      content: "westminster"
      begin_offset: 4691
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "professionalphotographer london lumierelondon lumiere westminsterabbey westminster"
      begin_offset: 7271
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 10615
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 11029
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 21911
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 23946
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 26760
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 26866
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 32398
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 42861
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 49456
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 50578
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 55052
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 56606
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 60923
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 80727
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 129084
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 135899
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 145897
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "south bank amp"
      begin_offset: 145882
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 158082
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 161359
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 162421
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 163809
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 165059
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 167912
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 172306
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 172615
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 96999
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster"
      begin_offset: 144413
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.20000000298023224
  }
}
entities {
  name: "lumiere"
  type: OTHER
  salience: 0.0007807473302818835
  mentions {
    text {
      content: "lumiere"
      begin_offset: 82484
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumiere"
      begin_offset: 84663
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.10000000149011612
  }
}
entities {
  name: "lightinstallation awork london"
  type: LOCATION
  salience: 0.0007585528073832393
  mentions {
    text {
      content: "london"
      begin_offset: 21525
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lightinstallation awork london"
      begin_offset: 24570
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.0007452575373463333
  mentions {
    text {
      content: "event"
      begin_offset: 11091
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 21973
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 32460
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.30000001192092896
  }
}
entities {
  name: "lumiere installations"
  type: OTHER
  salience: 0.0006768921157345176
  mentions {
    text {
      content: "lumiere installations"
      begin_offset: 20082
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "lumiere installations"
      begin_offset: 23108
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.800000011920929
  }
}
entities {
  name: "instagram"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/0glpjll"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Instagram"
  }
  salience: 0.000675997871439904
  mentions {
    text {
      content: "instagram"
      begin_offset: 10480
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 15677
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 43338
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "interview harry qedproductions"
      begin_offset: 43254
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 44251
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 79571
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 104649
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 117419
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 118321
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 126912
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "instagram"
      begin_offset: 128044
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 3.5999999046325684
    score: 0.20000000298023224
  }
}
entities {
  name: "entrance leakestreet"
  type: PERSON
  salience: 0.0006751035689376295
  mentions {
    text {
      content: "entrance leakestreet"
      begin_offset: 1684
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "entrance leakestreet"
      begin_offset: 24424
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "entrance leakestreet"
      begin_offset: 30327
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "lamps office"
  type: OTHER
  salience: 0.0006670279544778168
  mentions {
    text {
      content: "lamps office"
      begin_offset: 25184
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "lamps office"
      begin_offset: 32950
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lamps office"
      begin_offset: 33979
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "lamps office"
      begin_offset: 36521
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "lamps office"
      begin_offset: 36629
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.30000001192092896
  }
}
entities {
  name: "visitor experiences"
  type: OTHER
  salience: 0.0006649464485235512
  mentions {
    text {
      content: "visitor experiences"
      begin_offset: 4457
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "visitor experiences"
      begin_offset: 43810
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "visitor experiences"
      begin_offset: 45233
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "visitor experiences"
      begin_offset: 55761
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: 0.699999988079071
  }
}
entities {
  name: "wave"
  type: OTHER
  salience: 0.0006254544132389128
  mentions {
    text {
      content: "wave"
      begin_offset: 47634
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 56410
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 56522
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 60537
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 61549
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 61661
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "wave"
      begin_offset: 61831
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.0005908877355977893
  mentions {
    text {
      content: "photos"
      begin_offset: 12805
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "photos"
      begin_offset: 15346
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.6000000238418579
  }
}
entities {
  name: "oxford"
  type: LOCATION
  salience: 0.0005731345154345036
  mentions {
    text {
      content: "oxford"
      begin_offset: 2189
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 6094
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 47883
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 64474
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 68321
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 85073
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 86302
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 86485
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 87465
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 93651
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 99841
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 102792
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 107878
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 108581
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 114122
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 115911
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 127712
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 138224
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 146555
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 151822
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford"
      begin_offset: 152969
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
  }
}
entities {
  name: "trafalgar square"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0gsxw"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Trafalgar_Square"
  }
  salience: 0.0005729453987441957
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 22486
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 24617
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "trafalgarsquare"
      begin_offset: 24601
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 44899
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 74032
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 83258
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 113896
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 121690
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 123746
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 128796
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 128736
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 129265
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 131144
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 133877
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 134009
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 134354
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 135250
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 136204
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 138926
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 146669
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 150414
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 154001
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 164823
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "trafalgar square"
      begin_offset: 175921
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 9.899999618530273
    score: 0.30000001192092896
  }
}
entities {
  name: "front"
  type: OTHER
  salience: 0.0005305141094140708
  mentions {
    text {
      content: "front"
      begin_offset: 1324
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "front"
      begin_offset: 2103
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "front"
      begin_offset: 3185
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 0.0005229630623944104
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 39133
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.30000001192092896
  }
}
entities {
  name: "city hall projection"
  type: OTHER
  salience: 0.0005012310575693846
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 21923
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 23958
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 26772
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 32410
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.4000000059604645
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.0004955618642270565
  mentions {
    text {
      content: "people"
      begin_offset: 4014
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 15914
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 81310
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 95900
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 103232
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 104588
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 105446
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 105975
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
  }
}
entities {
  name: "spire"
  type: OTHER
  salience: 0.000494323787279427
  mentions {
    text {
      content: "spire"
      begin_offset: 9363
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "spire"
      begin_offset: 14401
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "spire"
      begin_offset: 14336
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.30000001192092896
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 0.0004884327645413578
  mentions {
    text {
      content: "chance"
      begin_offset: 10390
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 52501
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 0.00048713726573623717
  mentions {
    text {
      content: "crowds"
      begin_offset: 33355
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "crowds"
      begin_offset: 70163
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "crowds"
      begin_offset: 90569
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "crowds"
      begin_offset: 102315
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "waterlicht daan roosegaarde love md lumierelondon totastemaker kingscross lumiere simon_burgess lumiere london"
  type: LOCATION
  salience: 0.00048496946692466736
  mentions {
    text {
      content: "london"
      begin_offset: 33257
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "waterlicht daan roosegaarde love md  lumierelondon totastemaker kingscross lumiere  simon_burgess lumiere london"
      begin_offset: 34782
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "shots"
  type: WORK_OF_ART
  salience: 0.0004742695309687406
  mentions {
    text {
      content: "shots"
      begin_offset: 45082
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "shots"
      begin_offset: 47316
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "shots"
      begin_offset: 70040
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "shots"
      begin_offset: 95662
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "shots"
      begin_offset: 158330
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 3.700000047683716
    score: 0.8999999761581421
  }
}
entities {
  name: "londoners"
  type: PERSON
  salience: 0.000467038742499426
  mentions {
    text {
      content: "londoners"
      begin_offset: 63119
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "londoners"
      begin_offset: 85535
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 0.00045367778511717916
  mentions {
    text {
      content: "chance"
      begin_offset: 12157
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 13746
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.7999999523162842
    score: 0.8999999761581421
  }
}
entities {
  name: "selection favourite installations"
  type: OTHER
  salience: 0.0004506278783082962
  mentions {
    text {
      content: "selection favourite installations"
      begin_offset: 477
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 0.00042768538696691394
  mentions {
    text {
      content: "folks"
      begin_offset: 56462
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "folks"
      begin_offset: 61601
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "folks"
      begin_offset: 61713
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00042374173062853515
  mentions {
    text {
      content: "installations"
      begin_offset: 192
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00042374173062853515
  mentions {
    text {
      content: "installation"
      begin_offset: 223
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 0.0004158902447670698
  mentions {
    text {
      content: "aists"
      begin_offset: 46542
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "aists"
      begin_offset: 53243
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.0004134414193686098
  mentions {
    text {
      content: "installation"
      begin_offset: 1546
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visit exhibitions"
  type: PERSON
  salience: 0.0004109161382075399
  mentions {
    text {
      content: "visit exhibitions"
      begin_offset: 678
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "king cross granary square"
  type: LOCATION
  salience: 0.0004030588024761528
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 81278
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 95868
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 103200
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 104556
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 105278
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 105943
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 0.00038827621028758585
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 114961
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 137451
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "abuse"
  type: OTHER
  salience: 0.0003877361596096307
  mentions {
    text {
      content: "abuse"
      begin_offset: 6996
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "abuse"
      begin_offset: 13392
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "abuse"
      begin_offset: 13581
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "abuse"
      begin_offset: 25047
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "abuse"
      begin_offset: 26121
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00038148576277308166
  mentions {
    text {
      content: "festival"
      begin_offset: 1211
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cities"
  type: LOCATION
  salience: 0.00037768681067973375
  mentions {
    text {
      content: "cities"
      begin_offset: 1245
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "cities"
      begin_offset: 10235
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.20000000298023224
  }
}
entities {
  name: "violence"
  type: OTHER
  salience: 0.00037728543975390494
  mentions {
    text {
      content: "violence"
      begin_offset: 7013
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "violence"
      begin_offset: 13598
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "violence"
      begin_offset: 25064
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "violence"
      begin_offset: 26138
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: -0.20000000298023224
  }
}
entities {
  name: "students"
  type: PERSON
  salience: 0.00036642790655605495
  mentions {
    text {
      content: "students"
      begin_offset: 4541
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "students"
      begin_offset: 29418
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "students"
      begin_offset: 55845
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.30000001192092896
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00036230075056664646
  mentions {
    text {
      content: "lights"
      begin_offset: 48063
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 50785
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 60704
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 2.200000047683716
    score: 0.5
  }
}
entities {
  name: "chinatown london"
  type: LOCATION
  salience: 0.0003551542467903346
  mentions {
    text {
      content: "chinatown london"
      begin_offset: 88391
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "chinatown london"
      begin_offset: 104235
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "chinatown london"
      begin_offset: 149487
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.699999988079071
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 0.00035366317024454474
  mentions {
    text {
      content: "south bank"
      begin_offset: 15472
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "winter light festival"
  type: EVENT
  salience: 0.00035132377524860203
  mentions {
    text {
      content: "winter light festival"
      begin_offset: 3313
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00034972213325090706
  mentions {
    text {
      content: "display"
      begin_offset: 10416
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.0003456326376181096
  mentions {
    text {
      content: "lights"
      begin_offset: 23384
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "decorations"
  type: OTHER
  salience: 0.0003317332302685827
  mentions {
    text {
      content: "decorations"
      begin_offset: 1658
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "decorations"
      begin_offset: 24398
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon"
  type: EVENT
  salience: 0.00032299087615683675
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 26969
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 0.0003225700929760933
  mentions {
    text {
      content: "team"
      begin_offset: 24326
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "team"
      begin_offset: 29112
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.5
  }
}
entities {
  name: "biuk"
  type: OTHER
  salience: 0.00031899905297905207
  mentions {
    text {
      content: "biuk"
      begin_offset: 9154
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00031559151830151677
  mentions {
    text {
      content: "installations"
      begin_offset: 12638
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "king cross"
  type: OTHER
  salience: 0.0003148938121739775
  mentions {
    text {
      content: "king cross"
      begin_offset: 1826
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.0003148034738842398
  mentions {
    text {
      content: "light installations"
      begin_offset: 126266
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 139301
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 151544
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 153288
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 155350
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 156032
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 158986
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 3.799999952316284
    score: 0.4000000059604645
  }
}
entities {
  name: "kingscross woh"
  type: OTHER
  salience: 0.0003145617665722966
  mentions {
    text {
      content: "kingscross woh"
      begin_offset: 52749
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "kingscross woh"
      begin_offset: 62834
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "kingscross woh"
      begin_offset: 92446
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "ilovephotography photoatn"
  type: WORK_OF_ART
  salience: 0.0003126648662146181
  mentions {
    text {
      content: "ilovephotography photoatn"
      begin_offset: 14657
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "photography"
      begin_offset: 14645
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "display visitlondon"
  type: PERSON
  salience: 0.0003081517934333533
  mentions {
    text {
      content: "display  visitlondon"
      begin_offset: 7601
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 0.0003080577589571476
  mentions {
    text {
      content: "works"
      begin_offset: 65407
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "works"
      begin_offset: 92337
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "works"
      begin_offset: 96876
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "works"
      begin_offset: 102261
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 0.0002996555995196104
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 24331
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 39487
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 53029
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "favourites"
  type: PERSON
  salience: 0.0002928028698079288
  mentions {
    text {
      content: "favourites"
      begin_offset: 206
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "westminster abbey"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/g/1tdy3yzm"
  }
  salience: 0.0002900139079429209
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 3812
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 4788
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 4870
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 8901
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 16929
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 17682
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 17970
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 20109
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 23135
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 31656
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 36324
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 56048
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 65130
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 66143
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 67472
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 67945
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 68469
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 78185
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 81716
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 82676
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 82966
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 83428
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 84548
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 88847
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 100167
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 100312
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 102675
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 107486
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 112200
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 114884
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 115024
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 118578
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 120083
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 121508
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 123582
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 125300
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 125397
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 137374
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 144660
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 147773
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 148498
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 153065
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 154105
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 159997
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 162276
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 166499
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 170359
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 175028
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster abbey"
      begin_offset: 175350
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 18.100000381469727
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0002890642499551177
  mentions {
    text {
      content: "installations"
      begin_offset: 15227
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.0002862843975890428
  mentions {
    text {
      content: "lights"
      begin_offset: 10973
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "things"
  type: OTHER
  salience: 0.0002822526730597019
  mentions {
    text {
      content: "things"
      begin_offset: 40263
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 48398
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 56826
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 97299
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 124443
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 139680
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 142517
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 159107
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "things"
      begin_offset: 171598
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 6.099999904632568
    score: 0.699999988079071
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 0.00027992416289635
  mentions {
    text {
      content: "others"
      begin_offset: 5162
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "others"
      begin_offset: 6902
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.4000000059604645
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 0.000277019920758903
  mentions {
    text {
      content: "others"
      begin_offset: 13487
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "others"
      begin_offset: 16020
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 0.00027491713990457356
  mentions {
    text {
      content: "others"
      begin_offset: 26027
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "others"
      begin_offset: 30739
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.000270027230726555
  mentions {
    text {
      content: "event"
      begin_offset: 12055
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "southbank amp"
  type: PERSON
  salience: 0.00026939023518934846
  mentions {
    text {
      content: "southbank amp"
      begin_offset: 138170
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "southbank amp"
      begin_offset: 146501
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "southbank amp"
      begin_offset: 151768
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "southbank amp"
      begin_offset: 152915
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 2.0
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00026774880825541914
  mentions {
    text {
      content: "installations"
      begin_offset: 18744
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.0002674050338100642
  mentions {
    text {
      content: "photos"
      begin_offset: 1379
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0002668855304364115
  mentions {
    text {
      content: "installations"
      begin_offset: 25673
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival thegl0betrotter patrice warrener"
  type: PERSON
  salience: 0.000263947993516922
  mentions {
    text {
      content: "patrice"
      begin_offset: 6167
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 8580
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 11413
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 13081
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 19151
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 56031
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 65157
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 66126
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 68681
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 68855
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 69094
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 75888
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 76062
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 78804
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 81004
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 81972
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 83544
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 83699
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 97774
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  thegl0betrotter patrice warrener"
      begin_offset: 144837
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 148409
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 150565
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "lumierelondon  thegl0betrotter patrice warrener"
      begin_offset: 152279
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "patrice warrener"
      begin_offset: 154330
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 165801
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "patrice"
      begin_offset: 176063
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 8.600000381469727
    score: 0.20000000298023224
  }
}
entities {
  name: "producer director cameraman promo coaching music video london"
  type: PERSON
  salience: 0.0002630717644933611
  mentions {
    text {
      content: "producer director cameraman promo coaching music video london"
      begin_offset: 2669
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation london"
  type: OTHER
  salience: 0.0002630717644933611
  mentions {
    text {
      content: "installation london"
      begin_offset: 2996
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bridge london"
  type: LOCATION
  salience: 0.00026083673583343625
  mentions {
    text {
      content: "bridge london"
      begin_offset: 6963
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "leicestersquare london"
  type: OTHER
  salience: 0.0002595381229184568
  mentions {
    text {
      content: "leicestersquare london"
      begin_offset: 10934
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bridge london"
  type: LOCATION
  salience: 0.0002590461226645857
  mentions {
    text {
      content: "bridge london"
      begin_offset: 13359
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "king cross london"
  type: LOCATION
  salience: 0.00025824597105383873
  mentions {
    text {
      content: "king cross london"
      begin_offset: 16457
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "red telephone box london londonlife"
  type: ORGANIZATION
  salience: 0.00025760885910131037
  mentions {
    text {
      content: "red telephone box london londonlife"
      begin_offset: 21744
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "king cross london"
  type: LOCATION
  salience: 0.0002573331003077328
  mentions {
    text {
      content: "king cross london"
      begin_offset: 22960
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.0002568979689385742
  mentions {
    text {
      content: "photos"
      begin_offset: 28826
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "photos"
      begin_offset: 91403
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 0.00025684526190161705
  mentions {
    text {
      content: "london"
      begin_offset: 27560
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "hit londoners"
  type: PERSON
  salience: 0.0002566272160038352
  mentions {
    text {
      content: "hit londoners"
      begin_offset: 30868
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "hit londoners"
  type: PERSON
  salience: 0.0002566272160038352
  mentions {
    text {
      content: "hit londoners"
      begin_offset: 29461
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 0.0002556164690759033
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 108938
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 113128
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00025097717298194766
  mentions {
    text {
      content: "lights"
      begin_offset: 23765
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.0002447072183713317
  mentions {
    text {
      content: "lights"
      begin_offset: 109550
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 111882
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lights"
      begin_offset: 113109
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
    score: 0.5
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 0.00024178823514375836
  mentions {
    text {
      content: "city"
      begin_offset: 56228
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 66063
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
    score: 0.800000011920929
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00023335780133493245
  mentions {
    text {
      content: "festival lights"
      begin_offset: 20914
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.00023222460004035383
  mentions {
    text {
      content: "people"
      begin_offset: 369
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "survivors"
  type: PERSON
  salience: 0.00023013795726001263
  mentions {
    text {
      content: "survivors"
      begin_offset: 7033
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "survivors"
      begin_offset: 25084
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "survivors"
      begin_offset: 26158
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00022831327805761248
  mentions {
    text {
      content: "festival"
      begin_offset: 45396
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival"
      begin_offset: 53368
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 0.0002279058244312182
  mentions {
    text {
      content: "city"
      begin_offset: 46519
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 53220
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "neon lumiere"
  type: OTHER
  salience: 0.00022768074995838106
  mentions {
    text {
      content: "neon lumiere"
      begin_offset: 14519
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "archdeaconluke lumierefestival"
  type: PERSON
  salience: 0.00022768074995838106
  mentions {
    text {
      content: "archdeaconluke lumierefestival"
      begin_offset: 14356
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "archdeaconluke lumierefestival"
  type: PERSON
  salience: 0.00022768074995838106
  mentions {
    text {
      content: "archdeaconluke lumierefestival"
      begin_offset: 14291
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.00022751485812477767
  mentions {
    text {
      content: "event"
      begin_offset: 29044
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "checking lights"
  type: OTHER
  salience: 0.00022685642761643976
  mentions {
    text {
      content: "checking lights"
      begin_offset: 2902
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00022685642761643976
  mentions {
    text {
      content: "light"
      begin_offset: 3676
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon"
  type: OTHER
  salience: 0.0002267899108119309
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 21163
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 0.0002265471121063456
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 23673
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 0.00022611761232838035
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 27013
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thank"
  type: OTHER
  salience: 0.00022584639373235404
  mentions {
    text {
      content: "thank"
      begin_offset: 780
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival light"
  type: OTHER
  salience: 0.00022572690795641392
  mentions {
    text {
      content: "festival light"
      begin_offset: 5677
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00022572690795641392
  mentions {
    text {
      content: "light"
      begin_offset: 5075
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "photography night light"
  type: OTHER
  salience: 0.00022492889547720551
  mentions {
    text {
      content: "photography night light"
      begin_offset: 6444
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival light"
  type: OTHER
  salience: 0.00022492889547720551
  mentions {
    text {
      content: "festival light"
      begin_offset: 7208
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dream"
  type: OTHER
  salience: 0.00022403139155358076
  mentions {
    text {
      content: "dream"
      begin_offset: 52933
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "dream"
      begin_offset: 69326
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00022380895097739995
  mentions {
    text {
      content: "festival lights"
      begin_offset: 11536
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00022380895097739995
  mentions {
    text {
      content: "festival lights"
      begin_offset: 11687
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "city bbclondonnews festival light"
  type: LOCATION
  salience: 0.000223384631681256
  mentions {
    text {
      content: "city   bbclondonnews festival light"
      begin_offset: 12659
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp light"
  type: OTHER
  salience: 0.00022301771969068795
  mentions {
    text {
      content: "amp light"
      begin_offset: 14264
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "uv lights"
  type: OTHER
  salience: 0.00022301771969068795
  mentions {
    text {
      content: "uv lights"
      begin_offset: 14901
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00022269457986112684
  mentions {
    text {
      content: "lights"
      begin_offset: 16881
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lighting"
  type: OTHER
  salience: 0.00022240592807065696
  mentions {
    text {
      content: "lighting"
      begin_offset: 20345
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00022240592807065696
  mentions {
    text {
      content: "light"
      begin_offset: 18841
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00022214511409401894
  mentions {
    text {
      content: "festival lights"
      begin_offset: 22182
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00022214511409401894
  mentions {
    text {
      content: "light"
      begin_offset: 21371
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.0002216887369286269
  mentions {
    text {
      content: "lights"
      begin_offset: 25595
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.0002216887369286269
  mentions {
    text {
      content: "festival lights"
      begin_offset: 26642
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.0002216887369286269
  mentions {
    text {
      content: "light"
      begin_offset: 26408
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00022148658172227442
  mentions {
    text {
      content: "festival lights"
      begin_offset: 27972
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00022148658172227442
  mentions {
    text {
      content: "lights"
      begin_offset: 28081
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00022148658172227442
  mentions {
    text {
      content: "light"
      begin_offset: 27920
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00022129854187369347
  mentions {
    text {
      content: "lights"
      begin_offset: 29624
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "streets london"
  type: OTHER
  salience: 0.00022124176030047238
  mentions {
    text {
      content: "streets london"
      begin_offset: 119544
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "streets london"
      begin_offset: 122322
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0002173562825191766
  mentions {
    text {
      content: "installations"
      begin_offset: 84321
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 86676
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "installations"
      begin_offset: 87354
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 2.200000047683716
    score: 0.699999988079071
  }
}
entities {
  name: "plan"
  type: OTHER
  salience: 0.00021703900711145252
  mentions {
    text {
      content: "plan"
      begin_offset: 12292
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "plan"
      begin_offset: 14073
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "mrbs"
  type: OTHER
  salience: 0.0002167623897548765
  mentions {
    text {
      content: "mrbs"
      begin_offset: 29955
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "mrbs"
      begin_offset: 31904
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "mrbs"
      begin_offset: 32101
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "levanterman lumierelondon aichoketrust southbanklondon postcardslond1 lumiere london"
  type: LOCATION
  salience: 0.00021624098008032888
  mentions {
    text {
      content: "london"
      begin_offset: 59789
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "levanterman lumierelondon aichoketrust southbanklondon  postcardslond1 lumiere london"
      begin_offset: 60011
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "lighting installation"
  type: OTHER
  salience: 0.00020324552315287292
  mentions {
    text {
      content: "lighting installation"
      begin_offset: 1985
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00020324552315287292
  mentions {
    text {
      content: "installation"
      begin_offset: 2642
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00020324552315287292
  mentions {
    text {
      content: "installations"
      begin_offset: 3542
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00020324552315287292
  mentions {
    text {
      content: "installation"
      begin_offset: 3573
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00020324552315287292
  mentions {
    text {
      content: "installation"
      begin_offset: 2413
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pubs"
  type: LOCATION
  salience: 0.0002028441522270441
  mentions {
    text {
      content: "pubs"
      begin_offset: 5987
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "pubs"
      begin_offset: 6386
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "pubs"
      begin_offset: 6692
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 0.0002022334811044857
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 5295
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0002022334811044857
  mentions {
    text {
      content: "installations"
      begin_offset: 5846
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0002022334811044857
  mentions {
    text {
      content: "installations"
      begin_offset: 5081
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.000200965630938299
  mentions {
    text {
      content: "installations"
      begin_offset: 8384
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.000200965630938299
  mentions {
    text {
      content: "installations"
      begin_offset: 9488
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.000200965630938299
  mentions {
    text {
      content: "light installations"
      begin_offset: 9409
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00020051504543516785
  mentions {
    text {
      content: "installation"
      begin_offset: 10727
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00020013486209791154
  mentions {
    text {
      content: "installations"
      begin_offset: 12392
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0001998061197809875
  mentions {
    text {
      content: "installations"
      begin_offset: 14128
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019951659487560391
  mentions {
    text {
      content: "installations"
      begin_offset: 18064
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019925796368625015
  mentions {
    text {
      content: "installations"
      begin_offset: 18855
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "waterlicht installation"
  type: OTHER
  salience: 0.00019925796368625015
  mentions {
    text {
      content: "waterlicht installation"
      begin_offset: 20304
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019925796368625015
  mentions {
    text {
      content: "installation"
      begin_offset: 19904
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019925796368625015
  mentions {
    text {
      content: "installations"
      begin_offset: 19304
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019902428903151304
  mentions {
    text {
      content: "installation"
      begin_offset: 20430
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019902428903151304
  mentions {
    text {
      content: "installations"
      begin_offset: 22057
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "name installation"
  type: OTHER
  salience: 0.00019902428903151304
  mentions {
    text {
      content: "name installation"
      begin_offset: 22396
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "programme installations"
  type: WORK_OF_ART
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "programme installations"
      begin_offset: 24489
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "installation"
      begin_offset: 24196
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "installation"
      begin_offset: 24666
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "installation"
      begin_offset: 24058
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "installation"
      begin_offset: 23804
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019881120533682406
  mentions {
    text {
      content: "installations"
      begin_offset: 23476
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019861538021359593
  mentions {
    text {
      content: "installation"
      begin_offset: 25734
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019861538021359593
  mentions {
    text {
      content: "installation"
      begin_offset: 26508
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019861538021359593
  mentions {
    text {
      content: "installation"
      begin_offset: 25420
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.00019861538021359593
  mentions {
    text {
      content: "light installations"
      begin_offset: 26680
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "marquee lumiere installations"
  type: OTHER
  salience: 0.00019861538021359593
  mentions {
    text {
      content: "marquee lumiere installations"
      begin_offset: 25617
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019843425252474844
  mentions {
    text {
      content: "installations"
      begin_offset: 27594
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.00019843425252474844
  mentions {
    text {
      content: "light installations"
      begin_offset: 27131
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "duration dot installation"
  type: OTHER
  salience: 0.00019843425252474844
  mentions {
    text {
      content: "duration dot installation"
      begin_offset: 28327
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.0001982657704502344
  mentions {
    text {
      content: "installation"
      begin_offset: 29690
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.0001982657704502344
  mentions {
    text {
      content: "installation"
      begin_offset: 31082
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0001982657704502344
  mentions {
    text {
      content: "installations"
      begin_offset: 30035
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 0.00019810830417554826
  mentions {
    text {
      content: "installation"
      begin_offset: 31437
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019810830417554826
  mentions {
    text {
      content: "installations"
      begin_offset: 32541
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00019810830417554826
  mentions {
    text {
      content: "installations"
      begin_offset: 32646
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thelightermankx"
  type: OTHER
  salience: 0.00019542562949936837
  mentions {
    text {
      content: "thelightermankx"
      begin_offset: 1074
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visitlondon"
  type: OTHER
  salience: 0.0001944424002431333
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 11873
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "mayoroflondon visitlondon"
  type: ORGANIZATION
  salience: 0.0001944424002431333
  mentions {
    text {
      content: "mayoroflondon  visitlondon"
      begin_offset: 12171
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "nightlife"
  type: OTHER
  salience: 0.00019417773000895977
  mentions {
    text {
      content: "nightlife"
      begin_offset: 8964
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nightingale"
  type: OTHER
  salience: 0.00019417773000895977
  mentions {
    text {
      content: "nightingale"
      begin_offset: 8728
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "oxo london nightlights"
  type: ORGANIZATION
  salience: 0.00019305736350361258
  mentions {
    text {
      content: "oxo london nightlights"
      begin_offset: 14490
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sta planning visit"
  type: EVENT
  salience: 0.00019279013213235885
  mentions {
    text {
      content: "sta planning visit"
      begin_offset: 24550
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00019105877436231822
  mentions {
    text {
      content: "light"
      begin_offset: 106507
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "light"
      begin_offset: 108462
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "london town"
  type: LOCATION
  salience: 0.00018933467799797654
  mentions {
    text {
      content: "london town"
      begin_offset: 1108
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00018888841441366822
  mentions {
    text {
      content: "festival lights"
      begin_offset: 44124
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 47732
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 63417
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 0.00018841959536075592
  mentions {
    text {
      content: "light"
      begin_offset: 33123
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 0.00018664106028154492
  mentions {
    text {
      content: "westend amp"
      begin_offset: 12450
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "festival sho"
  type: OTHER
  salience: 0.0001865727244876325
  mentions {
    text {
      content: "festival sho"
      begin_offset: 20153
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "festival sho"
      begin_offset: 23179
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.5
    score: 0.699999988079071
  }
}
entities {
  name: "volunteers"
  type: PERSON
  salience: 0.00018644612282514572
  mentions {
    text {
      content: "volunteers"
      begin_offset: 9961
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "volunteers"
      begin_offset: 41574
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 0.0001863344805315137
  mentions {
    text {
      content: "westend amp"
      begin_offset: 15285
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "south bank amp"
  type: ORGANIZATION
  salience: 0.00018522398022469133
  mentions {
    text {
      content: "south bank amp"
      begin_offset: 26191
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.000183016003575176
  mentions {
    text {
      content: "event"
      begin_offset: 6836
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa festival"
  type: EVENT
  salience: 0.00018296677444595844
  mentions {
    text {
      content: "pa  festival"
      begin_offset: 1939
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hq"
  type: LOCATION
  salience: 0.00018235575407743454
  mentions {
    text {
      content: "hq"
      begin_offset: 10046
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "hq"
      begin_offset: 41659
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00018205566448159516
  mentions {
    text {
      content: "festival"
      begin_offset: 4845
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "projector screen pa lumiere festival"
  type: EVENT
  salience: 0.00018205566448159516
  mentions {
    text {
      content: "projector screen pa lumiere festival"
      begin_offset: 4899
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00018205566448159516
  mentions {
    text {
      content: "festival"
      begin_offset: 5365
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mickfusion highlights"
  type: OTHER
  salience: 0.0001819532917579636
  mentions {
    text {
      content: "mickfusion  highlights"
      begin_offset: 1335
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00018091425590682775
  mentions {
    text {
      content: "festival"
      begin_offset: 8308
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.0001805086067179218
  mentions {
    text {
      content: "festival"
      begin_offset: 10529
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00018016633111983538
  mentions {
    text {
      content: "festival"
      begin_offset: 13827
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "night train home sinoradiouk festival"
  type: EVENT
  salience: 0.00017987037426792085
  mentions {
    text {
      content: "night train home  sinoradiouk  festival"
      begin_offset: 15015
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017937688971869648
  mentions {
    text {
      content: "festival"
      begin_offset: 19045
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminsterabbey light festival"
  type: EVENT
  salience: 0.00017937688971869648
  mentions {
    text {
      content: "westminsterabbey light festival"
      begin_offset: 18485
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017937688971869648
  mentions {
    text {
      content: "festival"
      begin_offset: 19599
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.0001792624098015949
  mentions {
    text {
      content: "photos"
      begin_offset: 23201
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumi\303\250re festival"
  type: EVENT
  salience: 0.00017916651268023998
  mentions {
    text {
      content: "lumi\303\250re festival"
      begin_offset: 22503
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017897467478178442
  mentions {
    text {
      content: "festival"
      begin_offset: 22727
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ospiti luminosi londra lumierelondon lumierelondon2018 leicestersquare"
  type: PERSON
  salience: 0.00017880489758681506
  mentions {
    text {
      content: "ospiti luminosi londra  lumierelondon lumierelondon2018 leicestersquare"
      begin_offset: 20702
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "london lumiere festival"
  type: EVENT
  salience: 0.00017879839288070798
  mentions {
    text {
      content: "london lumiere festival"
      begin_offset: 26300
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "chrisplant one"
  type: PERSON
  salience: 0.00017851816664915532
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 66927
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 130530
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 144774
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017848364950623363
  mentions {
    text {
      content: "festival"
      begin_offset: 30163
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayoroflondon festival"
  type: EVENT
  salience: 0.00017848364950623363
  mentions {
    text {
      content: "mayoroflondon festival"
      begin_offset: 29483
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "mayoroflondon festival"
  type: EVENT
  salience: 0.00017848364950623363
  mentions {
    text {
      content: "mayoroflondon festival"
      begin_offset: 30890
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017848364950623363
  mentions {
    text {
      content: "festival"
      begin_offset: 30424
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017848364950623363
  mentions {
    text {
      content: "festival"
      begin_offset: 30589
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lumiere festival"
  type: EVENT
  salience: 0.00017834187019616365
  mentions {
    text {
      content: "london lumiere festival"
      begin_offset: 32897
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 0.00017731101252138615
  mentions {
    text {
      content: "works"
      begin_offset: 17873
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 0.00017429023864679039
  mentions {
    text {
      content: "festival"
      begin_offset: 27541
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscross london"
  type: LOCATION
  salience: 0.00017213402315974236
  mentions {
    text {
      content: "kingscross london"
      begin_offset: 20233
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "kingscross london"
      begin_offset: 20959
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
    score: 0.800000011920929
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.00017211036174558103
  mentions {
    text {
      content: "photos"
      begin_offset: 11342
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust"
  type: PERSON
  salience: 0.00017205784388352185
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 33094
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon mayoroflondon"
  type: OTHER
  salience: 0.00017196143744513392
  mentions {
    text {
      content: "visitlondon mayoroflondon"
      begin_offset: 88568
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "visitlondon  mayoroflondon"
      begin_offset: 107944
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "world bubble"
      begin_offset: 107931
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.20000000298023224
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.00017090750043280423
  mentions {
    text {
      content: "event"
      begin_offset: 13644
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "park kings"
  type: PERSON
  salience: 0.0001704973547020927
  mentions {
    text {
      content: "park kings"
      begin_offset: 3251
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "floodlights king"
  type: PERSON
  salience: 0.00016964830865617841
  mentions {
    text {
      content: "floodlights king"
      begin_offset: 5728
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.00016960981884039938
  mentions {
    text {
      content: "event"
      begin_offset: 25570
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "regent"
  type: ORGANIZATION
  salience: 0.00016927396063692868
  mentions {
    text {
      content: "regent"
      begin_offset: 108591
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "regent"
      begin_offset: 138234
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "regent"
      begin_offset: 146565
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "regent"
      begin_offset: 151832
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "regent"
      begin_offset: 152979
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.20000000298023224
  }
}
entities {
  name: "festival light kings"
  type: OTHER
  salience: 0.0001690484641585499
  mentions {
    text {
      content: "festival light kings"
      begin_offset: 7818
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 0.00016858465096447617
  mentions {
    text {
      content: "kingdom"
      begin_offset: 9088
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 0.00016858465096447617
  mentions {
    text {
      content: "kingdom"
      begin_offset: 9145
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 0.00016858465096447617
  mentions {
    text {
      content: "kingdom"
      begin_offset: 8806
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "illumaphonium grosvenorsquare newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille"
  type: PERSON
  salience: 0.0001678833068581298
  mentions {
    text {
      content: "thelondoneye   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 78229
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 89069
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 89227
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 89753
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "illumaphonium grosvenorsquare   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 90345
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille"
      begin_offset: 90903
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "benoit deseille"
      begin_offset: 119867
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 119863
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nofilter kings"
  type: OTHER
  salience: 0.0001676118845352903
  mentions {
    text {
      content: "nofilter kings"
      begin_offset: 14821
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "granary square kings"
  type: EVENT
  salience: 0.0001676118845352903
  mentions {
    text {
      content: "granary square kings"
      begin_offset: 14983
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 0.00016715200035832822
  mentions {
    text {
      content: "kings"
      begin_offset: 18315
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "redevelopment kings"
  type: OTHER
  salience: 0.00016715200035832822
  mentions {
    text {
      content: "redevelopment kings"
      begin_offset: 18360
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 0.00016715200035832822
  mentions {
    text {
      content: "kingdom"
      begin_offset: 18448
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 0.00016715200035832822
  mentions {
    text {
      content: "kings"
      begin_offset: 19809
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installations kings"
  type: OTHER
  salience: 0.0001667772012297064
  mentions {
    text {
      content: "installations kings"
      begin_offset: 23214
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aurora borealis kings"
  type: PERSON
  salience: 0.0001667772012297064
  mentions {
    text {
      content: "aurora borealis kings"
      begin_offset: 23251
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 0.00016646095900796354
  mentions {
    text {
      content: "king"
      begin_offset: 28634
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 0.00016646095900796354
  mentions {
    text {
      content: "king"
      begin_offset: 28565
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 0.00016298206173814833
  mentions {
    text {
      content: "light installations"
      begin_offset: 103715
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "light installations"
      begin_offset: 137515
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "night road closures"
  type: EVENT
  salience: 0.00016281017451547086
  mentions {
    text {
      content: "night road closures"
      begin_offset: 64436
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "night road closures"
      begin_offset: 108543
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "guys"
  type: PERSON
  salience: 0.00016276440874207765
  mentions {
    text {
      content: "guys"
      begin_offset: 1797
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "westminster fitzrovia mayfair"
  type: EVENT
  metadata {
    key: "mid"
    value: "/m/0nbgf"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Mayfair"
  }
  salience: 0.0001619339018361643
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 12413
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 15248
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 43665
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 74516
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 133396
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 150776
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster fitzrovia mayfair"
      begin_offset: 158417
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "mayfair"
      begin_offset: 167924
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "mayfair"
      begin_offset: 109902
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "kingscross fitzrovia mayfair"
      begin_offset: 138112
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "kingscross fitzrovia mayfair"
      begin_offset: 146443
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "kingscross fitzrovia mayfair"
      begin_offset: 151710
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "kingscross fitzrovia mayfair"
      begin_offset: 152857
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 5.099999904632568
    score: 0.30000001192092896
  }
}
entities {
  name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  type: PERSON
  salience: 0.0001612865162314847
  mentions {
    text {
      content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
      begin_offset: 31349
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 0.00015814551443327218
  mentions {
    text {
      content: "amp"
      begin_offset: 85104
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 87496
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.10000000149011612
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 0.00015708708087913692
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 44095
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 47703
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nofilters"
  type: PERSON
  salience: 0.00015509076183661819
  mentions {
    text {
      content: "nofilters"
      begin_offset: 330
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "carnaby street joinin247 london"
  type: ORGANIZATION
  salience: 0.00015369955508504063
  mentions {
    text {
      content: "carnaby street  joinin247 london"
      begin_offset: 8261
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "marshalljulius london"
  type: LOCATION
  salience: 0.00015289821021724492
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 73570
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 127143
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 145430
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "marshalljulius london"
      begin_offset: 145707
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: -0.30000001192092896
  }
}
entities {
  name: "oxotowerwharf london"
  type: LOCATION
  salience: 0.00015281264495570213
  mentions {
    text {
      content: "oxotowerwharf london"
      begin_offset: 14532
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "leicestersquare london"
  type: LOCATION
  salience: 0.0001523933606222272
  mentions {
    text {
      content: "leicestersquare london"
      begin_offset: 18623
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "communities"
  type: PERSON
  salience: 0.00015210975834634155
  mentions {
    text {
      content: "communities"
      begin_offset: 1252
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumiere lumierelondon kingscross london"
  type: PERSON
  salience: 0.00015205162344500422
  mentions {
    text {
      content: "lumiere  lumierelondon kingscross london"
      begin_offset: 23279
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 0.00015162646013777703
  mentions {
    text {
      content: "abbey"
      begin_offset: 6149
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 0.00015121042088139802
  mentions {
    text {
      content: "abbey"
      begin_offset: 8562
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 0.00015058525605127215
  mentions {
    text {
      content: "abbey"
      begin_offset: 13063
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 0.0001499253703514114
  mentions {
    text {
      content: "abbey"
      begin_offset: 19133
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "biuk"
  type: PERSON
  salience: 0.00014949135947972536
  mentions {
    text {
      content: "biuk"
      begin_offset: 49114
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "andy popcornmedia_uk lumiere lumierelondon lumiere2018"
  type: PERSON
  salience: 0.0001473164593335241
  mentions {
    text {
      content: "lumierelondon lumiere2018"
      begin_offset: 103915
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "lumierelondon lumiere2018"
      begin_offset: 107513
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "andy popcornmedia_uk lumiere  lumierelondon lumiere2018"
      begin_offset: 111173
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "colleague"
      begin_offset: 111163
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.10000000149011612
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 0.0001473126030759886
  mentions {
    text {
      content: "chance"
      begin_offset: 10831
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations amp"
  type: PERSON
  salience: 0.00014659097359981388
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 12850
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 81836
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 0.00014617929991800338
  mentions {
    text {
      content: "event"
      begin_offset: 27338
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "church abbey"
  type: LOCATION
  salience: 0.0001461276551708579
  mentions {
    text {
      content: "church abbey"
      begin_offset: 7354
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust"
  type: OTHER
  salience: 0.0001460060739191249
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 36292
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 96276
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "dot"
  type: OTHER
  salience: 0.00014574425586033612
  mentions {
    text {
      content: "dot"
      begin_offset: 1721
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "king cross granary square"
  type: LOCATION
  salience: 0.00014572215150110424
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 3982
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 0.00014560652198269963
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 4072
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "berkeley square"
  type: LOCATION
  salience: 0.0001440872874809429
  mentions {
    text {
      content: "berkeley square"
      begin_offset: 8740
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "king cross granary square"
  type: LOCATION
  salience: 0.00014325580559670925
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 15882
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "granary square"
  type: LOCATION
  salience: 0.0001426951785106212
  mentions {
    text {
      content: "granary square"
      begin_offset: 20977
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "davekirwinphotography canon photography"
  type: WORK_OF_ART
  salience: 0.00014254597772378474
  mentions {
    text {
      content: "davekirwinphotography  canon photography"
      begin_offset: 4990
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00014115516387391835
  mentions {
    text {
      content: "festival lights"
      begin_offset: 151941
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 160765
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 165540
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 170038
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.20000000298023224
  }
}
entities {
  name: "favourites"
  type: PERSON
  salience: 0.0001404155045747757
  mentions {
    text {
      content: "favourites"
      begin_offset: 3556
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa"
  type: OTHER
  salience: 0.0001386212679790333
  mentions {
    text {
      content: "pa"
      begin_offset: 16487
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "pa"
  type: OTHER
  salience: 0.00013813108671456575
  mentions {
    text {
      content: "pa"
      begin_offset: 22990
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "berkeley square"
  type: OTHER
  salience: 0.00013711237988900393
  mentions {
    text {
      content: "berkeley square"
      begin_offset: 28124
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "piccadilly lumierelondon"
  type: OTHER
  salience: 0.00013616099022328854
  mentions {
    text {
      content: "piccadilly lumierelondon"
      begin_offset: 6060
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "capital city"
  type: LOCATION
  salience: 0.00013598677469417453
  mentions {
    text {
      content: "capital city"
      begin_offset: 3395
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photography"
  type: WORK_OF_ART
  salience: 0.00013521530490834266
  mentions {
    text {
      content: "photography"
      begin_offset: 7259
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "canon photos"
  type: WORK_OF_ART
  salience: 0.00013484428927768022
  mentions {
    text {
      content: "canon photos"
      begin_offset: 8823
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.00013484428927768022
  mentions {
    text {
      content: "photos"
      begin_offset: 8223
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation dslrphotography city"
  type: LOCATION
  salience: 0.0001348310470348224
  mentions {
    text {
      content: "installation dslrphotography city"
      begin_offset: 6498
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.00013454190047923476
  mentions {
    text {
      content: "photos"
      begin_offset: 11392
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visitlondon visitlondon lumierelondon london"
  type: ORGANIZATION
  salience: 0.00013422162737697363
  mentions {
    text {
      content: "visitlondon visitlondon lumierelondon london"
      begin_offset: 21394
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "visitlondon visitlondon lumierelondon london"
      begin_offset: 26431
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "visitlondon visitlondon lumierelondon london"
      begin_offset: 80012
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.20000000298023224
  }
}
entities {
  name: "weekend photos"
  type: WORK_OF_ART
  salience: 0.00013406614016275853
  mentions {
    text {
      content: "weekend photos"
      begin_offset: 15720
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "kingscross london"
  type: WORK_OF_ART
  salience: 0.00013396443682722747
  mentions {
    text {
      content: "kingscross london"
      begin_offset: 140928
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "sketch"
      begin_offset: 140920
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "festival photos"
  type: WORK_OF_ART
  salience: 0.00013387184299062937
  mentions {
    text {
      content: "festival photos"
      begin_offset: 17804
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival photos"
  type: WORK_OF_ART
  salience: 0.00013387184299062937
  mentions {
    text {
      content: "festival photos"
      begin_offset: 17949
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "child hood collectif coin photo"
  type: WORK_OF_ART
  salience: 0.00013369826774578542
  mentions {
    text {
      content: "child hood collectif coin photo"
      begin_offset: 19369
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photography"
  type: WORK_OF_ART
  salience: 0.00013369826774578542
  mentions {
    text {
      content: "photography"
      begin_offset: 18533
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "citylights"
  type: EVENT
  salience: 0.00013368514191824943
  mentions {
    text {
      content: "citylights"
      begin_offset: 14559
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.0001329267252003774
  mentions {
    text {
      content: "photos"
      begin_offset: 32726
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  type: OTHER
  salience: 0.00013292551739141345
  mentions {
    text {
      content: "human interaction"
      begin_offset: 31774
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
      begin_offset: 31792
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 0.00013207287702243775
  mentions {
    text {
      content: "south bank"
      begin_offset: 44969
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 0.00013200059765949845
  mentions {
    text {
      content: "south bank"
      begin_offset: 47203
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.000131775057525374
  mentions {
    text {
      content: "work"
      begin_offset: 18945
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.000131775057525374
  mentions {
    text {
      content: "work"
      begin_offset: 18777
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 0.0001316205016337335
  mentions {
    text {
      content: "works"
      begin_offset: 21040
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 0.0001316205016337335
  mentions {
    text {
      content: "works"
      begin_offset: 22270
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.00013147955178283155
  mentions {
    text {
      content: "work"
      begin_offset: 24309
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.0001312302192673087
  mentions {
    text {
      content: "work"
      begin_offset: 29026
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.0001312302192673087
  mentions {
    text {
      content: "work"
      begin_offset: 28295
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 16.700000762939453
    score: 0.4000000059604645
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 0.00013111878070048988
  mentions {
    text {
      content: "work"
      begin_offset: 29095
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00013021299673710018
  mentions {
    text {
      content: "display"
      begin_offset: 41513
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.699999988079071
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00013013843272347003
  mentions {
    text {
      content: "display"
      begin_offset: 45124
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012999906903132796
  mentions {
    text {
      content: "display"
      begin_offset: 48947
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012999906903132796
  mentions {
    text {
      content: "display"
      begin_offset: 49023
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012999906903132796
  mentions {
    text {
      content: "display"
      begin_offset: 47540
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.699999988079071
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.0001299337309319526
  mentions {
    text {
      content: "display"
      begin_offset: 50346
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.0001299337309319526
  mentions {
    text {
      content: "display"
      begin_offset: 51195
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.0001298709976254031
  mentions {
    text {
      content: "display"
      begin_offset: 52256
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.0001298709976254031
  mentions {
    text {
      content: "display"
      begin_offset: 52603
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.0001298709976254031
  mentions {
    text {
      content: "display"
      begin_offset: 51852
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53913
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53533
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54141
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54892
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54065
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53457
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54816
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53837
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53609
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54962
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54360
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54740
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53685
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54512
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54436
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53761
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54588
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 53989
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012981065083295107
  mentions {
    text {
      content: "display"
      begin_offset: 54664
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.00012979617167729884
  mentions {
    text {
      content: "photos"
      begin_offset: 29168
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "england"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/02jx1"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/England"
  }
  salience: 0.0001297385897487402
  mentions {
    text {
      content: "england"
      begin_offset: 71538
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 71776
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 72014
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 72252
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 72473
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 72694
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 72915
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 73136
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "england"
      begin_offset: 125135
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "umbrella project regent st  london"
      begin_offset: 125100
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 4.5
    score: -0.30000001192092896
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00012922374298796058
  mentions {
    text {
      content: "festival lights"
      begin_offset: 60443
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "times"
  type: OTHER
  salience: 0.00012914551189169288
  mentions {
    text {
      content: "times"
      begin_offset: 17054
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "times"
  type: OTHER
  salience: 0.00012856203829869628
  mentions {
    text {
      content: "times"
      begin_offset: 25150
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 0.00012734536721836776
  mentions {
    text {
      content: "works"
      begin_offset: 15135
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 0.00012659763160627335
  mentions {
    text {
      content: "circus"
      begin_offset: 47890
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "circus"
      begin_offset: 93658
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 0.00012655816681217402
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 22774
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bye bye case"
  type: OTHER
  salience: 0.0001265198807232082
  mentions {
    text {
      content: "bye bye  case"
      begin_offset: 550
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "red telephone box"
  type: CONSUMER_GOOD
  salience: 0.00012632709695026278
  mentions {
    text {
      content: "red telephone box"
      begin_offset: 18094
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "city hall"
  type: LOCATION
  salience: 0.0001262984296772629
  mentions {
    text {
      content: "city hall"
      begin_offset: 129096
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 135911
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 158094
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 161371
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 162433
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 163821
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "city hall"
      begin_offset: 165071
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
  }
}
entities {
  name: "penny photo stream"
  type: OTHER
  salience: 0.00012615928426384926
  mentions {
    text {
      content: "penny  photo stream"
      begin_offset: 7225
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "streetlight"
  type: OTHER
  salience: 0.00012615928426384926
  mentions {
    text {
      content: "streetlight"
      begin_offset: 6604
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 0.0001258130942005664
  mentions {
    text {
      content: "streets"
      begin_offset: 9876
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 0.00012490575318224728
  mentions {
    text {
      content: "streets"
      begin_offset: 17006
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chandeliers"
  type: OTHER
  salience: 0.0001248967892024666
  mentions {
    text {
      content: "chandeliers"
      begin_offset: 16434
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "chandeliers"
  type: OTHER
  salience: 0.00012445512402337044
  mentions {
    text {
      content: "chandeliers"
      begin_offset: 22937
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "fitzrovia pas camden"
  type: OTHER
  salience: 0.00012426680768840015
  mentions {
    text {
      content: "fitzrovia pas  camden"
      begin_offset: 62995
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "bloomsbury amp"
      begin_offset: 62980
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "fitzrovia pas  camden"
      begin_offset: 85411
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "bloomsbury amp"
      begin_offset: 85396
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: -0.10000000149011612
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 0.00012419087579473853
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 11507
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: PERSON
  salience: 0.00012419087579473853
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 11648
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 0.00012341213005129248
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 19570
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 0.00012326736759860069
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 20875
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00012316019274294376
  mentions {
    text {
      content: "festival lights"
      begin_offset: 141898
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "london ibipeople ibisocial lumierelondon lumiere lumierelondon2018"
  type: PERSON
  salience: 0.000123133126180619
  mentions {
    text {
      content: "london ibipeople ibisocial lumierelondon  lumiere lumierelondon2018"
      begin_offset: 2926
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 0.00012309540761634707
  mentions {
    text {
      content: "display"
      begin_offset: 9189
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 0.0001230140624102205
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 26613
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 0.00012290185259189457
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 27933
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018 electricpedals"
  type: OTHER
  salience: 0.0001227466855198145
  mentions {
    text {
      content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018  electricpedals"
      begin_offset: 31226
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "human interaction"
      begin_offset: 31208
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "telephone box"
  type: CONSUMER_GOOD
  salience: 0.00012235487520229071
  mentions {
    text {
      content: "telephone box"
      begin_offset: 11144
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "video electricpedals"
  type: OTHER
  salience: 0.00012183767830720171
  mentions {
    text {
      content: "video electricpedals"
      begin_offset: 1283
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "iamgabrielluna yosoycordova lumierelondon lumierelondon2018"
  type: PERSON
  salience: 0.00012147855159128085
  mentions {
    text {
      content: "iamgabrielluna yosoycordova lumierelondon lumierelondon2018"
      begin_offset: 11575
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "lumiere lumiere neon drolpets london"
  type: LOCATION
  salience: 0.00012145943765062839
  mentions {
    text {
      content: "london"
      begin_offset: 133497
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumiere lumiere neon drolpets london"
      begin_offset: 134965
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon"
  type: ORGANIZATION
  salience: 0.00012087353388778865
  mentions {
    text {
      content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon"
      begin_offset: 17238
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
  type: ORGANIZATION
  salience: 0.00012071680976077914
  mentions {
    text {
      content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
      begin_offset: 19426
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust justin_venn lumierelondon2018 lumierelondon"
  type: ORGANIZATION
  salience: 0.00012071680976077914
  mentions {
    text {
      content: "gantonstreet chinatown leicestersquaregardens visitlondon aichoketrust  justin_venn  lumierelondon2018 lumierelondon"
      begin_offset: 19675
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "londonisopen lumiere justin_venn lumierelondon2018 lumierelondon"
  type: PERSON
  salience: 0.00012057521234964952
  mentions {
    text {
      content: "londonisopen lumiere   justin_venn  lumierelondon2018 lumierelondon"
      begin_offset: 22087
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "youtube"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/09jcvs"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/YouTube"
  }
  salience: 0.0001204180225613527
  mentions {
    text {
      content: "youtube"
      begin_offset: 11552
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "youtube"
      begin_offset: 32507
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "youtube"
      begin_offset: 82108
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "youtube"
      begin_offset: 117768
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "youtube"
      begin_offset: 118052
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "youtube"
      begin_offset: 159499
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "electricpedals victoriabid aichoketrust lumierelondon lumierelondon2018"
  type: ORGANIZATION
  salience: 0.00012002015864709392
  mentions {
    text {
      content: "electricpedals victoriabid aichoketrust  lumierelondon lumierelondon2018"
      begin_offset: 32166
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust lumieredub"
  type: PERSON
  salience: 0.00012000233255093917
  mentions {
    text {
      content: "aichoketrust lumieredub"
      begin_offset: 114918
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "atnight streetsoflondon southbank instagood"
  type: ORGANIZATION
  salience: 0.00011906483996426687
  mentions {
    text {
      content: "atnight streetsoflondon southbank instagood"
      begin_offset: 6532
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "brightnights gt lumierelondon igerslondon londonpop thisislondon london"
  type: PERSON
  salience: 0.00011904460552614182
  mentions {
    text {
      content: "antonio ubeda en supercube de st\303\251phane masson lumierelondon"
      begin_offset: 11703
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 13813
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "brightnights gt  lumierelondon igerslondon londonpop thisislondon london"
      begin_offset: 84347
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon"
  type: EVENT
  salience: 0.00011861154052894562
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 144129
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 165249
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 0.00011861154052894562
  mentions {
    text {
      content: "visit"
      begin_offset: 143898
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "visit"
      begin_offset: 162687
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.10000000149011612
  }
}
entities {
  name: "insight"
  type: OTHER
  salience: 0.00011762086796807125
  mentions {
    text {
      content: "insight"
      begin_offset: 106735
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "insight"
      begin_offset: 115828
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "insight"
      begin_offset: 115984
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "insight"
      begin_offset: 116375
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "insight"
      begin_offset: 116505
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 4.199999809265137
    score: 0.800000011920929
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 0.00011740725312847644
  mentions {
    text {
      content: "aquarium"
      begin_offset: 18124
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wildlife theme"
  type: OTHER
  salience: 0.0001167385998996906
  mentions {
    text {
      content: "wildlife theme"
      begin_offset: 928
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lumierelondon king cross"
  type: OTHER
  salience: 0.00011525394074851647
  mentions {
    text {
      content: "lumierelondon  king cross"
      begin_offset: 28662
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 0.00011525394074851647
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 27296
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cross"
  type: OTHER
  salience: 0.00011525394074851647
  mentions {
    text {
      content: "cross"
      begin_offset: 28570
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "destinations"
  type: LOCATION
  salience: 0.0001152013210230507
  mentions {
    text {
      content: "destinations"
      begin_offset: 143054
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "destinations"
      begin_offset: 143606
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "destinations"
      begin_offset: 145997
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "destinations"
      begin_offset: 147090
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "destinations"
      begin_offset: 147386
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "destinations"
      begin_offset: 148204
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: -0.10000000149011612
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 0.00011383001401554793
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 6193
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wabbey lumierelondon2018 visitlondon"
  type: ORGANIZATION
  salience: 0.0001136906721512787
  mentions {
    text {
      content: "wabbey lumierelondon2018  visitlondon"
      begin_offset: 28766
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 0.00011351764987921342
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 8606
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 0.00011326307139825076
  mentions {
    text {
      content: "spirit"
      begin_offset: 11406
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 0.00011304827057756484
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 13107
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "things"
  type: OTHER
  salience: 0.00011299129255348817
  mentions {
    text {
      content: "things"
      begin_offset: 3741
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 0.00011286253720754758
  mentions {
    text {
      content: "spirit"
      begin_offset: 15635
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 0.00011255282879574224
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 19177
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "battle bridge place granary"
  type: OTHER
  salience: 0.00011253052070969716
  mentions {
    text {
      content: "battle bridge place granary"
      begin_offset: 1842
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 0.00011231218377361074
  mentions {
    text {
      content: "rain"
      begin_offset: 14857
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.00011219953739782795
  mentions {
    text {
      content: "installations"
      begin_offset: 13888
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pity uk"
  type: OTHER
  salience: 0.00011219841690035537
  mentions {
    text {
      content: "pity uk"
      begin_offset: 1394
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 0.00011214940604986623
  mentions {
    text {
      content: "rain"
      begin_offset: 16812
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 0.00011200398876098916
  mentions {
    text {
      content: "rain"
      begin_offset: 18240
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "flower"
  type: OTHER
  salience: 0.00011156982509419322
  mentions {
    text {
      content: "flower"
      begin_offset: 32298
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "panership"
  type: OTHER
  salience: 0.00011111687490483746
  mentions {
    text {
      content: "panership"
      begin_offset: 423
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "op ed"
  type: PERSON
  salience: 0.00011111687490483746
  mentions {
    text {
      content: "op ed"
      begin_offset: 1199
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "context"
  type: OTHER
  salience: 0.00011111687490483746
  mentions {
    text {
      content: "context"
      begin_offset: 1585
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cosmoscope"
  type: PERSON
  salience: 0.00011111687490483746
  mentions {
    text {
      content: "cosmoscope"
      begin_offset: 1503
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "ceo"
  type: PERSON
  salience: 0.00011111687490483746
  mentions {
    text {
      content: "ceo"
      begin_offset: 1178
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "granary"
  type: OTHER
  salience: 0.00011032220936613157
  mentions {
    text {
      content: "granary"
      begin_offset: 20251
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "cultureisgreat wabbey stas"
  type: PERSON
  salience: 0.00011026330321328714
  mentions {
    text {
      content: "cultureisgreat  wabbey  stas"
      begin_offset: 13022
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "wabbey  stas"
      begin_offset: 78761
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "wabbey  stas"
      begin_offset: 80961
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "wabbey  stas"
      begin_offset: 97731
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumiere   wabbey  stas"
      begin_offset: 150512
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "wabbey  stas"
      begin_offset: 176020
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 2.0999999046325684
    score: 0.20000000298023224
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.00011006573913618922
  mentions {
    text {
      content: "people"
      begin_offset: 28934
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "granary"
  type: OTHER
  salience: 0.00010986604320351034
  mentions {
    text {
      content: "granary"
      begin_offset: 27735
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "granary"
  type: OTHER
  salience: 0.00010986604320351034
  mentions {
    text {
      content: "granary"
      begin_offset: 28619
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "granary"
  type: OTHER
  salience: 0.00010986604320351034
  mentions {
    text {
      content: "granary"
      begin_offset: 28550
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "raina newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium marshalljulius london"
  type: PERSON
  salience: 0.00010957974882330745
  mentions {
    text {
      content: "raina  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
      begin_offset: 77023
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "londonevents fishtank phonebooth lightshow ig_l  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
      begin_offset: 80311
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
      begin_offset: 84729
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  marshalljulius london"
      begin_offset: 87037
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.0
    score: -0.20000000298023224
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00010944672976620495
  mentions {
    text {
      content: "lights"
      begin_offset: 37650
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 0.00010938174091279507
  mentions {
    text {
      content: "london"
      begin_offset: 98939
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 0.00010937388287857175
  mentions {
    text {
      content: "lights"
      begin_offset: 38301
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.00010917005420196801
  mentions {
    text {
      content: "people"
      begin_offset: 18346
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon rain"
  type: OTHER
  salience: 0.00010903408110607415
  mentions {
    text {
      content: "lumierelondon rain"
      begin_offset: 23556
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.00010881791240535676
  mentions {
    text {
      content: "people"
      begin_offset: 25846
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival wavelength pa exhibition"
  type: EVENT
  salience: 0.00010770784865599126
  mentions {
    text {
      content: "festival  wavelength pa  exhibition"
      begin_offset: 17393
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lots"
  type: OTHER
  salience: 0.00010736948752310127
  mentions {
    text {
      content: "lots"
      begin_offset: 9246
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 0.00010625926370266825
  mentions {
    text {
      content: "festival lights"
      begin_offset: 162654
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 166369
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 168083
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "festival lights"
      begin_offset: 168139
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 0.0001058284324244596
  mentions {
    text {
      content: "installations"
      begin_offset: 3364
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 0.00010536580521147698
  mentions {
    text {
      content: "experience"
      begin_offset: 27067
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 0.00010521744115976617
  mentions {
    text {
      content: "photos"
      begin_offset: 139190
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "photos"
      begin_offset: 139474
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "photos"
      begin_offset: 166112
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "city hall projection"
  type: OTHER
  salience: 0.00010518263297853991
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 4703
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "pa noordinarypark miss"
  type: OTHER
  salience: 0.00010518263297853991
  mentions {
    text {
      content: "pa   noordinarypark miss"
      begin_offset: 5109
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon theladytravels"
  type: OTHER
  salience: 0.00010512447624932975
  mentions {
    text {
      content: "lumierelondon  theladytravels"
      begin_offset: 81518
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon  theladytravels"
      begin_offset: 99675
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.10000000149011612
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 0.00010504102829145268
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 4057
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wave"
  type: EVENT
  salience: 0.00010502947407076135
  mentions {
    text {
      content: "wave"
      begin_offset: 5327
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 0.00010488300904398784
  mentions {
    text {
      content: "city"
      begin_offset: 141563
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 163364
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "city"
      begin_offset: 171822
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "lighting wearewaterloouk"
  type: OTHER
  salience: 0.00010481610661372542
  mentions {
    text {
      content: "lighting   wearewaterloouk"
      begin_offset: 1610
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "fish phone booth"
  type: OTHER
  salience: 0.00010481610661372542
  mentions {
    text {
      content: "fish phone booth"
      begin_offset: 293
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "city hall projection"
  type: OTHER
  salience: 0.0001042886360664852
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 10627
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city hall projection"
  type: OTHER
  salience: 0.0001042886360664852
  mentions {
    text {
      content: "city hall projection"
      begin_offset: 11041
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "mayoroflondon noordinarypark miss"
  type: ORGANIZATION
  salience: 0.00010391982505097985
  mentions {
    text {
      content: "mayoroflondon  noordinarypark miss"
      begin_offset: 15957
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 0.00010329868382541463
  mentions {
    text {
      content: "people"
      begin_offset: 11467
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aiseverywhere aichoketrust"
  type: OTHER
  salience: 0.00010312162339687347
  mentions {
    text {
      content: "aiseverywhere aichoketrust"
      begin_offset: 9825
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "repoer presenter freelancer miss"
  type: WORK_OF_ART
  salience: 0.00010311848018318415
  mentions {
    text {
      content: "repoer presenter freelancer miss"
      begin_offset: 30678
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 0.00010303899762220681
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 5341
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "style"
  type: OTHER
  salience: 0.00010268105688737705
  mentions {
    text {
      content: "style"
      begin_offset: 95124
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "style"
      begin_offset: 153430
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "style"
      begin_offset: 161239
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 0.00010255382949253544
  mentions {
    text {
      content: "roads"
      begin_offset: 27274
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 0.00010238532559014857
  mentions {
    text {
      content: "roads"
      begin_offset: 33342
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ldn_culture loveldnlovecul aichoketrust"
  type: PERSON
  salience: 0.00010173587361350656
  mentions {
    text {
      content: "ldn_culture loveldnlovecul aichoketrust"
      begin_offset: 29557
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "projector"
  type: OTHER
  salience: 0.00010073200974147767
  mentions {
    text {
      content: "projector"
      begin_offset: 8868
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 0.00010070811549667269
  mentions {
    text {
      content: "video"
      begin_offset: 13786
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain exitmagazine maxcoopermax visitlondon"
  type: ORGANIZATION
  salience: 0.00010048043623100966
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 125585
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "rain  exitmagazine  maxcoopermax  visitlondon"
      begin_offset: 126835
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.10000000149011612
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 0.00010004187060985714
  mentions {
    text {
      content: "video"
      begin_offset: 23666
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "computingdawn colour"
  type: OTHER
  salience: 9.989864338422194e-05
  mentions {
    text {
      content: "computingdawn colour"
      begin_offset: 8415
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "pics"
  type: WORK_OF_ART
  salience: 9.957629663404077e-05
  mentions {
    text {
      content: "pics"
      begin_offset: 100916
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "pics"
      begin_offset: 107701
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "pics"
      begin_offset: 124839
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "events"
  type: EVENT
  salience: 9.903519094223157e-05
  mentions {
    text {
      content: "events"
      begin_offset: 52077
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere"
  type: OTHER
  salience: 9.897547715809196e-05
  mentions {
    text {
      content: "lumiere"
      begin_offset: 82360
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 9.858036355581135e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 31936
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "interview harry qedproductions"
  type: CONSUMER_GOOD
  salience: 9.758859960129485e-05
  mentions {
    text {
      content: "interview harry qedproductions"
      begin_offset: 389
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 9.753330232342705e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 4028
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 9.722371032694355e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 13993
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 9.704164403956383e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 149197
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 164736
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "dreams"
      begin_offset: 168961
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.20000000298023224
  }
}
entities {
  name: "installation london"
  type: OTHER
  salience: 9.68033418757841e-05
  mentions {
    text {
      content: "installation london"
      begin_offset: 37681
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumiere london"
  type: LOCATION
  salience: 9.673890599515289e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 39286
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "installation london"
  type: LOCATION
  salience: 9.673890599515289e-05
  mentions {
    text {
      content: "installation london"
      begin_offset: 38332
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "work sroosegaarde lumiere london"
  type: LOCATION
  salience: 9.66778170550242e-05
  mentions {
    text {
      content: "work sroosegaarde lumiere london"
      begin_offset: 39768
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 9.661974763730541e-05
  mentions {
    text {
      content: "london"
      begin_offset: 42321
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "colouryourcity"
  type: OTHER
  salience: 9.652641892898828e-05
  mentions {
    text {
      content: "colouryourcity"
      begin_offset: 22470
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "aichoketrust team"
  type: ORGANIZATION
  salience: 9.65252474998124e-05
  mentions {
    text {
      content: "aichoketrust  team"
      begin_offset: 4214
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.65252474998124e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 4674
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "zoomburst promise"
  type: OTHER
  salience: 9.6124094852712e-05
  mentions {
    text {
      content: "zoomburst promise"
      begin_offset: 11309
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 9.588234388502315e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 15928
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumierelondon2018 lumierelondon southbanklondon"
  type: PERSON
  salience: 9.586702799424529e-05
  mentions {
    text {
      content: "lumierelondon2018 lumierelondon  southbanklondon"
      begin_offset: 56324
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 78546
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london lumierelondon  sadiqkhan"
      begin_offset: 143213
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.570481051923707e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 11012
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.570481051923707e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 10598
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 9.557012526784092e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 158555
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 168690
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 168867
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 169222
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 169359
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 169484
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "roads"
      begin_offset: 169609
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: 0.20000000298023224
  }
}
entities {
  name: "exhibition"
  type: EVENT
  salience: 9.536634752294049e-05
  mentions {
    text {
      content: "exhibition"
      begin_offset: 14772
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wavelength pa exhibition"
  type: EVENT
  salience: 9.522812615614384e-05
  mentions {
    text {
      content: "wavelength pa  exhibition"
      begin_offset: 17161
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 9.510464587947354e-05
  mentions {
    text {
      content: "team"
      begin_offset: 18794
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.499308362137526e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 21894
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 9.491186210652813e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 5379
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.489134390605614e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 23929
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cube pa exhibition"
  type: EVENT
  salience: 9.489134390605614e-05
  mentions {
    text {
      content: "cube pa  exhibition"
      begin_offset: 24760
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.479785512667149e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 26743
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "broadway team"
  type: ORGANIZATION
  salience: 9.455576218897477e-05
  mentions {
    text {
      content: "broadway team"
      begin_offset: 32381
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 9.455576218897477e-05
  mentions {
    text {
      content: "team"
      begin_offset: 32254
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cirquebijou amp lambethacademy students"
  type: PERSON
  salience: 9.45532665355131e-05
  mentions {
    text {
      content: "cirquebijou amp lambethacademy students"
      begin_offset: 9979
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 9.417688852408901e-05
  mentions {
    text {
      content: "team"
      begin_offset: 5400
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "folk"
  type: PERSON
  salience: 9.410514030605555e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 11238
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "postcardslond1 piccadillycircus"
  type: EVENT
  salience: 9.402634896105155e-05
  mentions {
    text {
      content: "postcardslond1  piccadillycircus"
      begin_offset: 37038
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "lumiere festival"
      begin_offset: 37019
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.6000000238418579
  }
}
entities {
  name: "simon corder"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/0y7xjh2"
  }
  salience: 9.338735981145874e-05
  mentions {
    text {
      content: "simon corder"
      begin_offset: 62220
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "aist amp lighting designer"
      begin_offset: 62193
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "simon corder"
      begin_offset: 101771
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "check bough1"
      begin_offset: 101758
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.30000001192092896
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 9.322896221419796e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 4150
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "placemaking"
  type: OTHER
  salience: 9.237666381523013e-05
  mentions {
    text {
      content: "placemaking"
      begin_offset: 4428
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 9.204996604239568e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 6239
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 9.197612234856933e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 16349
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "energy"
  type: OTHER
  salience: 9.194786980515346e-05
  mentions {
    text {
      content: "energy"
      begin_offset: 139098
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "energy"
      begin_offset: 139382
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "energy"
      begin_offset: 142417
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "energy"
      begin_offset: 145586
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 9.179735934594646e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 8652
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "ideas"
  type: OTHER
  salience: 9.179735934594646e-05
  mentions {
    text {
      content: "ideas"
      begin_offset: 8522
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 9.165084338746965e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 22852
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 9.147702076006681e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 27440
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 9.141777263721451e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 13153
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 9.1326714027673e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 32014
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa neon sculpture"
  type: OTHER
  salience: 9.125473297899589e-05
  mentions {
    text {
      content: "pa  neon sculpture"
      begin_offset: 32113
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations aether dot waterlicht mystery entry"
  type: OTHER
  salience: 9.101710020331666e-05
  mentions {
    text {
      content: "installations aether dot waterlicht mystery entry"
      begin_offset: 19822
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 9.101710020331666e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 19223
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 9.092408436117694e-05
  mentions {
    text {
      content: "experience"
      begin_offset: 9267
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp light"
  type: OTHER
  salience: 9.061695891432464e-05
  mentions {
    text {
      content: "abi"
      begin_offset: 59674
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "amp light"
      begin_offset: 59637
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "placemaking"
  type: OTHER
  salience: 9.056375711224973e-05
  mentions {
    text {
      content: "placemaking"
      begin_offset: 29305
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 9.01512466953136e-05
  mentions {
    text {
      content: "experience"
      begin_offset: 20271
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitor experiences"
  type: OTHER
  salience: 8.970221097115427e-05
  mentions {
    text {
      content: "visitor experiences"
      begin_offset: 29334
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: 0.699999988079071
  }
}
entities {
  name: "wabbey"
  type: PERSON
  salience: 8.926735608838499e-05
  mentions {
    text {
      content: "wabbey"
      begin_offset: 19108
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 8.92330936039798e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 95549
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 8.91419404069893e-05
  mentions {
    text {
      content: "people"
      begin_offset: 119372
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "people"
      begin_offset: 144391
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chance see"
  type: OTHER
  salience: 8.902968693291768e-05
  mentions {
    text {
      content: "chance see"
      begin_offset: 5696
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitlondon deeeeelicious meal"
  type: OTHER
  salience: 8.900102693587542e-05
  mentions {
    text {
      content: "visitlondon deeeeelicious meal"
      begin_offset: 1043
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "album"
  type: WORK_OF_ART
  salience: 8.900102693587542e-05
  mentions {
    text {
      content: "album"
      begin_offset: 1448
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "wabbey"
  type: OTHER
  salience: 8.897939551388845e-05
  mentions {
    text {
      content: "wabbey"
      begin_offset: 25894
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light show"
  type: EVENT
  salience: 8.87477581272833e-05
  mentions {
    text {
      content: "light show"
      begin_offset: 6034
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "return"
  type: EVENT
  salience: 8.865968266036361e-05
  mentions {
    text {
      content: "return"
      begin_offset: 10281
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 8.85505141923204e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 69927
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
  type: PERSON
  salience: 8.850181620800868e-05
  mentions {
    text {
      content: "adventuresofjellie jellie lumiere  granarysquare kingscross london"
      begin_offset: 61727
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 8.842048555379733e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 160426
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 162625
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 166340
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 167776
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 168054
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 168110
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 170299
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "videography musicvideo"
  type: WORK_OF_ART
  salience: 8.822906238492578e-05
  mentions {
    text {
      content: "videography musicvideo"
      begin_offset: 2834
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 8.820310176815838e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 15692
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "newwestend"
  type: PERSON
  salience: 8.761647040955722e-05
  mentions {
    text {
      content: "newwestend"
      begin_offset: 21578
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "mickfusion highlights"
  type: OTHER
  salience: 8.724327199161053e-05
  mentions {
    text {
      content: "mickfusion  highlights"
      begin_offset: 3196
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mickfusion highlights"
  type: OTHER
  salience: 8.724327199161053e-05
  mentions {
    text {
      content: "mickfusion  highlights"
      begin_offset: 2114
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mickfusion highlights"
  type: OTHER
  salience: 8.724327199161053e-05
  mentions {
    text {
      content: "mickfusion  highlights"
      begin_offset: 3104
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londoners"
  type: PERSON
  salience: 8.720729238120839e-05
  mentions {
    text {
      content: "londoners"
      begin_offset: 58373
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light transformations"
  type: OTHER
  salience: 8.693692507222295e-05
  mentions {
    text {
      content: "light transformations"
      begin_offset: 33284
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 8.666590292705223e-05
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
      begin_offset: 8116
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aworks"
  type: OTHER
  salience: 8.639606676297262e-05
  mentions {
    text {
      content: "aworks"
      begin_offset: 22579
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "daan roosegaarde granary square"
  type: LOCATION
  salience: 8.609291398897767e-05
  mentions {
    text {
      content: "daan roosegaarde granary square"
      begin_offset: 3597
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "closures"
  type: EVENT
  salience: 8.580370922572911e-05
  mentions {
    text {
      content: "closures"
      begin_offset: 4379
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 8.564213203499094e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 16284
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "neon"
  type: OTHER
  salience: 8.550025813747197e-05
  mentions {
    text {
      content: "neon"
      begin_offset: 6491
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminsterabbey london westminster abbey"
  type: LOCATION
  salience: 8.547463221475482e-05
  mentions {
    text {
      content: "westminsterabbey london westminster abbey"
      begin_offset: 17619
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey"
  type: ORGANIZATION
  salience: 8.547463221475482e-05
  mentions {
    text {
      content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminster abbey"
      begin_offset: 17480
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "someone"
  type: PERSON
  salience: 8.526562305632979e-05
  mentions {
    text {
      content: "someone"
      begin_offset: 8844
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "think"
  type: PERSON
  salience: 8.52551675052382e-05
  mentions {
    text {
      content: "think"
      begin_offset: 25121
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 8.521787822246552e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 36924
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 8.500753756379709e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 43933
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 8.4961015090812e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 47160
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "shots"
  type: WORK_OF_ART
  salience: 8.474406058667228e-05
  mentions {
    text {
      content: "shots"
      begin_offset: 15601
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "southbank"
  type: LOCATION
  salience: 8.471582259517163e-05
  mentions {
    text {
      content: "southbank"
      begin_offset: 12733
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "handful installations"
  type: OTHER
  salience: 8.442311809631065e-05
  mentions {
    text {
      content: "handful installations"
      begin_offset: 106659
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "shopping guide"
  type: WORK_OF_ART
  salience: 8.424143743468449e-05
  mentions {
    text {
      content: "shopping guide"
      begin_offset: 9898
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "someone"
  type: PERSON
  salience: 8.41912769828923e-05
  mentions {
    text {
      content: "someone"
      begin_offset: 28309
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "streets buildings"
  type: LOCATION
  salience: 8.40275315567851e-05
  mentions {
    text {
      content: "streets buildings"
      begin_offset: 34698
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "streets buildings"
      begin_offset: 36118
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 8.386150875594467e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 48611
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.353068551514298e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 34628
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 8.353068551514298e-05
  mentions {
    text {
      content: "light"
      begin_offset: 34749
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "festival light"
  type: OTHER
  salience: 8.34719103295356e-05
  mentions {
    text {
      content: "festival light"
      begin_offset: 35615
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 8.340177737409249e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 15101
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.336367318406701e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 40499
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "check lights"
  type: OTHER
  salience: 8.336367318406701e-05
  mentions {
    text {
      content: "check  lights"
      begin_offset: 40197
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.331359276780859e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 43446
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust legacy"
  type: OTHER
  salience: 8.328088733833283e-05
  mentions {
    text {
      content: "aichoketrust legacy"
      begin_offset: 17826
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.326587703777477e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 44022
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.322030771523714e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 46830
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 8.322030771523714e-05
  mentions {
    text {
      content: "light"
      begin_offset: 46349
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.322030771523714e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 46457
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "night lights"
  type: OTHER
  salience: 8.313489524880424e-05
  mentions {
    text {
      content: "night  lights"
      begin_offset: 50279
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "residents"
  type: PERSON
  salience: 8.309887925861403e-05
  mentions {
    text {
      content: "residents"
      begin_offset: 63109
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "residents"
      begin_offset: 85525
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.309474651468918e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 53158
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "victoriabid"
  type: PERSON
  salience: 8.304161747219041e-05
  mentions {
    text {
      content: "victoriabid"
      begin_offset: 2601
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.301894558826461e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 55924
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 8.301894558826461e-05
  mentions {
    text {
      content: "light"
      begin_offset: 57105
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.301894558826461e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 56303
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "check lights"
  type: OTHER
  salience: 8.298307511722669e-05
  mentions {
    text {
      content: "check  lights"
      begin_offset: 57592
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 8.298307511722669e-05
  mentions {
    text {
      content: "light"
      begin_offset: 57934
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "amp light"
  type: OTHER
  salience: 8.294843428302556e-05
  mentions {
    text {
      content: "amp light"
      begin_offset: 60406
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.294843428302556e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 61381
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "amp light"
  type: OTHER
  salience: 8.294843428302556e-05
  mentions {
    text {
      content: "amp light"
      begin_offset: 61139
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amp light"
  type: OTHER
  salience: 8.294843428302556e-05
  mentions {
    text {
      content: "amp light"
      begin_offset: 61251
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "sound amp light"
  type: OTHER
  salience: 8.294843428302556e-05
  mentions {
    text {
      content: "sound amp light"
      begin_offset: 60867
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.291495032608509e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 63294
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.291495032608509e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 62379
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 8.28825359349139e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 64981
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 8.28825359349139e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 64187
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 8.276679000118747e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 9163
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "regent street check"
  type: OTHER
  salience: 8.248549420386553e-05
  mentions {
    text {
      content: "regent street check"
      begin_offset: 131437
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "regent street check"
      begin_offset: 137082
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "world"
  type: OTHER
  salience: 8.221692405641079e-05
  mentions {
    text {
      content: "world"
      begin_offset: 25140
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 8.214192348532379e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 28504
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 8.172392699634656e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 28243
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "spell stpancrasint planning"
  type: OTHER
  salience: 8.122133294818923e-05
  mentions {
    text {
      content: "spell   stpancrasint planning"
      begin_offset: 7845
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "care"
  type: OTHER
  salience: 8.090637857094407e-05
  mentions {
    text {
      content: "care"
      begin_offset: 32697
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "plan"
  type: OTHER
  salience: 8.081676787696779e-05
  mentions {
    text {
      content: "plan"
      begin_offset: 11847
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "stewards"
  type: PERSON
  salience: 8.019858069019392e-05
  mentions {
    text {
      content: "stewards"
      begin_offset: 51966
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "stewards"
      begin_offset: 57036
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "stewards"
      begin_offset: 59724
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "check pieces"
  type: OTHER
  salience: 8.012982289073989e-05
  mentions {
    text {
      content: "check pieces"
      begin_offset: 24523
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 7.956555782584473e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 144629
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light festival"
  type: EVENT
  salience: 7.952713349368423e-05
  mentions {
    text {
      content: "light festival"
      begin_offset: 151194
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "check promenade south park"
  type: LOCATION
  salience: 7.916954200481996e-05
  mentions {
    text {
      content: "check promenade south park"
      begin_offset: 5174
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 7.908207044238225e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 21006
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 7.908207044238225e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 22236
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "instillations"
  type: OTHER
  salience: 7.896927854744717e-05
  mentions {
    text {
      content: "instillations"
      begin_offset: 64339
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colour"
  type: OTHER
  salience: 7.894131704233587e-05
  mentions {
    text {
      content: "colour"
      begin_offset: 116803
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "colour"
      begin_offset: 152563
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon"
  type: ORGANIZATION
  salience: 7.893941074144095e-05
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon"
      begin_offset: 80782
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "aichoketrust  southbanklondon"
      begin_offset: 137584
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance feature gallery"
      begin_offset: 137561
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pa neon sculpture"
  type: OTHER
  salience: 7.878057658672333e-05
  mentions {
    text {
      content: "pa  neon sculpture"
      begin_offset: 29967
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "pa neon sculpture"
  type: OTHER
  salience: 7.871798152336851e-05
  mentions {
    text {
      content: "pa  neon sculpture"
      begin_offset: 31916
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "image"
  type: WORK_OF_ART
  salience: 7.867304520914331e-05
  mentions {
    text {
      content: "image"
      begin_offset: 8947
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "tuesdaythoughts"
  type: OTHER
  salience: 7.846068911021575e-05
  mentions {
    text {
      content: "tuesdaythoughts"
      begin_offset: 3779
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si \303\250 conclusa ed \303\250 stata semplicemente meravigliosa ecco alcune foto di leicester square"
  type: LOCATION
  salience: 7.821863982826471e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag la seconda edizione di lumiere london si \303\250 conclusa ed \303\250 stata semplicemente meravigliosa ecco alcune foto di leicester square"
      begin_offset: 20457
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "human biology"
  type: OTHER
  salience: 7.816474681021646e-05
  mentions {
    text {
      content: "human biology"
      begin_offset: 1565
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "frogs amp toad"
  type: OTHER
  salience: 7.816474681021646e-05
  mentions {
    text {
      content: "frogs amp toad"
      begin_offset: 991
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "freedom panorama"
  type: OTHER
  salience: 7.816474681021646e-05
  mentions {
    text {
      content: "freedom panorama"
      begin_offset: 1402
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "shitshow"
  type: EVENT
  salience: 7.816474681021646e-05
  mentions {
    text {
      content: "shitshow"
      begin_offset: 756
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aist daan roosegaarde"
  type: PERSON
  salience: 7.803994958521798e-05
  mentions {
    text {
      content: "aist daan roosegaarde"
      begin_offset: 242
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "daan roosegaarde"
      begin_offset: 52882
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "daan roosegaarde"
      begin_offset: 69275
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 7.796330464771017e-05
  mentions {
    text {
      content: "light"
      begin_offset: 62302
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "check promenade south park"
  type: LOCATION
  salience: 7.76157685322687e-05
  mentions {
    text {
      content: "check promenade south park"
      begin_offset: 30751
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 7.742268644506112e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 33406
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 70214
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "park"
  type: LOCATION
  salience: 7.724334136582911e-05
  mentions {
    text {
      content: "park"
      begin_offset: 5753
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival light"
  type: OTHER
  salience: 7.714016828685999e-05
  mentions {
    text {
      content: "festival light"
      begin_offset: 55010
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hope"
  type: OTHER
  salience: 7.705643656663597e-05
  mentions {
    text {
      content: "hope"
      begin_offset: 3643
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 7.704009476583451e-05
  mentions {
    text {
      content: "works"
      begin_offset: 36461
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon"
  type: OTHER
  salience: 7.697518594795838e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 43585
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "redbridge"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0nd94"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/London_Borough_of_Redbridge"
  }
  salience: 7.672298670513555e-05
  mentions {
    text {
      content: "redbridge"
      begin_offset: 16500
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "redbridge"
      begin_offset: 23003
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "redbridge"
      begin_offset: 75383
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "redbridge"
      begin_offset: 75539
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.5
  }
}
entities {
  name: "londongramer"
  type: PERSON
  salience: 7.654989167349413e-05
  mentions {
    text {
      content: "londongramer"
      begin_offset: 98356
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "umbrellas"
  type: OTHER
  salience: 7.619177631568164e-05
  mentions {
    text {
      content: "umbrellas"
      begin_offset: 8445
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "fun"
  type: OTHER
  salience: 7.594149064971134e-05
  mentions {
    text {
      content: "fun"
      begin_offset: 58795
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "fun"
      begin_offset: 101892
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "violets"
  type: OTHER
  salience: 7.593997725052759e-05
  mentions {
    text {
      content: "violets"
      begin_offset: 35375
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "violets"
      begin_offset: 38801
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "windows"
  type: OTHER
  salience: 7.5752024713438e-05
  mentions {
    text {
      content: "windows"
      begin_offset: 14608
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "southbanklondon"
  type: PERSON
  salience: 7.561121310573071e-05
  mentions {
    text {
      content: "southbanklondon"
      begin_offset: 47581
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 7.554829790024087e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 100991
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "umbrellas"
  type: CONSUMER_GOOD
  salience: 7.537469355156645e-05
  mentions {
    text {
      content: "umbrellas"
      begin_offset: 23605
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.483390800189227e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 34963
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.473146979464218e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 39078
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.459666085196659e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 43644
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.20000000298023224
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.451677083736286e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 47602
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 7.444334914907813e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 51750
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.437543536070734e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 56490
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.437543536070734e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 56378
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 7.43432974559255e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 58759
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "light show"
  type: WORK_OF_ART
  salience: 7.433823338942602e-05
  mentions {
    text {
      content: "light show"
      begin_offset: 23634
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 7.433588325511664e-05
  mentions {
    text {
      content: "work"
      begin_offset: 10442
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 59940
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 61517
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 61427
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 61629
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 59812
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.20000000298023224
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 60505
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.4312265496701e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 61070
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "south bank installation"
  type: OTHER
  salience: 7.428225944750011e-05
  mentions {
    text {
      content: "south bank installation"
      begin_offset: 61799
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 7.42592237656936e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 147688
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "visit"
      begin_offset: 162998
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.42532211006619e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 65507
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 7.42532211006619e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 65030
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gin cocktails"
  type: CONSUMER_GOOD
  salience: 7.372828986262903e-05
  mentions {
    text {
      content: "gin cocktails"
      begin_offset: 7409
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 7.362983888015151e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 110856
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wabbey lumierelondon2018 visitlondon jakubkrupa"
  type: OTHER
  salience: 7.344094046857208e-05
  mentions {
    text {
      content: "wabbey lumierelondon2018  visitlondon  jakubkrupa"
      begin_offset: 104471
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "life"
      begin_offset: 104466
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "life"
      begin_offset: 106429
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "life"
      begin_offset: 108398
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "life"
      begin_offset: 109998
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon visitgreatbritain travelgram brandgreatbritain thelondonguidee"
  type: ORGANIZATION
  salience: 7.341568561969325e-05
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
      begin_offset: 71586
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
      begin_offset: 71824
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain  thelondonguidee"
      begin_offset: 72062
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
      begin_offset: 72300
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
      begin_offset: 72521
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
      begin_offset: 72742
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
      begin_offset: 72963
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon visitgreatbritain travelgram brandgreatbritain"
      begin_offset: 73184
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 3.5999999046325684
    score: -0.4000000059604645
  }
}
entities {
  name: "shots"
  type: OTHER
  salience: 7.336104317801073e-05
  mentions {
    text {
      content: "shots"
      begin_offset: 11461
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 7.319268479477614e-05
  mentions {
    text {
      content: "city"
      begin_offset: 41314
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "catch shots"
  type: OTHER
  salience: 7.310158252948895e-05
  mentions {
    text {
      content: "catch shots"
      begin_offset: 14957
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "shots"
  type: WORK_OF_ART
  salience: 7.310158252948895e-05
  mentions {
    text {
      content: "shots"
      begin_offset: 15585
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "glory"
  type: OTHER
  salience: 7.303149322979152e-05
  mentions {
    text {
      content: "glory"
      begin_offset: 11180
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 66757
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 79303
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 135685
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 136064
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 136974
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 140104
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 141786
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "glory"
      begin_offset: 166964
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 4.900000095367432
    score: 0.4000000059604645
  }
}
entities {
  name: "lumierelondon fun"
  type: OTHER
  salience: 7.290096255019307e-05
  mentions {
    text {
      content: "lumierelondon  fun"
      begin_offset: 18216
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 7.281544094439596e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 21460
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "sight"
  type: OTHER
  salience: 7.259949779836461e-05
  mentions {
    text {
      content: "sight"
      begin_offset: 28978
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 7.259949779836461e-05
  mentions {
    text {
      content: "buses"
      begin_offset: 27325
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "veigo visitlondon"
  type: PERSON
  salience: 7.242170249810442e-05
  mentions {
    text {
      content: "veigo   visitlondon"
      begin_offset: 40076
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumiere visitlondon"
  type: ORGANIZATION
  salience: 7.225926674436778e-05
  mentions {
    text {
      content: "lumiere  visitlondon"
      begin_offset: 48526
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon"
  type: ORGANIZATION
  salience: 7.212221680674702e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 57194
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "amp community"
  type: LOCATION
  salience: 7.211240153992549e-05
  mentions {
    text {
      content: "amp community"
      begin_offset: 9696
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "communities"
  type: PERSON
  salience: 7.195065700216219e-05
  mentions {
    text {
      content: "communities"
      begin_offset: 10242
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "jopocock nightlife"
  type: OTHER
  salience: 7.186246511992067e-05
  mentions {
    text {
      content: "jopocock nightlife"
      begin_offset: 55462
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "look"
  type: OTHER
  salience: 7.177283259807155e-05
  mentions {
    text {
      content: "look"
      begin_offset: 32707
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 7.143907714635134e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 3868
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "canon"
  type: WORK_OF_ART
  salience: 7.143907714635134e-05
  mentions {
    text {
      content: "canon"
      begin_offset: 2257
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 7.141689275158569e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 69828
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "trip"
  type: EVENT
  salience: 7.11017637513578e-05
  mentions {
    text {
      content: "trip"
      begin_offset: 84280
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "trip"
      begin_offset: 86635
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.108723366400227e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 147708
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 163018
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "worry head"
  type: OTHER
  salience: 7.083182572387159e-05
  mentions {
    text {
      content: "worry head"
      begin_offset: 6780
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "canon"
  type: PERSON
  salience: 7.083182572387159e-05
  mentions {
    text {
      content: "canon"
      begin_offset: 6576
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon"
  type: EVENT
  salience: 7.036744500510395e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 57305
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.027843093965203e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 37475
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.018729957053438e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 41487
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.014513539616019e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 41759
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.010495755821466e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 45098
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 7.006659143371508e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 47514
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "areas"
  type: LOCATION
  salience: 7.003699283814058e-05
  mentions {
    text {
      content: "areas"
      begin_offset: 18254
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 6.999467586865649e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 50320
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 6.999467586865649e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 51169
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 6.996087176958099e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 51826
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 6.992836279096082e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53431
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fitzrovia area"
  type: LOCATION
  salience: 6.987990491325036e-05
  mentions {
    text {
      content: "fitzrovia area"
      begin_offset: 22614
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "circus visit website"
  type: OTHER
  salience: 6.987813685555011e-05
  mentions {
    text {
      content: "circus visit website"
      begin_offset: 2196
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "world bubble"
  type: OTHER
  salience: 6.987813685555011e-05
  mentions {
    text {
      content: "world bubble"
      begin_offset: 2156
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "weekend festival"
  type: EVENT
  salience: 6.985137588344514e-05
  mentions {
    text {
      content: "weekend  festival"
      begin_offset: 37133
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust amp"
  type: PERSON
  salience: 6.964720523683354e-05
  mentions {
    text {
      content: "aichoketrust amp"
      begin_offset: 39603
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cirquebijou amp"
  type: OTHER
  salience: 6.964720523683354e-05
  mentions {
    text {
      content: "cirquebijou amp"
      begin_offset: 40979
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 6.956550350878388e-05
  mentions {
    text {
      content: "westend amp"
      begin_offset: 43702
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 6.952742842258886e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 45717
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 6.952742842258886e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 46237
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "cirquebijou amp"
  type: PERSON
  salience: 6.952742842258886e-05
  mentions {
    text {
      content: "cirquebijou amp"
      begin_offset: 45981
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 6.942252366570756e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 52343
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 6.939236482139677e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 36899
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "amp"
  type: CONSUMER_GOOD
  salience: 6.93591937306337e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 55368
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 6.932922406122088e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 58250
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 6.930133531568572e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 109075
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 112942
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 6.927230424480513e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 63062
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "cirquebijou amp"
  type: OTHER
  salience: 6.927230424480513e-05
  mentions {
    text {
      content: "cirquebijou amp"
      begin_offset: 62668
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "cirquebijou amp"
  type: OTHER
  salience: 6.927230424480513e-05
  mentions {
    text {
      content: "cirquebijou amp"
      begin_offset: 62041
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "cirquebijou amp"
  type: OTHER
  salience: 6.927230424480513e-05
  mentions {
    text {
      content: "cirquebijou amp"
      begin_offset: 63516
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "purple rain amp"
  type: OTHER
  salience: 6.924522313056514e-05
  mentions {
    text {
      content: "purple rain amp"
      begin_offset: 64118
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 6.918319559190422e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 47135
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "wabbey westminsterabbey"
  type: PERSON
  salience: 6.880988803459331e-05
  mentions {
    text {
      content: "wabbey westminsterabbey"
      begin_offset: 17720
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "wabbey westminsterabbey"
      begin_offset: 25970
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "evening lots"
  type: LOCATION
  salience: 6.8633773480542e-05
  mentions {
    text {
      content: "evening  lots"
      begin_offset: 12250
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lots"
  type: OTHER
  salience: 6.8633773480542e-05
  mentions {
    text {
      content: "lots"
      begin_offset: 14040
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video website"
  type: OTHER
  salience: 6.850668432889506e-05
  mentions {
    text {
      content: "video website"
      begin_offset: 19069
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "instagram sneequaye london"
  type: ORGANIZATION
  salience: 6.833217048551887e-05
  mentions {
    text {
      content: "instagram sneequaye london"
      begin_offset: 50079
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "instagram sneequaye london"
      begin_offset: 49918
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "instagram sneequaye london"
      begin_offset: 49751
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.7999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "lightinstallation landscape"
  type: OTHER
  salience: 6.82394384057261e-05
  mentions {
    text {
      content: "lightinstallation landscape"
      begin_offset: 2263
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon dot"
  type: OTHER
  salience: 6.811127968830988e-05
  mentions {
    text {
      content: "visitlondon dot"
      begin_offset: 32466
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "soho"
  type: LOCATION
  salience: 6.80423472658731e-05
  mentions {
    text {
      content: "soho"
      begin_offset: 102174
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "soho"
      begin_offset: 102903
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "flower"
  type: OTHER
  salience: 6.789952021790668e-05
  mentions {
    text {
      content: "flower"
      begin_offset: 4272
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "wabbey westminsterabbey"
  type: PERSON
  salience: 6.772725464543328e-05
  mentions {
    text {
      content: "wabbey westminsterabbey"
      begin_offset: 23427
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "wabbey westminsterabbey"
      begin_offset: 67558
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "photos festival"
  type: EVENT
  salience: 6.73176473355852e-05
  mentions {
    text {
      content: "photos festival"
      begin_offset: 37210
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.727283471263945e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 39277
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "qpark_uk light festival"
  type: EVENT
  salience: 6.718996883137152e-05
  mentions {
    text {
      content: "qpark_uk  light festival"
      begin_offset: 42486
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "light festival"
  type: EVENT
  salience: 6.718996883137152e-05
  mentions {
    text {
      content: "light festival"
      begin_offset: 43390
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "chinese lantern festival"
  type: EVENT
  salience: 6.718996883137152e-05
  mentions {
    text {
      content: "chinese lantern festival"
      begin_offset: 42288
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lighting festival"
  type: EVENT
  salience: 6.718996883137152e-05
  mentions {
    text {
      content: "lighting festival"
      begin_offset: 42434
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.718996883137152e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 42205
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.715147901559249e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 44930
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.707955617457628e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 48857
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.707955617457628e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 47672
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "blog post"
  type: WORK_OF_ART
  salience: 6.698700599372387e-05
  mentions {
    text {
      content: "blog post"
      begin_offset: 17909
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "blog post"
  type: WORK_OF_ART
  salience: 6.698700599372387e-05
  mentions {
    text {
      content: "blog post"
      begin_offset: 17764
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "henley festival"
  type: EVENT
  salience: 6.695232877973467e-05
  mentions {
    text {
      content: "henley festival"
      begin_offset: 55346
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.695232877973467e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 56560
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.695232877973467e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 56448
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.692339957226068e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 59250
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.692339957226068e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 59166
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "la la land"
  type: LOCATION
  salience: 6.690013833576813e-05
  mentions {
    text {
      content: "la la land"
      begin_offset: 18888
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.689545989502221e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 61587
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.689545989502221e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 60575
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.686845154035836e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 61699
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.686845154035836e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 61869
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "life"
  type: OTHER
  salience: 6.662348459940404e-05
  mentions {
    text {
      content: "life"
      begin_offset: 28761
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "sounds"
  type: OTHER
  salience: 6.651264266110957e-05
  mentions {
    text {
      content: "sounds"
      begin_offset: 1914
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 6.651264266110957e-05
  mentions {
    text {
      content: "weather"
      begin_offset: 3505
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "order prints"
  type: OTHER
  salience: 6.651264266110957e-05
  mentions {
    text {
      content: "order prints"
      begin_offset: 2221
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cou use"
  type: OTHER
  salience: 6.618133193114772e-05
  mentions {
    text {
      content: "cou use"
      begin_offset: 5802
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "centre"
  type: OTHER
  salience: 6.617612234549597e-05
  mentions {
    text {
      content: "centre"
      begin_offset: 64419
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "centre"
      begin_offset: 108526
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 6.594725709874183e-05
  mentions {
    text {
      content: "weather"
      begin_offset: 7627
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp space"
  type: OTHER
  salience: 6.561876216437668e-05
  mentions {
    text {
      content: "amp space"
      begin_offset: 11971
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "flower"
  type: OTHER
  salience: 6.543657946167514e-05
  mentions {
    text {
      content: "flower"
      begin_offset: 5444
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "jacob ladder"
  type: PERSON
  salience: 6.538668094435707e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 14227
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "check promenade"
  type: OTHER
  salience: 6.538668094435707e-05
  mentions {
    text {
      content: "check promenade"
      begin_offset: 16032
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spaces"
  type: LOCATION
  salience: 6.538668094435707e-05
  mentions {
    text {
      content: "spaces"
      begin_offset: 14731
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sound"
  type: OTHER
  salience: 6.538668094435707e-05
  mentions {
    text {
      content: "sound"
      begin_offset: 14789
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "ladder"
  type: OTHER
  salience: 6.538668094435707e-05
  mentions {
    text {
      content: "ladder"
      begin_offset: 14329
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "kids"
  type: PERSON
  salience: 6.535153806908056e-05
  mentions {
    text {
      content: "kids"
      begin_offset: 14420
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "justice"
  type: OTHER
  salience: 6.52918970445171e-05
  mentions {
    text {
      content: "justice"
      begin_offset: 16866
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "love london lumiere london"
  type: LOCATION
  salience: 6.520939496112987e-05
  mentions {
    text {
      content: "love london  lumiere london"
      begin_offset: 98953
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "londoners"
  type: PERSON
  salience: 6.517965084640309e-05
  mentions {
    text {
      content: "londoners"
      begin_offset: 104277
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "producer director cameraman promo coaching music video london"
  type: PERSON
  salience: 6.517965084640309e-05
  mentions {
    text {
      content: "producer director cameraman promo coaching music video london"
      begin_offset: 103425
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon london"
  type: LOCATION
  salience: 6.51651862426661e-05
  mentions {
    text {
      content: "lumierelondon  london"
      begin_offset: 104697
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 6.515098357340321e-05
  mentions {
    text {
      content: "london"
      begin_offset: 108292
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "doorways"
  type: OTHER
  salience: 6.514555570902303e-05
  mentions {
    text {
      content: "doorways"
      begin_offset: 28724
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "subject methinks london"
  type: ORGANIZATION
  salience: 6.512332038255408e-05
  mentions {
    text {
      content: "subject methinks london"
      begin_offset: 112235
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "evening london"
  type: LOCATION
  salience: 6.5109838033095e-05
  mentions {
    text {
      content: "evening london"
      begin_offset: 113282
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "candy floss candyfloss london"
  type: LOCATION
  salience: 6.5109838033095e-05
  mentions {
    text {
      content: "candy floss candyfloss london"
      begin_offset: 114434
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "work light"
  type: OTHER
  salience: 6.507118814624846e-05
  mentions {
    text {
      content: "work light"
      begin_offset: 116104
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "streets london"
  type: LOCATION
  salience: 6.507072976091877e-05
  mentions {
    text {
      content: "streets london"
      begin_offset: 119398
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "success aichoketrust"
  type: OTHER
  salience: 6.49449648335576e-05
  mentions {
    text {
      content: "success  aichoketrust"
      begin_offset: 35803
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "montage"
  type: OTHER
  salience: 6.49375724606216e-05
  mentions {
    text {
      content: "montage"
      begin_offset: 27171
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "london lumiere"
  type: PERSON
  salience: 6.48986897431314e-05
  mentions {
    text {
      content: "london lumiere"
      begin_offset: 102639
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "mickfusion"
  type: OTHER
  salience: 6.488242070190609e-05
  mentions {
    text {
      content: "mickfusion"
      begin_offset: 31320
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonisopen"
  type: PERSON
  salience: 6.48127097520046e-05
  mentions {
    text {
      content: "londonisopen"
      begin_offset: 65631
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "king cross london"
  type: LOCATION
  salience: 6.467567436629906e-05
  mentions {
    text {
      content: "king cross london"
      begin_offset: 75340
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "king cross london"
  type: LOCATION
  salience: 6.467567436629906e-05
  mentions {
    text {
      content: "king cross london"
      begin_offset: 75496
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "producer director cameraman promo coaching music video london"
  type: PERSON
  salience: 6.463483441621065e-05
  mentions {
    text {
      content: "producer director cameraman promo coaching music video london"
      begin_offset: 78990
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "video lumiere london"
  type: OTHER
  salience: 6.459600263042375e-05
  mentions {
    text {
      content: "video lumiere london"
      begin_offset: 82116
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "aichoketrust"
  type: PERSON
  salience: 6.456461414927617e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 57661
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 6.452778325183317e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 51940
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 6.446891347877681e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 57010
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 6.441415462177247e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 59698
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 6.414420204237103e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 1902
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 6.390213093254715e-05
  mentions {
    text {
      content: "event"
      begin_offset: 35018
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "parking event"
  type: EVENT
  salience: 6.373604264808819e-05
  mentions {
    text {
      content: "parking event"
      begin_offset: 42523
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "performance event"
  type: EVENT
  salience: 6.373604264808819e-05
  mentions {
    text {
      content: "performance event"
      begin_offset: 42467
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "rates"
  type: OTHER
  salience: 6.368164758896455e-05
  mentions {
    text {
      content: "rates"
      begin_offset: 27823
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lighting london londonisopen"
  type: ORGANIZATION
  salience: 6.36377080809325e-05
  mentions {
    text {
      content: "lighting london londonisopen"
      begin_offset: 96945
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buildings"
  type: LOCATION
  salience: 6.359000690281391e-05
  mentions {
    text {
      content: "buildings"
      begin_offset: 14624
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "streets buildings"
  type: LOCATION
  salience: 6.359000690281391e-05
  mentions {
    text {
      content: "streets buildings"
      begin_offset: 14702
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 6.341548578348011e-05
  mentions {
    text {
      content: "others"
      begin_offset: 18269
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "waterloo"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/g/11b6bmjzqh"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://fr.wikipedia.org/wiki/Waterloo_Place"
  }
  salience: 6.323990965029225e-05
  mentions {
    text {
      content: "waterloo"
      begin_offset: 26206
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 64494
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 108601
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "waterloo"
      begin_offset: 121564
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 138244
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "waterloo"
      begin_offset: 144285
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 146575
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 151842
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly waterloo"
      begin_offset: 152989
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
  }
}
entities {
  name: "video amp"
  type: PERSON
  salience: 6.303568807197735e-05
  mentions {
    text {
      content: "video amp"
      begin_offset: 112870
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bottom"
  type: OTHER
  salience: 6.300731911323965e-05
  mentions {
    text {
      content: "bottom"
      begin_offset: 8919
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "mickfusion"
  type: OTHER
  salience: 6.254037725739181e-05
  mentions {
    text {
      content: "mickfusion"
      begin_offset: 2578
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colours rainbow amp"
  type: WORK_OF_ART
  salience: 6.246467091841623e-05
  mentions {
    text {
      content: "colours rainbow amp"
      begin_offset: 34208
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 6.236114859348163e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 59266
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 6.234047032194212e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 117731
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 6.21449071331881e-05
  mentions {
    text {
      content: "others"
      begin_offset: 13298
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 6.16729084867984e-05
  mentions {
    text {
      content: "others"
      begin_offset: 24953
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "saints"
  type: PERSON
  salience: 6.162616773508489e-05
  mentions {
    text {
      content: "saints"
      begin_offset: 104453
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "saints"
      begin_offset: 106416
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "saints"
      begin_offset: 108385
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "saints"
      begin_offset: 109985
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 6.145546649349853e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 16846
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "extravaganza magic"
  type: OTHER
  salience: 6.143713108031079e-05
  mentions {
    text {
      content: "extravaganza magic"
      begin_offset: 21322
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "mvpicsss"
  type: PERSON
  salience: 6.142771599115804e-05
  mentions {
    text {
      content: "mvpicsss"
      begin_offset: 26326
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "valeria_amodeo biuk"
  type: OTHER
  salience: 6.142351048765704e-05
  mentions {
    text {
      content: "biuk"
      begin_offset: 41478
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "valeria_amodeo  biuk"
      begin_offset: 44261
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "blog"
  type: OTHER
  salience: 6.137132731964812e-05
  mentions {
    text {
      content: "blog"
      begin_offset: 23533
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "extravaganza magic"
  type: OTHER
  salience: 6.131085683591664e-05
  mentions {
    text {
      content: "extravaganza magic"
      begin_offset: 26359
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 6.12549192737788e-05
  mentions {
    text {
      content: "car bus"
      begin_offset: 27235
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "light bulbs"
  type: CONSUMER_GOOD
  salience: 6.115426367614418e-05
  mentions {
    text {
      content: "light bulbs"
      begin_offset: 33224
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "story"
  type: OTHER
  salience: 6.113982817623764e-05
  mentions {
    text {
      content: "story"
      begin_offset: 10490
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon"
  type: ORGANIZATION
  salience: 6.110576941864565e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag mayoroflondon"
      begin_offset: 25447
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
      begin_offset: 25761
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "voyage installation aichoketrust piece"
  type: WORK_OF_ART
  salience: 6.088106965762563e-05
  mentions {
    text {
      content: "voyage  installation aichoketrust piece"
      begin_offset: 11909
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "prank calls lights"
  type: OTHER
  salience: 6.041204687790014e-05
  mentions {
    text {
      content: "prank calls  lights"
      begin_offset: 121127
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival public"
  type: PERSON
  salience: 5.997853440931067e-05
  mentions {
    text {
      content: "festival public"
      begin_offset: 10201
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "violence"
  type: OTHER
  salience: 5.9730497014243156e-05
  mentions {
    text {
      content: "violence"
      begin_offset: 13409
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "londonwhispers"
  type: PERSON
  salience: 5.968428376945667e-05
  mentions {
    text {
      content: "londonwhispers"
      begin_offset: 122958
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 5.967288961983286e-05
  mentions {
    text {
      content: "london"
      begin_offset: 123901
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "camillachild london"
  type: PERSON
  salience: 5.963973671896383e-05
  mentions {
    text {
      content: "camillachild london"
      begin_offset: 130138
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere london"
  type: OTHER
  salience: 5.962901559541933e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 132618
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "londoners"
  type: PERSON
  salience: 5.9608035371638834e-05
  mentions {
    text {
      content: "londoners"
      begin_offset: 135778
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 5.959776899544522e-05
  mentions {
    text {
      content: "london"
      begin_offset: 139263
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 5.959776899544522e-05
  mentions {
    text {
      content: "london"
      begin_offset: 138431
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumiere london"
  type: OTHER
  salience: 5.956781023996882e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 145253
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation light spirit london"
  type: OTHER
  salience: 5.956781023996882e-05
  mentions {
    text {
      content: "installation light spirit  london"
      begin_offset: 144957
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lighting london"
  type: OTHER
  salience: 5.954850712441839e-05
  mentions {
    text {
      content: "lighting london"
      begin_offset: 149139
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "installation light spirit london"
  type: LOCATION
  salience: 5.954850712441839e-05
  mentions {
    text {
      content: "installation light spirit  london"
      begin_offset: 148435
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lumiere london"
  type: LOCATION
  salience: 5.953904474154115e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 151344
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lumiere london"
  type: LOCATION
  salience: 5.953904474154115e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 150953
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation light spirit london"
  type: OTHER
  salience: 5.9529702411964536e-05
  mentions {
    text {
      content: "installation light spirit  london"
      begin_offset: 152336
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 5.952048013568856e-05
  mentions {
    text {
      content: "london"
      begin_offset: 154088
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation light spirit london"
  type: OTHER
  salience: 5.952048013568856e-05
  mentions {
    text {
      content: "installation light spirit  london"
      begin_offset: 154356
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 5.9468682593433186e-05
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 18799
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 5.9468682593433186e-05
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 18967
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "destinations"
  type: LOCATION
  salience: 5.939891707384959e-05
  mentions {
    text {
      content: "destinations"
      begin_offset: 22361
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 5.9276833781041205e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 25918
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "piccadilly circus"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01hc6q"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Piccadilly_Circus"
  }
  salience: 5.9190584579482675e-05
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 11993
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 40179
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 47897
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 57574
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 83275
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 131514
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 152144
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "lumierelondon regent street"
      begin_offset: 152116
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "picadilly circus"
      begin_offset: 98060
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "snaaaake  london piccadilly circus"
      begin_offset: 113632
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 125955
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "voyage"
      begin_offset: 125948
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "piccadilly circus"
      begin_offset: 129898
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "voyage"
      begin_offset: 129891
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 4.199999809265137
    score: 0.30000001192092896
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 5.917245289310813e-05
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 29117
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "human interaction"
  type: OTHER
  salience: 5.9125435655005276e-05
  mentions {
    text {
      content: "human interaction"
      begin_offset: 32148
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "human interaction"
  type: OTHER
  salience: 5.9125435655005276e-05
  mentions {
    text {
      content: "human interaction"
      begin_offset: 31331
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.9095742471981794e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 95285
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "video electricpedals"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "video electricpedals"
      begin_offset: 2526
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video electricpedals"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "video electricpedals"
      begin_offset: 2062
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "front"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "front"
      begin_offset: 2567
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "front"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "front"
      begin_offset: 3093
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video electricpedals"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "video electricpedals"
      begin_offset: 3052
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video electricpedals"
  type: OTHER
  salience: 5.841399251949042e-05
  mentions {
    text {
      content: "video electricpedals"
      begin_offset: 3144
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "director"
  type: PERSON
  salience: 5.838119614054449e-05
  mentions {
    text {
      content: "director"
      begin_offset: 120626
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "director"
      begin_offset: 138498
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "thousands"
  type: PERSON
  salience: 5.8123016060562804e-05
  mentions {
    text {
      content: "thousands"
      begin_offset: 5422
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "dismantling thousands"
  type: PERSON
  salience: 5.8123016060562804e-05
  mentions {
    text {
      content: "dismantling thousands"
      begin_offset: 4238
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "estate"
  type: LOCATION
  salience: 5.8123016060562804e-05
  mentions {
    text {
      content: "estate"
      begin_offset: 5542
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "priorconstruct lumiere london"
  type: ORGANIZATION
  salience: 5.7964549341704696e-05
  mentions {
    text {
      content: "priorconstruct lumiere london"
      begin_offset: 78154
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "priorconstruct lumiere london"
      begin_offset: 121477
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  type: ORGANIZATION
  salience: 5.795671313535422e-05
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
      begin_offset: 39957
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 65427
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon  visitlondon"
      begin_offset: 87733
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.20000000298023224
  }
}
entities {
  name: "wildlife"
  type: OTHER
  salience: 5.7628934882814065e-05
  mentions {
    text {
      content: "wildlife"
      begin_offset: 10925
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "conditions"
  type: OTHER
  salience: 5.7467255828669295e-05
  mentions {
    text {
      content: "conditions"
      begin_offset: 109525
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  mentions {
    text {
      content: "conditions"
      begin_offset: 111857
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  mentions {
    text {
      content: "conditions"
      begin_offset: 113084
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: -0.8999999761581421
    }
  }
  sentiment {
    magnitude: 2.299999952316284
    score: -0.699999988079071
  }
}
entities {
  name: "lumiere"
  type: OTHER
  salience: 5.744572990806773e-05
  mentions {
    text {
      content: "lumiere"
      begin_offset: 93592
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "field lumierelondon"
  type: PERSON
  salience: 5.7404518884141e-05
  mentions {
    text {
      content: "field  lumierelondon"
      begin_offset: 100146
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nursecommunity lumiere lumierelondon"
  type: PERSON
  salience: 5.739130574511364e-05
  mentions {
    text {
      content: "nursecommunity lumiere lumierelondon"
      begin_offset: 100520
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 5.7365607062820345e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 105179
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "neon lumierelondon"
  type: PERSON
  salience: 5.735310332966037e-05
  mentions {
    text {
      content: "neon lumierelondon"
      begin_offset: 107227
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumierelondon"
  type: OTHER
  salience: 5.734081787522882e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 110179
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "london lumierelondon"
  type: PERSON
  salience: 5.731687997467816e-05
  mentions {
    text {
      content: "london lumierelondon"
      begin_offset: 114215
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights darkness visitlondon london london lumiere"
  type: ORGANIZATION
  salience: 5.729373879148625e-05
  mentions {
    text {
      content: "lights darkness  visitlondon london  london lumiere"
      begin_offset: 117616
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london"
  type: PERSON
  salience: 5.7228771765949205e-05
  mentions {
    text {
      content: "londonnpc wildlondon ramblers_london entre les rangs rami bebawi lumiere london"
      begin_offset: 35025
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature westminsterabbey london londonlife lovelondon londoners"
  type: PERSON
  salience: 5.7228771765949205e-05
  mentions {
    text {
      content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  westminsterabbey london londonlife lovelondon londoners"
      begin_offset: 33999
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon londontheinside"
  type: OTHER
  salience: 5.7150427892338485e-05
  mentions {
    text {
      content: "lumierelondon  londontheinside"
      begin_offset: 38078
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london"
  type: LOCATION
  salience: 5.7080025726463646e-05
  mentions {
    text {
      content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust flamingos london"
      begin_offset: 41952
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "song"
  type: WORK_OF_ART
  salience: 5.7030676543945447e-05
  mentions {
    text {
      content: "song"
      begin_offset: 28153
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 5.699236862710677e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 70397
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "presenter freelancer"
  type: OTHER
  salience: 5.698223685612902e-05
  mentions {
    text {
      content: "presenter freelancer"
      begin_offset: 30259
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london"
  type: ORGANIZATION
  salience: 5.695758591173217e-05
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 lumiere london"
      begin_offset: 50445
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "visitlondon timeoutlondon londonist london ldn londoneye"
  type: ORGANIZATION
  salience: 5.695758591173217e-05
  mentions {
    text {
      content: "visitlondon timeoutlondon londonist london ldn londoneye"
      begin_offset: 50159
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "thousands"
  type: PERSON
  salience: 5.6936962209874764e-05
  mentions {
    text {
      content: "thousands"
      begin_offset: 32276
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "electricpedals"
  type: OTHER
  salience: 5.6936962209874764e-05
  mentions {
    text {
      content: "electricpedals"
      begin_offset: 31743
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon londonlife"
  type: OTHER
  salience: 5.6930079153971747e-05
  mentions {
    text {
      content: "lumierelondon londonlife"
      begin_offset: 51780
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation lumiere"
  type: OTHER
  salience: 5.688141391146928e-05
  mentions {
    text {
      content: "installation  lumiere"
      begin_offset: 79456
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon"
  type: ORGANIZATION
  salience: 5.686453732778318e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 81754
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "adventuresofjellie jellie lumiere granarysquare kingscross london"
  type: LOCATION
  salience: 5.682983100996353e-05
  mentions {
    text {
      content: "adventuresofjellie jellie lumiere  granarysquare kingscross london"
      begin_offset: 61285
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere adventuresofjellie jellie lumiere granarysquare kingscross london lumiere adventuresofjellie jellie lumiere granarysquare kingscross london"
  type: ORGANIZATION
  salience: 5.680688263964839e-05
  mentions {
    text {
      content: "lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london lumiere adventuresofjellie jellie lumiere  granarysquare kingscross london"
      begin_offset: 62395
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon visitlondon london"
  type: LOCATION
  salience: 5.6784676417009905e-05
  mentions {
    text {
      content: "lumierelondon  visitlondon london"
      begin_offset: 65233
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photograph fish phone box badger lumierelondon"
  type: CONSUMER_GOOD
  salience: 5.6771092204144225e-05
  mentions {
    text {
      content: "photograph fish phone box  badger  lumierelondon"
      begin_offset: 90825
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "expectations"
  type: OTHER
  salience: 5.657404472003691e-05
  mentions {
    text {
      content: "expectations"
      begin_offset: 45639
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon2018 lights"
  type: OTHER
  salience: 5.621536911348812e-05
  mentions {
    text {
      content: "lumierelondon2018 lights"
      begin_offset: 102113
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "southbank lights"
  type: OTHER
  salience: 5.621536911348812e-05
  mentions {
    text {
      content: "southbank lights"
      begin_offset: 102190
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.620266529149376e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 102860
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "selfie hatmanoflondon wave pa lighting"
  type: WORK_OF_ART
  salience: 5.620266529149376e-05
  mentions {
    text {
      content: "selfie hatmanoflondon wave pa  lighting"
      begin_offset: 103992
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "southbank lights"
  type: OTHER
  salience: 5.620266529149376e-05
  mentions {
    text {
      content: "southbank lights"
      begin_offset: 102919
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "image lights"
  type: OTHER
  salience: 5.619019430014305e-05
  mentions {
    text {
      content: "image lights"
      begin_offset: 104659
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.619019430014305e-05
  mentions {
    text {
      content: "light"
      begin_offset: 106590
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
  }
}
entities {
  name: "estates"
  type: LOCATION
  salience: 5.6185348512372e-05
  mentions {
    text {
      content: "estates"
      begin_offset: 131481
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "estates"
      begin_offset: 137126
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.6165918067563325e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 109469
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.6165918067563325e-05
  mentions {
    text {
      content: "light"
      begin_offset: 110674
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.615409099846147e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 111266
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.615409099846147e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 112671
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "spirit festival lights"
  type: OTHER
  salience: 5.615409099846147e-05
  mentions {
    text {
      content: "spirit festival lights"
      begin_offset: 111016
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.614247129415162e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 112886
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lighting"
  type: OTHER
  salience: 5.613104076473974e-05
  mentions {
    text {
      content: "lighting"
      begin_offset: 116794
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "neon lights"
  type: OTHER
  salience: 5.611980304820463e-05
  mentions {
    text {
      content: "neon lights"
      begin_offset: 118455
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "nohern lights"
  type: OTHER
  salience: 5.611980304820463e-05
  mentions {
    text {
      content: "nohern lights"
      begin_offset: 118961
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.611980304820463e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 118860
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mattcooperphoto letsyogalondon regram southbanklondon"
  type: ORGANIZATION
  salience: 5.6070952268783e-05
  mentions {
    text {
      content: "mattcooperphoto letsyogalondon regram  southbanklondon"
      begin_offset: 5235
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "night aichoketrust"
  type: PERSON
  salience: 5.599356154561974e-05
  mentions {
    text {
      content: "night aichoketrust"
      begin_offset: 96051
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "gallery"
  type: LOCATION
  salience: 5.596888513537124e-05
  mentions {
    text {
      content: "gallery"
      begin_offset: 2026
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust timeouta londongramer timeoutlondon"
  type: PERSON
  salience: 5.587263876805082e-05
  mentions {
    text {
      content: "aichoketrust timeouta londongramer timeoutlondon"
      begin_offset: 6723
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "blue light"
  type: OTHER
  salience: 5.5865075410110876e-05
  mentions {
    text {
      content: "blue light"
      begin_offset: 67247
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "blue light"
  type: OTHER
  salience: 5.5865075410110876e-05
  mentions {
    text {
      content: "blue light"
      begin_offset: 66562
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.582460653386079e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 70469
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.582460653386079e-05
  mentions {
    text {
      content: "light"
      begin_offset: 69684
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "estate"
  type: LOCATION
  salience: 5.581652658293024e-05
  mentions {
    text {
      content: "estate"
      begin_offset: 7683
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "estate"
  type: LOCATION
  salience: 5.581652658293024e-05
  mentions {
    text {
      content: "estate"
      begin_offset: 7073
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.580524157267064e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 73283
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.575025352300145e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 76592
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.573287126026116e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 79228
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.573287126026116e-05
  mentions {
    text {
      content: "light"
      begin_offset: 77757
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "neon lights"
  type: OTHER
  salience: 5.571592555497773e-05
  mentions {
    text {
      content: "neon lights"
      begin_offset: 79587
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.571592555497773e-05
  mentions {
    text {
      content: "light"
      begin_offset: 79989
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lightning"
  type: OTHER
  salience: 5.571592555497773e-05
  mentions {
    text {
      content: "lightning"
      begin_offset: 80739
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "eye"
  type: OTHER
  salience: 5.569008499151096e-05
  mentions {
    text {
      content: "eye"
      begin_offset: 4569
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "southbank lights"
  type: OTHER
  salience: 5.568325286731124e-05
  mentions {
    text {
      content: "southbank lights"
      begin_offset: 83110
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon2018 lights"
  type: OTHER
  salience: 5.568325286731124e-05
  mentions {
    text {
      content: "lumierelondon2018 lights"
      begin_offset: 83033
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lightbulbs"
  type: OTHER
  salience: 5.568325286731124e-05
  mentions {
    text {
      content: "lightbulbs"
      begin_offset: 84064
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.568325286731124e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 83328
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "heaven light"
  type: OTHER
  salience: 5.568325286731124e-05
  mentions {
    text {
      content: "heaven light"
      begin_offset: 83524
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.5667485867161304e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 85640
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.562228398048319e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 89736
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "poion lumierelondon lights"
  type: OTHER
  salience: 5.562228398048319e-05
  mentions {
    text {
      content: "poion  lumierelondon lights"
      begin_offset: 89932
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "timeoutlondon gin"
  type: OTHER
  salience: 5.549311390495859e-05
  mentions {
    text {
      content: "timeoutlondon gin"
      begin_offset: 7371
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival engcathedrals"
  type: PERSON
  salience: 5.5420354328816757e-05
  mentions {
    text {
      content: "festival  engcathedrals"
      begin_offset: 23398
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "amp"
  type: CONSUMER_GOOD
  salience: 5.5291351600317284e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 82465
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: PERSON
  salience: 5.5291351600317284e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 82341
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "barkingsideac"
  type: OTHER
  salience: 5.494162905961275e-05
  mentions {
    text {
      content: "barkingsideac"
      begin_offset: 16413
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "dials"
  type: OTHER
  salience: 5.494162905961275e-05
  mentions {
    text {
      content: "dials"
      begin_offset: 18139
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.484756184159778e-05
  mentions {
    text {
      content: "light"
      begin_offset: 102505
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 5.4830470617162064e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 43518
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "polychrome"
  type: OTHER
  salience: 5.480600884766318e-05
  mentions {
    text {
      content: "polychrome"
      begin_offset: 21124
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "anyone"
  type: PERSON
  salience: 5.474730642163195e-05
  mentions {
    text {
      content: "anyone"
      begin_offset: 23336
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "barkingsideac"
  type: OTHER
  salience: 5.474730642163195e-05
  mentions {
    text {
      content: "barkingsideac"
      begin_offset: 22916
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "anyone"
  type: PERSON
  salience: 5.474730642163195e-05
  mentions {
    text {
      content: "anyone"
      begin_offset: 23717
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "fill light"
  type: OTHER
  salience: 5.4702039051335305e-05
  mentions {
    text {
      content: "fill light"
      begin_offset: 128653
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "round"
  type: EVENT
  salience: 5.469336247188039e-05
  mentions {
    text {
      content: "round"
      begin_offset: 25944
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hurry"
  type: OTHER
  salience: 5.464346395456232e-05
  mentions {
    text {
      content: "hurry"
      begin_offset: 27628
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "river quality"
  type: OTHER
  salience: 5.462670742417686e-05
  mentions {
    text {
      content: "river quality"
      begin_offset: 67261
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "river quality"
      begin_offset: 123387
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "repoer presenter freelancer repo"
  type: OTHER
  salience: 5.4597050620941445e-05
  mentions {
    text {
      content: "repoer presenter freelancer repo"
      begin_offset: 30513
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "repo"
  type: OTHER
  salience: 5.4597050620941445e-05
  mentions {
    text {
      content: "repo"
      begin_offset: 30376
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "buses cars"
  type: OTHER
  salience: 5.4553671361645684e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 33386
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gift"
  type: OTHER
  salience: 5.4553671361645684e-05
  mentions {
    text {
      content: "gift"
      begin_offset: 33336
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon"
  type: ORGANIZATION
  salience: 5.414953193394467e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon"
      begin_offset: 24693
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon launches"
  type: OTHER
  salience: 5.3751293307868764e-05
  mentions {
    text {
      content: "lumierelondon launches"
      begin_offset: 12597
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 5.367443009163253e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 47363
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 5.3552448662230745e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 56196
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "bloomberg"
  type: ORGANIZATION
  metadata {
    key: "mid"
    value: "/m/027sm6"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Bloomberg_L.P."
  }
  salience: 5.345035970094614e-05
  mentions {
    text {
      content: "bloomberg"
      begin_offset: 9951
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "bloomberg"
      begin_offset: 41564
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chill zone"
  type: OTHER
  salience: 5.306795355863869e-05
  mentions {
    text {
      content: "chill zone"
      begin_offset: 57867
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "chill zone"
      begin_offset: 101043
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "case study events management"
  type: OTHER
  salience: 5.300782140693627e-05
  mentions {
    text {
      content: "case study events management"
      begin_offset: 4512
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 5.28336749994196e-05
  mentions {
    text {
      content: "event"
      begin_offset: 137956
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "solidarity"
  type: OTHER
  salience: 5.28203381691128e-05
  mentions {
    text {
      content: "solidarity"
      begin_offset: 7022
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pancras ipa thebetjemanarms suzystories"
  type: PERSON
  salience: 5.28203381691128e-05
  mentions {
    text {
      content: "pancras ipa thebetjemanarms  suzystories"
      begin_offset: 7948
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flickr"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/04dtx9"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Flickr"
  }
  salience: 5.277778109302744e-05
  mentions {
    text {
      content: "flickr"
      begin_offset: 1387
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "flickr"
      begin_offset: 32733
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "flickr"
      begin_offset: 37767
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "facebook page"
  type: OTHER
  salience: 5.272555790725164e-05
  mentions {
    text {
      content: "facebook page"
      begin_offset: 12011
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "southbank"
  type: LOCATION
  salience: 5.2697094361064956e-05
  mentions {
    text {
      content: "southbank"
      begin_offset: 138438
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "southbank"
      begin_offset: 168193
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 5.268604218144901e-05
  mentions {
    text {
      content: "event"
      begin_offset: 158619
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 168754
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 169286
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 169423
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "event"
      begin_offset: 169673
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.10000000149011612
  }
}
entities {
  name: "ceo"
  type: PERSON
  salience: 5.267537198960781e-05
  mentions {
    text {
      content: "ceo"
      begin_offset: 10168
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "steps"
  type: OTHER
  salience: 5.267537198960781e-05
  mentions {
    text {
      content: "steps"
      begin_offset: 9796
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "op ed"
  type: PERSON
  salience: 5.267537198960781e-05
  mentions {
    text {
      content: "op ed"
      begin_offset: 10189
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work room"
  type: LOCATION
  salience: 5.2557217713911086e-05
  mentions {
    text {
      content: "work room"
      begin_offset: 10367
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "applause lumierelondon"
  type: PERSON
  salience: 5.251097900327295e-05
  mentions {
    text {
      content: "applause lumierelondon"
      begin_offset: 128063
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 5.251097900327295e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 128781
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "bum lumierefestival"
  type: PERSON
  salience: 5.251097900327295e-05
  mentions {
    text {
      content: "bum lumierefestival"
      begin_offset: 129186
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "song lumierelondon"
  type: PERSON
  salience: 5.250139656709507e-05
  mentions {
    text {
      content: "song lumierelondon"
      begin_offset: 130292
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere lumierelondon"
  type: PERSON
  salience: 5.2491959650069475e-05
  mentions {
    text {
      content: "lumiere lumierelondon"
      begin_offset: 131804
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust lumieredub"
  type: PERSON
  salience: 5.246444925433025e-05
  mentions {
    text {
      content: "aichoketrust lumieredub"
      begin_offset: 137408
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "solidarity"
  type: OTHER
  salience: 5.245752981863916e-05
  mentions {
    text {
      content: "solidarity"
      begin_offset: 13418
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "solidarity"
  type: OTHER
  salience: 5.245752981863916e-05
  mentions {
    text {
      content: "solidarity"
      begin_offset: 13607
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "survivors"
  type: PERSON
  salience: 5.245752981863916e-05
  mentions {
    text {
      content: "survivors"
      begin_offset: 13618
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "survivors"
  type: PERSON
  salience: 5.245752981863916e-05
  mentions {
    text {
      content: "survivors"
      begin_offset: 13429
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon"
  type: ORGANIZATION
  salience: 5.2446750487433746e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 142830
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lumiere"
  type: PERSON
  salience: 5.2446750487433746e-05
  mentions {
    text {
      content: "london lumiere"
      begin_offset: 142638
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 5.242952465778217e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 146377
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "julian crowe"
  type: PERSON
  salience: 5.2202587539795786e-05
  mentions {
    text {
      content: "julian crowe"
      begin_offset: 19401
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "solidarity"
  type: OTHER
  salience: 5.2059098379686475e-05
  mentions {
    text {
      content: "solidarity"
      begin_offset: 25073
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "engcathedrals"
  type: PERSON
  salience: 5.2059098379686475e-05
  mentions {
    text {
      content: "engcathedrals"
      begin_offset: 25951
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "solidarity"
  type: OTHER
  salience: 5.2059098379686475e-05
  mentions {
    text {
      content: "solidarity"
      begin_offset: 26147
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cocktail privacy cub room"
  type: LOCATION
  salience: 5.201160456635989e-05
  mentions {
    text {
      content: "cocktail privacy cub room"
      begin_offset: 27867
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "case study events management"
  type: OTHER
  salience: 5.196742495172657e-05
  mentions {
    text {
      content: "case study events management"
      begin_offset: 29389
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "poland"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/g/11cnc90hx3"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Poland_Street"
  }
  salience: 5.189178773434833e-05
  mentions {
    text {
      content: "poland"
      begin_offset: 85114
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "poland"
      begin_offset: 131474
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "poland"
      begin_offset: 137119
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.5
    score: 0.4000000059604645
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 5.183439498068765e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 12364
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rambedance couauldgall davidward aichoketrust"
  type: ORGANIZATION
  salience: 5.1774142775684595e-05
  mentions {
    text {
      content: "rambedance couauldgall davidward aichoketrust"
      begin_offset: 56136
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "rambedance couauldgall davidward aichoketrust"
      begin_offset: 65971
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 5.17492153448984e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 15199
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "thanks"
  type: OTHER
  salience: 5.157283158041537e-05
  mentions {
    text {
      content: "thanks"
      begin_offset: 96333
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.146405237610452e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 123150
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "blue light"
  type: OTHER
  salience: 5.1454226195346564e-05
  mentions {
    text {
      content: "blue light"
      begin_offset: 123373
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.1454226195346564e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 125021
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sound amp light"
  type: OTHER
  salience: 5.144455280969851e-05
  mentions {
    text {
      content: "sound amp light"
      begin_offset: 125685
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lights darkness light light"
  type: OTHER
  salience: 5.144455280969851e-05
  mentions {
    text {
      content: "lights darkness light light"
      begin_offset: 126623
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.144455280969851e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 126018
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.144455280969851e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 126088
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival light"
  type: OTHER
  salience: 5.144455280969851e-05
  mentions {
    text {
      content: "festival light"
      begin_offset: 126415
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.1435024943202734e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 129291
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival lights lights"
  type: OTHER
  salience: 5.1425642595859244e-05
  mentions {
    text {
      content: "festival lights lights"
      begin_offset: 130424
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.141639485373162e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 132010
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.141639485373162e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 131599
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.141639485373162e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 132732
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 5.1407580031082034e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 27375
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lighta gavriiluxwarm light"
  type: OTHER
  salience: 5.140728535479866e-05
  mentions {
    text {
      content: "lighta gavriiluxwarm light"
      begin_offset: 134579
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.139830318512395e-05
  mentions {
    text {
      content: "light"
      begin_offset: 135541
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.139830318512395e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 136892
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.139830318512395e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 135819
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.1389451982686296e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 138355
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.1389451982686296e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 137812
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 5.1389451982686296e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 137842
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.1380720833549276e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 139952
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "venture question lights"
  type: OTHER
  salience: 5.13721133756917e-05
  mentions {
    text {
      content: "venture  question lights"
      begin_offset: 143188
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "venture question lights"
  type: OTHER
  salience: 5.13721133756917e-05
  mentions {
    text {
      content: "venture  question lights"
      begin_offset: 142798
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "miss lights"
  type: OTHER
  salience: 5.13721133756917e-05
  mentions {
    text {
      content: "miss  lights"
      begin_offset: 142084
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon thedroidlife ray catcher"
  type: PERSON
  salience: 5.1359158533159643e-05
  mentions {
    text {
      content: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  thedroidlife ray catcher"
      begin_offset: 32748
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.134697494213469e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 148827
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 5.1330760470591486e-05
  mentions {
    text {
      content: "light"
      begin_offset: 152017
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lighting"
  type: OTHER
  salience: 5.1330760470591486e-05
  mentions {
    text {
      content: "lighting"
      begin_offset: 152554
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "lumierelondon lighting lights"
  type: OTHER
  salience: 5.132280784891918e-05
  mentions {
    text {
      content: "lumierelondon lighting lights"
      begin_offset: 154668
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 5.132280784891918e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 153714
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 5.124398376210593e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 12212
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "names"
  type: OTHER
  salience: 5.0683695008046925e-05
  mentions {
    text {
      content: "names"
      begin_offset: 77636
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "names"
      begin_offset: 77904
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
  type: ORGANIZATION
  salience: 5.063130083726719e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
      begin_offset: 2440
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
      begin_offset: 24223
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag"
      begin_offset: 26535
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.039759707869962e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 95418
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.039759707869962e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 94977
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 3.5999999046325684
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.039759707869962e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 96088
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.038554809289053e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 97229
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp installations"
  type: WORK_OF_ART
  salience: 5.038554809289053e-05
  mentions {
    text {
      content: "amp installations"
      begin_offset: 97530
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.037372829974629e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 99609
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.037372829974629e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 100230
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.037372829974629e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 99449
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.036213042330928e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 101964
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.036213042330928e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 101856
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.036213042330928e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 100738
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "kingscross installations"
  type: OTHER
  salience: 5.036213042330928e-05
  mentions {
    text {
      content: "kingscross installations"
      begin_offset: 101125
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "jokes"
  type: OTHER
  salience: 5.036127186031081e-05
  mentions {
    text {
      content: "jokes"
      begin_offset: 2365
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.03507508256007e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 103398
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.03507508256007e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 102714
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.03507508256007e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 102511
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "events"
  type: EVENT
  salience: 5.034780042478815e-05
  mentions {
    text {
      content: "events"
      begin_offset: 127353
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "sound installation"
  type: OTHER
  salience: 5.032860644860193e-05
  mentions {
    text {
      content: "sound installation"
      begin_offset: 108095
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.032860644860193e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 106931
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 3.299999952316284
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.032860644860193e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 108003
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 3.299999952316284
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.032860644860193e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 107841
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.031782711739652e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 110363
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.031782711739652e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 110689
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.030723332311027e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 112488
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp installations"
  type: WORK_OF_ART
  salience: 5.030723332311027e-05
  mentions {
    text {
      content: "amp installations"
      begin_offset: 111122
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.030723332311027e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 112117
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.029682142776437e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 114095
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.029682142776437e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 114828
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.0286584155401215e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 115611
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.0276514230063185e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 119054
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 5.025685823056847e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 121392
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.025685823056847e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 121876
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "londonlife sessions"
  type: EVENT
  salience: 5.0251946959178895e-05
  mentions {
    text {
      content: "londonlife sessions"
      begin_offset: 2743
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "selection photos"
  type: WORK_OF_ART
  salience: 5.013783083995804e-05
  mentions {
    text {
      content: "selection photos"
      begin_offset: 37750
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 5.0106165872421116e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 40567
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.004830745747313e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 66294
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 5.004830745747313e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 66658
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "umbrellas photos"
  type: WORK_OF_ART
  salience: 5.004737977287732e-05
  mentions {
    text {
      content: "umbrellas photos"
      begin_offset: 44230
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.002990656066686e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 68080
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 3.5999999046325684
    score: 0.699999988079071
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 5.002861507819034e-05
  mentions {
    text {
      content: "city"
      begin_offset: 35590
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.20000000298023224
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 5.001998943043873e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 46711
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 5.0012047722702846e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 69652
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spirit chapter"
  type: OTHER
  salience: 5.000162127544172e-05
  mentions {
    text {
      content: "spirit chapter"
      begin_offset: 4966
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.9994698201771826e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 73314
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "print map list installations"
  type: WORK_OF_ART
  salience: 4.9945436330745e-05
  mentions {
    text {
      content: "print map list installations"
      begin_offset: 76913
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.993372203898616e-05
  mentions {
    text {
      content: "city"
      begin_offset: 41937
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.9929865781450644e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 78690
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.9929865781450644e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 78963
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lumierelondon city"
  type: LOCATION
  salience: 4.9905120249604806e-05
  mentions {
    text {
      content: "lumierelondon city"
      begin_offset: 44526
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.989987064618617e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 81452
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.9885409680427983e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 83628
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.9885409680427983e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 84175
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.987128704669885e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 85985
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photograph"
  type: WORK_OF_ART
  salience: 4.985656414646655e-05
  mentions {
    text {
      content: "photograph"
      begin_offset: 59999
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photograph"
  type: WORK_OF_ART
  salience: 4.985656414646655e-05
  mentions {
    text {
      content: "photograph"
      begin_offset: 60605
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.9843991291709244e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 87954
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "sroosegaarde installation"
  type: OTHER
  salience: 4.9830792704597116e-05
  mentions {
    text {
      content: "sroosegaarde installation"
      begin_offset: 89986
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 4.981695019523613e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 64646
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.973560862708837e-05
  mentions {
    text {
      content: "city"
      begin_offset: 57432
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.973560862708837e-05
  mentions {
    text {
      content: "city"
      begin_offset: 58847
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.9714846682036296e-05
  mentions {
    text {
      content: "city"
      begin_offset: 59850
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.9714846682036296e-05
  mentions {
    text {
      content: "city"
      begin_offset: 59531
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.9694772314978763e-05
  mentions {
    text {
      content: "city"
      begin_offset: 63098
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 4.9675345508148894e-05
  mentions {
    text {
      content: "city"
      begin_offset: 64360
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "meetup"
  type: EVENT
  salience: 4.957657074555755e-05
  mentions {
    text {
      content: "meetup"
      begin_offset: 11430
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "get"
  type: OTHER
  salience: 4.948253263137303e-05
  mentions {
    text {
      content: "get"
      begin_offset: 13948
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.941645238432102e-05
  mentions {
    text {
      content: "work"
      begin_offset: 39465
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 4.938524216413498e-05
  mentions {
    text {
      content: "works"
      begin_offset: 39728
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.9355574446963146e-05
  mentions {
    text {
      content: "work"
      begin_offset: 41539
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.932730371365324e-05
  mentions {
    text {
      content: "work"
      begin_offset: 44338
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.9274469347437844e-05
  mentions {
    text {
      content: "work"
      begin_offset: 47566
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.9274469347437844e-05
  mentions {
    text {
      content: "work"
      begin_offset: 49175
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "thesavoylondon"
  type: WORK_OF_ART
  salience: 4.9265636334894225e-05
  mentions {
    text {
      content: "thesavoylondon"
      begin_offset: 18664
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 4.924970198771916e-05
  mentions {
    text {
      content: "works"
      begin_offset: 51435
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.924970198771916e-05
  mentions {
    text {
      content: "work"
      begin_offset: 51373
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.92259168822784e-05
  mentions {
    text {
      content: "work"
      begin_offset: 53007
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 4.92259168822784e-05
  mentions {
    text {
      content: "works"
      begin_offset: 53106
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.92259168822784e-05
  mentions {
    text {
      content: "work"
      begin_offset: 51878
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere london"
  type: OTHER
  metadata {
    key: "mid"
    value: "/g/11f1x94f51"
  }
  salience: 4.916833495371975e-05
  mentions {
    text {
      content: "lumiere london"
      begin_offset: 121969
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 4.915975659969263e-05
  mentions {
    text {
      content: "works"
      begin_offset: 59186
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.915975659969263e-05
  mentions {
    text {
      content: "work"
      begin_offset: 58882
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 4.915975659969263e-05
  mentions {
    text {
      content: "work"
      begin_offset: 58942
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 4.915975659969263e-05
  mentions {
    text {
      content: "works"
      begin_offset: 58670
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
  type: PERSON
  salience: 4.9139496695715934e-05
  mentions {
    text {
      content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
      begin_offset: 27989
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.910401185043156e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 106971
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 3.299999952316284
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.897992039332166e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 135038
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "roosegaarde kings"
  type: OTHER
  salience: 4.889012416242622e-05
  mentions {
    text {
      content: "roosegaarde kings"
      begin_offset: 118181
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "x ray vision"
  type: OTHER
  salience: 4.8772970330901444e-05
  mentions {
    text {
      content: "x ray vision"
      begin_offset: 114242
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.8761772632133216e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 74956
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 3.299999952316284
    score: 0.800000011920929
  }
}
entities {
  name: "rain visitlondon"
  type: ORGANIZATION
  salience: 4.8743673687567934e-05
  mentions {
    text {
      content: "rain  visitlondon"
      begin_offset: 119582
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "nightlights"
  type: OTHER
  salience: 4.8628015065332875e-05
  mentions {
    text {
      content: "nightlights"
      begin_offset: 107258
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "eluminate2018"
  type: OTHER
  salience: 4.853441350860521e-05
  mentions {
    text {
      content: "eluminate2018"
      begin_offset: 3705
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "southbanklondon"
  type: ORGANIZATION
  salience: 4.839895336772315e-05
  mentions {
    text {
      content: "southbanklondon"
      begin_offset: 60484
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon"
  type: PERSON
  salience: 4.837402593693696e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 83351
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "doorstep nightlife"
  type: ORGANIZATION
  salience: 4.833941056858748e-05
  mentions {
    text {
      content: "doorstep  nightlife"
      begin_offset: 67999
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "visitors"
  type: PERSON
  salience: 4.833385901292786e-05
  mentions {
    text {
      content: "visitors"
      begin_offset: 88099
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "nights"
  type: EVENT
  salience: 4.8322155635105446e-05
  mentions {
    text {
      content: "nights"
      begin_offset: 69880
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 4.8310710553778335e-05
  mentions {
    text {
      content: "display"
      begin_offset: 70425
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitlondon festival"
  type: EVENT
  salience: 4.821503534913063e-05
  mentions {
    text {
      content: "visitlondon  festival"
      begin_offset: 101902
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.8122939915629104e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 155774
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "amp"
      begin_offset: 161166
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.7999999523162842
    score: 0.8999999761581421
  }
}
entities {
  name: "searcystpancras"
  type: OTHER
  salience: 4.812183033209294e-05
  mentions {
    text {
      content: "searcystpancras"
      begin_offset: 7906
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon visitlondon"
  type: EVENT
  salience: 4.8048372264020145e-05
  mentions {
    text {
      content: "lumierelondon  visitlondon"
      begin_offset: 65195
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon  visitlondon"
      begin_offset: 65326
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "therose pedalpower petalpower lumiere"
  type: OTHER
  salience: 4.787401121575385e-05
  mentions {
    text {
      content: "therose pedalpower petalpower lumiere"
      begin_offset: 59739
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation trafalgarsquare"
  type: OTHER
  salience: 4.747545244754292e-05
  mentions {
    text {
      content: "installation trafalgarsquare"
      begin_offset: 46357
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "photograph fish phone box"
  type: OTHER
  salience: 4.7379089664900675e-05
  mentions {
    text {
      content: "photograph fish phone box"
      begin_offset: 88908
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation trafalgarsquare"
  type: OTHER
  salience: 4.736056871479377e-05
  mentions {
    text {
      content: "installation trafalgarsquare"
      begin_offset: 57113
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installation trafalgarsquare"
  type: OTHER
  salience: 4.734010508400388e-05
  mentions {
    text {
      content: "installation trafalgarsquare"
      begin_offset: 57942
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.699833152699284e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 95051
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.699292912846431e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 74495
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "weekend lumierelondon photos"
  type: WORK_OF_ART
  salience: 4.6961602492956445e-05
  mentions {
    text {
      content: "weekend lumierelondon photos"
      begin_offset: 52017
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.694422386819497e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 104985
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "mischiefmovienight amp"
  type: PERSON
  salience: 4.690435162046924e-05
  mentions {
    text {
      content: "mischiefmovienight amp"
      begin_offset: 113336
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "south bank amp"
  type: ORGANIZATION
  salience: 4.686708052759059e-05
  mentions {
    text {
      content: "south bank amp"
      begin_offset: 121549
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "edgillwhl lumierelondon leicestersquare"
  type: OTHER
  salience: 4.6848719648551196e-05
  mentions {
    text {
      content: "friends experiences"
      begin_offset: 132941
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "edgillwhl lumierelondon leicestersquare"
      begin_offset: 132962
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.5
  }
}
entities {
  name: "lighting inspiration"
  type: OTHER
  salience: 4.67863937956281e-05
  mentions {
    text {
      content: "lighting inspiration"
      begin_offset: 3758
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "blue sky"
  type: OTHER
  salience: 4.67863937956281e-05
  mentions {
    text {
      content: "blue sky"
      begin_offset: 2318
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "balloons amp"
  type: OTHER
  salience: 4.667259781854227e-05
  mentions {
    text {
      content: "balloons amp"
      begin_offset: 67285
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cirquebijou streets"
  type: LOCATION
  salience: 4.666918539442122e-05
  mentions {
    text {
      content: "cirquebijou streets"
      begin_offset: 45806
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city streets"
  type: LOCATION
  salience: 4.666918539442122e-05
  mentions {
    text {
      content: "city streets"
      begin_offset: 46265
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: PERSON
  salience: 4.665543747250922e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 68405
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.665543747250922e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 68352
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 72159
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 71921
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 72822
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 71445
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 73043
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 72380
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 71683
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "city mayorofldn amp"
  type: ORGANIZATION
  salience: 4.662260471377522e-05
  mentions {
    text {
      content: "city mayorofldn amp"
      begin_offset: 72601
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "carnaby"
  type: EVENT
  metadata {
    key: "mid"
    value: "/m/027g2z"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Carnaby_Street"
  }
  salience: 4.662236460717395e-05
  mentions {
    text {
      content: "carnaby"
      begin_offset: 25112
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "street"
      begin_offset: 86309
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "carnaby street"
      begin_offset: 95256
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "carnaby street"
      begin_offset: 129943
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "carnaby"
      begin_offset: 92066
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "fixture"
      begin_offset: 92058
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 4.6621280489489436e-05
  mentions {
    text {
      content: "streets"
      begin_offset: 50932
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 4.660687409341335e-05
  mentions {
    text {
      content: "westend amp"
      begin_offset: 74553
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "city streets"
  type: LOCATION
  salience: 4.6598765038652346e-05
  mentions {
    text {
      content: "city streets"
      begin_offset: 52359
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: CONSUMER_GOOD
  salience: 4.659156911657192e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 75729
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "light installations amp"
  type: OTHER
  salience: 4.659156911657192e-05
  mentions {
    text {
      content: "light installations amp"
      begin_offset: 76500
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "jubilee line baker street"
  type: LOCATION
  salience: 4.6536133595509455e-05
  mentions {
    text {
      content: "jubilee line baker street"
      begin_offset: 59369
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.650751725421287e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 85157
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.650751725421287e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 85478
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 4.6496053982991725e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 60265
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.649464608519338e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 86333
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.649464608519338e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 87549
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.649464608519338e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 86386
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "btpvolunteers"
  type: PERSON
  salience: 4.638866812456399e-05
  mentions {
    text {
      content: "btpvolunteers"
      begin_offset: 6855
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 4.6376106183743104e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 73952
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon"
  type: ORGANIZATION
  salience: 4.631448973668739e-05
  mentions {
    text {
      content: "aichoketrust visitlondon"
      begin_offset: 103784
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "chance feature gallery"
      begin_offset: 103761
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.62504212919157e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 40102
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.62504212919157e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 40875
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.62504212919157e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 40683
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 4.622263440978713e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 42166
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 4.622263440978713e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 43407
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 4.619615720002912e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 43993
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon latergram"
  type: OTHER
  salience: 4.6176424802979454e-05
  mentions {
    text {
      content: "lumierelondon latergram"
      begin_offset: 1734
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wikicommons"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/04f_qd"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Wikimedia_Commons"
  }
  salience: 4.6176424802979454e-05
  mentions {
    text {
      content: "wikicommons"
      begin_offset: 1436
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 4.6150231355568394e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 104298
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.6146677050273865e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 48553
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.6096665755612776e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 123955
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "child hood collectif coin favourite installation"
  type: OTHER
  salience: 4.6096665755612776e-05
  mentions {
    text {
      content: "child hood collectif coin favourite installation"
      begin_offset: 124579
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.608800009009428e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 125502
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.607946175383404e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 128244
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "benefits"
  type: OTHER
  salience: 4.607003211276606e-05
  mentions {
    text {
      content: "benefits"
      begin_offset: 12506
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "btpvolunteers"
  type: PERSON
  salience: 4.607003211276606e-05
  mentions {
    text {
      content: "btpvolunteers"
      begin_offset: 13251
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "btpvolunteers"
  type: PERSON
  salience: 4.607003211276606e-05
  mentions {
    text {
      content: "btpvolunteers"
      begin_offset: 13440
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.606277434504591e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 131662
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.606277434504591e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 133375
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.606277434504591e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 132130
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.605914728017524e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 57212
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.6054610720602795e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 135404
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.604656351148151e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 136502
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.603924389812164e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 57639
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "light installations"
  type: OTHER
  salience: 4.60308110632468e-05
  mentions {
    text {
      content: "light installations"
      begin_offset: 140002
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.602309854817577e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 142046
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 4.602309854817577e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 141703
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.601549153449014e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 143488
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.600144166033715e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 63743
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 4.600144166033715e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 62564
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "cain_int badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 4.600144166033715e-05
  mentions {
    text {
      content: "cain_int  badgerust fox amp badger stars"
      begin_offset: 62330
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 4.600144166033715e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 63255
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 4.600144166033715e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 63388
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.5993267121957615e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 150015
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.5993267121957615e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 150469
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.5993267121957615e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 150755
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: CONSUMER_GOOD
  salience: 4.5983459131093696e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 64148
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonlife dslr nightmoves 2"
  type: CONSUMER_GOOD
  salience: 4.5882148697273806e-05
  mentions {
    text {
      content: "londonlife dslr nightmoves 2"
      begin_offset: 6399
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 4.5831187890144065e-05
  mentions {
    text {
      content: "display"
      begin_offset: 34767
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "amp witchcraft"
  type: OTHER
  salience: 4.58142785646487e-05
  mentions {
    text {
      content: "amp witchcraft"
      begin_offset: 21379
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "spoonsontrays"
  type: CONSUMER_GOOD
  salience: 4.58142785646487e-05
  mentions {
    text {
      content: "spoonsontrays"
      begin_offset: 21073
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "amp witchcraft"
  type: OTHER
  salience: 4.5720109483227134e-05
  mentions {
    text {
      content: "amp witchcraft"
      begin_offset: 26416
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 4.571206227410585e-05
  mentions {
    text {
      content: "display"
      begin_offset: 42600
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.699999988079071
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 4.571206227410585e-05
  mentions {
    text {
      content: "display"
      begin_offset: 43544
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 4.571206227410585e-05
  mentions {
    text {
      content: "display"
      begin_offset: 41785
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 10.899999618530273
    score: 0.699999988079071
  }
}
entities {
  name: "props"
  type: OTHER
  salience: 4.567840005620383e-05
  mentions {
    text {
      content: "props"
      begin_offset: 28984
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "playlondongame"
  type: OTHER
  salience: 4.567840005620383e-05
  mentions {
    text {
      content: "playlondongame"
      begin_offset: 27504
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "addition"
  type: OTHER
  salience: 4.567840005620383e-05
  mentions {
    text {
      content: "addition"
      begin_offset: 27804
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "bar"
  type: LOCATION
  salience: 4.567840005620383e-05
  mentions {
    text {
      content: "bar"
      begin_offset: 27902
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "beasts"
  type: OTHER
  salience: 4.5657827286049724e-05
  mentions {
    text {
      content: "beasts"
      begin_offset: 34401
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "decorations"
  type: OTHER
  salience: 4.5639601012226194e-05
  mentions {
    text {
      content: "decorations"
      begin_offset: 30301
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "creativity amp inspiration"
  type: OTHER
  salience: 4.56033340014983e-05
  mentions {
    text {
      content: "creativity amp inspiration"
      begin_offset: 33143
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.5367327402345836e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 94888
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.535647894954309e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 96644
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon zebraprodunique"
  type: ORGANIZATION
  salience: 4.5330751163419336e-05
  mentions {
    text {
      content: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  zebraprodunique"
      begin_offset: 33871
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "fish phone box"
  type: OTHER
  salience: 4.532122693490237e-05
  mentions {
    text {
      content: "fish phone box"
      begin_offset: 63653
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "50 aists justin_venn lumierelondon2018 lumierelondon"
  type: PERSON
  salience: 4.529884972725995e-05
  mentions {
    text {
      content: "50 aists  justin_venn  lumierelondon2018 lumierelondon"
      begin_offset: 37532
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "mayfair grosvenor_ldn grosvenor_gbi justin_venn lumierelondon2018 lumierelondon"
  type: ORGANIZATION
  salience: 4.529884972725995e-05
  mentions {
    text {
      content: "mayfair grosvenor_ldn grosvenor_gbi  justin_venn  lumierelondon2018 lumierelondon"
      begin_offset: 35721
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "chinatown pa festival"
  type: EVENT
  salience: 4.529551733867265e-05
  mentions {
    text {
      content: "chinatown pa festival"
      begin_offset: 109737
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere festival"
  type: EVENT
  salience: 4.529551733867265e-05
  mentions {
    text {
      content: "lumiere festival"
      begin_offset: 110338
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chinatown pa festival"
  type: EVENT
  salience: 4.529551733867265e-05
  mentions {
    text {
      content: "chinatown pa festival"
      begin_offset: 109653
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chinatown pa festival"
  type: EVENT
  salience: 4.5285982196219265e-05
  mentions {
    text {
      content: "chinatown pa festival"
      begin_offset: 111517
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "chinatown pa festival"
  type: EVENT
  salience: 4.5285982196219265e-05
  mentions {
    text {
      content: "chinatown pa festival"
      begin_offset: 112300
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "fairies"
  type: OTHER
  salience: 4.527135388343595e-05
  mentions {
    text {
      content: "fairies"
      begin_offset: 141112
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "fairies"
      begin_offset: 142287
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "festivals"
  type: EVENT
  salience: 4.5258326281327754e-05
  mentions {
    text {
      content: "festivals"
      begin_offset: 117363
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.524940959527157e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 120666
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitors city bottle festoon"
  type: EVENT
  salience: 4.524940959527157e-05
  mentions {
    text {
      content: "visitors city bottle festoon"
      begin_offset: 120722
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayoroflondon justin_venn lumierelondon2018 lumierelondon"
  type: PERSON
  salience: 4.524010364548303e-05
  mentions {
    text {
      content: "mayoroflondon  justin_venn  lumierelondon2018 lumierelondon"
      begin_offset: 39620
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 4.5146545744501054e-05
  mentions {
    text {
      content: "streets"
      begin_offset: 88618
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 4.508739584707655e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 128296
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.500463910517283e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 71365
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "nights"
  type: EVENT
  salience: 4.500345676206052e-05
  mentions {
    text {
      content: "nights"
      begin_offset: 55976
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tag"
  type: OTHER
  salience: 4.498982889344916e-05
  mentions {
    text {
      content: "tag"
      begin_offset: 139173
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "tag"
      begin_offset: 139457
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "londonlumiere london leceistersquare lumiere"
  type: ORGANIZATION
  salience: 4.4978973164688796e-05
  mentions {
    text {
      content: "londonlumiere london leceistersquare  lumiere"
      begin_offset: 65084
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.4946275011170655e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 77765
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminsterabbey light festival"
  type: EVENT
  salience: 4.4946275011170655e-05
  mentions {
    text {
      content: "westminsterabbey light festival"
      begin_offset: 79391
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 4.4938446080777794e-05
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 152779
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 154473
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lumiere festival"
  type: EVENT
  salience: 4.493260712479241e-05
  mentions {
    text {
      content: "lumiere festival"
      begin_offset: 80146
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.491927393246442e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 81380
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 4.491077925194986e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 140969
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "lumiere festival"
  type: EVENT
  salience: 4.490625724429265e-05
  mentions {
    text {
      content: "lumiere festival"
      begin_offset: 84495
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.489354250836186e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 85963
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey"
  type: ORGANIZATION
  salience: 4.489352068048902e-05
  mentions {
    text {
      content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye westminsterabbey"
      begin_offset: 49984
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye"
      begin_offset: 49817
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "eyelovelondon visitlondon timeoutlondon londonist london ldn londoneye"
      begin_offset: 49650
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.7999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "saints"
  type: PERSON
  salience: 4.486549732973799e-05
  mentions {
    text {
      content: "saints"
      begin_offset: 28748
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 4.4667187466984615e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 133248
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 4.4667187466984615e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 133045
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitlondon"
  type: OTHER
  salience: 4.465927122510038e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 135429
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon"
  type: EVENT
  salience: 4.465147139853798e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 136527
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitors"
  type: PERSON
  salience: 4.464378071133979e-05
  mentions {
    text {
      content: "visitors"
      begin_offset: 138594
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.463095683604479e-05
  mentions {
    text {
      content: "people"
      begin_offset: 95208
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 4.462133802007884e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 144567
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 4.462133802007884e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 143376
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "nightlife"
  type: EVENT
  salience: 4.454755980987102e-05
  mentions {
    text {
      content: "nightlife"
      begin_offset: 122995
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visitlondon kingscrossn1c roamingrequired southbanklondon"
  type: ORGANIZATION
  salience: 4.454518420970999e-05
  mentions {
    text {
      content: "visitlondon kingscrossn1c roamingrequired  southbanklondon"
      begin_offset: 61453
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "nightlife"
  type: OTHER
  salience: 4.453905421542004e-05
  mentions {
    text {
      content: "nightlife"
      begin_offset: 124200
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bhawnasaini_yml"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/01w6k2"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/YAML"
  }
  salience: 4.4455497118178755e-05
  mentions {
    text {
      content: "childhood"
      begin_offset: 130488
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "bhawnasaini_yml"
      begin_offset: 130499
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "animal nightlife"
  type: ORGANIZATION
  salience: 4.444621299626306e-05
  mentions {
    text {
      content: "animal nightlife"
      begin_offset: 149010
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "nightlife"
  type: EVENT
  salience: 4.444621299626306e-05
  mentions {
    text {
      content: "nightlife"
      begin_offset: 148032
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "aists amp employment oppounities tourism amp fitness"
  type: OTHER
  salience: 4.4320549932308495e-05
  mentions {
    text {
      content: "aists amp employment oppounities tourism amp fitness"
      begin_offset: 9720
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "selfie london visitlondon"
  type: ORGANIZATION
  salience: 4.428498141351156e-05
  mentions {
    text {
      content: "selfie london  visitlondon"
      begin_offset: 95458
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumierefestival2018 aichoke trafalgarsquare london"
  type: PERSON
  salience: 4.423821155796759e-05
  mentions {
    text {
      content: "lumierefestival2018 aichoke trafalgarsquare london"
      begin_offset: 81180
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights"
  type: OTHER
  salience: 4.410432302393019e-05
  mentions {
    text {
      content: "lights"
      begin_offset: 78146
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "iesphotos cityatnight london"
  type: OTHER
  salience: 4.41006341134198e-05
  mentions {
    text {
      content: "iesphotos cityatnight  london"
      begin_offset: 175264
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "flickr"
      begin_offset: 175257
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust"
  type: OTHER
  salience: 4.3800911953439936e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 91487
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "squirrel mouse aichoketrust"
  type: ORGANIZATION
  salience: 4.378979065222666e-05
  mentions {
    text {
      content: "squirrel mouse aichoketrust"
      begin_offset: 91501
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust"
  type: PERSON
  salience: 4.37682174379006e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 96386
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust"
  type: OTHER
  salience: 4.365445420262404e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 119466
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust"
  type: OTHER
  salience: 4.365445420262404e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 119320
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aist"
  type: PERSON
  salience: 4.3620369979180396e-05
  mentions {
    text {
      content: "aist"
      begin_offset: 36767
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon london"
  type: OTHER
  salience: 4.350421659182757e-05
  mentions {
    text {
      content: "lumierelondon london"
      begin_offset: 101230
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "lumierelondon london"
      begin_offset: 107448
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "king cross"
  type: OTHER
  salience: 4.337179780122824e-05
  mentions {
    text {
      content: "king cross"
      begin_offset: 40516
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 4.336488927947357e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 59217
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "2018 trafalgarsquare kingscross carnabystreet regentstreet"
  type: PERSON
  salience: 4.335075936978683e-05
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 71478
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 71716
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 71954
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 72192
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 72413
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 72634
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 72855
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "2018  trafalgarsquare kingscross carnabystreet regentstreet"
      begin_offset: 73076
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 4.099999904632568
    score: -0.5
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 4.3346786696929485e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 59522
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aichoketrust"
  type: PERSON
  salience: 4.328742579673417e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 88228
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "ilyasayub_photo"
  type: WORK_OF_ART
  metadata {
    key: "mid"
    value: "/m/068jd"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Photograph"
  }
  salience: 4.316430931794457e-05
  mentions {
    text {
      content: "ilyasayub_photo"
      begin_offset: 2382
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "ilyasayub_photo"
      begin_offset: 20399
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "polychrome"
  type: OTHER
  salience: 4.315278783906251e-05
  mentions {
    text {
      content: "polychrome"
      begin_offset: 127007
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "polychrome"
      begin_offset: 131349
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 4.3118045141454786e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 70898
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "head"
  type: OTHER
  salience: 4.307123526814394e-05
  mentions {
    text {
      content: "head"
      begin_offset: 122717
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "head"
      begin_offset: 133085
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.5
    score: 0.699999988079071
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.305628317524679e-05
  mentions {
    text {
      content: "event"
      begin_offset: 92015
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.302478191675618e-05
  mentions {
    text {
      content: "event"
      begin_offset: 98213
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.302478191675618e-05
  mentions {
    text {
      content: "event"
      begin_offset: 98280
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.301469016354531e-05
  mentions {
    text {
      content: "event"
      begin_offset: 99146
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "events"
  type: EVENT
  salience: 4.294027530704625e-05
  mentions {
    text {
      content: "events"
      begin_offset: 116223
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "south bank amp"
  type: OTHER
  salience: 4.2911760829156265e-05
  mentions {
    text {
      content: "south bank amp"
      begin_offset: 144270
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.289785283617675e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 149544
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 4.289103526389226e-05
  mentions {
    text {
      content: "westend amp"
      begin_offset: 150813
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 4.2884305003099144e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 153357
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "croydon"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/02gw_w"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Croydon"
  }
  salience: 4.286038893042132e-05
  mentions {
    text {
      content: "croydon"
      begin_offset: 22206
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "croydon"
      begin_offset: 60289
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "croydon"
      begin_offset: 60467
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.10000000149011612
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 4.26923215854913e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 146352
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 4.267196709406562e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 152091
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 4.26704682467971e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 34906
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "south bank"
  type: OTHER
  salience: 4.26704682467971e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 34596
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 4.2665356886573136e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 154853
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 4.2665356886573136e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 153635
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.261004869476892e-05
  mentions {
    text {
      content: "event"
      begin_offset: 80860
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "winterlights canarywharf"
  type: LOCATION
  salience: 4.2584175389492884e-05
  mentions {
    text {
      content: "winterlights canarywharf"
      begin_offset: 12067
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "winterlights canarywharf"
      begin_offset: 13656
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 4.257385808159597e-05
  mentions {
    text {
      content: "event"
      begin_offset: 86773
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "arrival"
  type: EVENT
  salience: 4.245622403686866e-05
  mentions {
    text {
      content: "arrival"
      begin_offset: 6086
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "book cou"
  type: OTHER
  salience: 4.245622403686866e-05
  mentions {
    text {
      content: "book cou"
      begin_offset: 5772
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "pint"
  type: OTHER
  salience: 4.230605554766953e-05
  mentions {
    text {
      content: "pint"
      begin_offset: 7940
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "thelondoneye westminsterabbey"
  type: ORGANIZATION
  salience: 4.226916280458681e-05
  mentions {
    text {
      content: "thelondoneye westminsterabbey"
      begin_offset: 49888
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "thelondoneye westminsterabbey"
      begin_offset: 49721
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "light lumiere king"
  type: OTHER
  salience: 4.2254388972651213e-05
  mentions {
    text {
      content: "light lumiere  king"
      begin_offset: 100265
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 4.224466465529986e-05
  mentions {
    text {
      content: "kingdom"
      begin_offset: 100874
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.223511496093124e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 104146
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "kingscross"
  type: OTHER
  salience: 4.223511496093124e-05
  mentions {
    text {
      content: "kingscross"
      begin_offset: 104349
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 4.222574352752417e-05
  mentions {
    text {
      content: "kingdom"
      begin_offset: 106198
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.221653944114223e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 106873
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "park kings"
  type: EVENT
  salience: 4.220749906380661e-05
  mentions {
    text {
      content: "park kings"
      begin_offset: 108812
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "park kings"
  type: EVENT
  salience: 4.220749906380661e-05
  mentions {
    text {
      content: "park kings"
      begin_offset: 108872
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 4.219861148158088e-05
  mentions {
    text {
      content: "kingdom"
      begin_offset: 112274
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "park kings"
  type: PERSON
  salience: 4.219861148158088e-05
  mentions {
    text {
      content: "park kings"
      begin_offset: 112438
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "park kings"
  type: PERSON
  salience: 4.2189876694465056e-05
  mentions {
    text {
      content: "park kings"
      begin_offset: 113717
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "park kings"
  type: EVENT
  salience: 4.2189876694465056e-05
  mentions {
    text {
      content: "park kings"
      begin_offset: 114047
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "roosegaarde kings"
  type: PERSON
  salience: 4.217284367769025e-05
  mentions {
    text {
      content: "roosegaarde kings"
      begin_offset: 118381
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.217284367769025e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 118931
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.216453089611605e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 120376
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.216453089611605e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 120165
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.216453089611605e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 120421
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.216453089611605e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 121208
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "waterlicht lumiere kings"
  type: PERSON
  salience: 4.215635635773651e-05
  mentions {
    text {
      content: "waterlicht lumiere kings"
      begin_offset: 121796
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "city waterlicht lumiere kings"
  type: LOCATION
  salience: 4.215635635773651e-05
  mentions {
    text {
      content: "city waterlicht lumiere kings"
      begin_offset: 121903
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumiere kings"
  type: OTHER
  salience: 4.215635635773651e-05
  mentions {
    text {
      content: "lumiere kings"
      begin_offset: 122459
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.215635635773651e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 121347
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scene boulevard"
  type: LOCATION
  salience: 4.209530743537471e-05
  mentions {
    text {
      content: "scene boulevard"
      begin_offset: 10318
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "weather cold"
  type: OTHER
  salience: 4.209530743537471e-05
  mentions {
    text {
      content: "weather cold"
      begin_offset: 11797
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "charsuibuns light spirit"
  type: OTHER
  salience: 4.20055293943733e-05
  mentions {
    text {
      content: "charsuibuns light spirit"
      begin_offset: 56006
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london rain"
  type: OTHER
  salience: 4.2000778194051236e-05
  mentions {
    text {
      content: "london rain"
      begin_offset: 37957
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lightinstallation landscape colour longexposure canon kings"
  type: WORK_OF_ART
  salience: 4.198141323286109e-05
  mentions {
    text {
      content: "lightinstallation landscape  colour longexposure canon kings"
      begin_offset: 65806
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.19509997300338e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 69765
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "jakubkrupa"
  type: OTHER
  salience: 4.1946415876736864e-05
  mentions {
    text {
      content: "jakubkrupa"
      begin_offset: 15836
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "shaida"
  type: PERSON
  salience: 4.1946415876736864e-05
  mentions {
    text {
      content: "shaida"
      begin_offset: 15758
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 4.185690340818837e-05
  mentions {
    text {
      content: "king"
      begin_offset: 82142
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 4.179895404377021e-05
  mentions {
    text {
      content: "king"
      begin_offset: 89921
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "poraits"
  type: PERSON
  salience: 4.178221206529997e-05
  mentions {
    text {
      content: "poraits"
      begin_offset: 20846
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "westminsterabbey"
  type: OTHER
  salience: 4.177098526270129e-05
  mentions {
    text {
      content: "westminsterabbey"
      begin_offset: 104876
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival walk"
  type: EVENT
  salience: 4.168165833107196e-05
  mentions {
    text {
      content: "festival walk"
      begin_offset: 1883
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rarebear"
  type: PERSON
  salience: 4.160687603871338e-05
  mentions {
    text {
      content: "rarebear"
      begin_offset: 17113
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ukinargentina es un festival de luces en londres con 50 obras de ae en exhibici\303\263n ayer fue la primera de las 4"
  type: LOCATION
  salience: 4.1556682845111936e-05
  mentions {
    text {
      content: "ukinargentina  es un festival de luces en londres con 50 obras de ae en exhibici\303\263n ayer fue la primera de las 4"
      begin_offset: 12903
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "citywestminster festival"
  type: EVENT
  salience: 4.1480143408989534e-05
  mentions {
    text {
      content: "citywestminster  festival"
      begin_offset: 127807
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "cast commentary"
  type: WORK_OF_ART
  salience: 4.147968138568103e-05
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 129138
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 135953
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 161413
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 162475
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 163863
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 165113
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.147257641307078e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 129801
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.146512219449505e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 132756
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "youtube london light festival"
  type: EVENT
  salience: 4.146512219449505e-05
  mentions {
    text {
      content: "youtube london light festival"
      begin_offset: 132158
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa lumiere festival"
  type: EVENT
  salience: 4.145777347730473e-05
  mentions {
    text {
      content: "pa lumiere festival"
      begin_offset: 134944
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.1443388909101486e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 138538
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.1443388909101486e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 138998
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light festival"
  type: EVENT
  salience: 4.142255784245208e-05
  mentions {
    text {
      content: "light festival"
      begin_offset: 143932
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.142255784245208e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 144717
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.140913370065391e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 148745
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.140913370065391e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 148367
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.140913370065391e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 148555
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.139605880482122e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 151632
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.139605880482122e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 153186
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.139605880482122e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 153122
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.139605880482122e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 152251
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 4.138964504818432e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 154771
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granarysquare"
  type: OTHER
  salience: 4.1251139919040725e-05
  mentions {
    text {
      content: "granarysquare"
      begin_offset: 48491
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.122991958865896e-05
  mentions {
    text {
      content: "people"
      begin_offset: 58810
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 4.1198287362931296e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 105876
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.0965147491078824e-05
  mentions {
    text {
      content: "people"
      begin_offset: 37632
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.093787356396206e-05
  mentions {
    text {
      content: "people"
      begin_offset: 38283
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "kathak dance styles"
  type: OTHER
  salience: 4.0930910472525284e-05
  mentions {
    text {
      content: "kathak dance styles"
      begin_offset: 44206
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.0887440263759345e-05
  mentions {
    text {
      content: "people"
      begin_offset: 43234
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "power"
  type: OTHER
  salience: 4.0769340557744727e-05
  mentions {
    text {
      content: "power"
      begin_offset: 61902
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "snow amp rain"
  type: OTHER
  salience: 4.0732451452640817e-05
  mentions {
    text {
      content: "snow amp rain"
      begin_offset: 63025
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 4.072521551279351e-05
  mentions {
    text {
      content: "people"
      begin_offset: 57688
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminster cathedral"
  type: LOCATION
  salience: 4.068050839123316e-05
  mentions {
    text {
      content: "westminster cathedral"
      begin_offset: 49091
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "westminster cathedral"
      begin_offset: 91801
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "westminster cathedral"
      begin_offset: 156900
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.20000000298023224
  }
}
entities {
  name: "aichoketrust biggsytravels"
  type: PERSON
  salience: 4.064860331709497e-05
  mentions {
    text {
      content: "aichoketrust biggsytravels"
      begin_offset: 12462
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pics"
  type: WORK_OF_ART
  salience: 4.062797597725876e-05
  mentions {
    text {
      content: "pics"
      begin_offset: 51663
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "toevho"
  type: OTHER
  salience: 4.0610113501315936e-05
  mentions {
    text {
      content: "toevho"
      begin_offset: 29266
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aichoketrust biggsytravels"
  type: CONSUMER_GOOD
  salience: 4.058180275023915e-05
  mentions {
    text {
      content: "aichoketrust biggsytravels"
      begin_offset: 15297
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 4.047832408105023e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 126339
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 4.0436203562421724e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 41547
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1"
  type: ORGANIZATION
  salience: 4.042293949169107e-05
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1"
      begin_offset: 21636
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "westminster westminsterabby"
  type: ORGANIZATION
  salience: 4.04101301683113e-05
  mentions {
    text {
      content: "westminster westminsterabby"
      begin_offset: 83066
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster westminsterabby"
      begin_offset: 102146
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster westminsterabby"
      begin_offset: 102875
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.5
  }
}
entities {
  name: "landmarks streets"
  type: LOCATION
  salience: 4.0093604184221476e-05
  mentions {
    text {
      content: "landmarks streets"
      begin_offset: 64896
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city aichoketrust"
  type: ORGANIZATION
  salience: 4.001803608844057e-05
  mentions {
    text {
      content: "city aichoketrust"
      begin_offset: 128718
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust"
  type: OTHER
  salience: 3.996908344561234e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 142967
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "aichoketrust"
  type: PERSON
  salience: 3.9955957618076354e-05
  mentions {
    text {
      content: "aichoketrust"
      begin_offset: 145910
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "biuk"
  type: PERSON
  salience: 3.993042264482938e-05
  mentions {
    text {
      content: "biuk"
      begin_offset: 48912
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "biuk"
  type: PERSON
  salience: 3.991035191575065e-05
  mentions {
    text {
      content: "biuk"
      begin_offset: 50311
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "flickr biuk"
  type: OTHER
  salience: 3.991035191575065e-05
  mentions {
    text {
      content: "flickr  biuk"
      begin_offset: 51152
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "thanks"
  type: OTHER
  salience: 3.981292320531793e-05
  mentions {
    text {
      content: "thanks"
      begin_offset: 38613
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "kingscross raindropskeepfallingonmyhead dslr nightmoves 1"
  type: ORGANIZATION
  salience: 3.963005292462185e-05
  mentions {
    text {
      content: "kingscross raindropskeepfallingonmyhead dslr nightmoves 1"
      begin_offset: 14432
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 3.9362392271868885e-05
  mentions {
    text {
      content: "event"
      begin_offset: 124373
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "events"
  type: EVENT
  salience: 3.935499262297526e-05
  mentions {
    text {
      content: "events"
      begin_offset: 126731
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 3.9319609641097486e-05
  mentions {
    text {
      content: "event"
      begin_offset: 136467
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 3.930616003344767e-05
  mentions {
    text {
      content: "event"
      begin_offset: 140848
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 3.928034129785374e-05
  mentions {
    text {
      content: "event"
      begin_offset: 149056
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 3.9267935790121555e-05
  mentions {
    text {
      content: "event"
      begin_offset: 152693
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "westend"
  type: LOCATION
  salience: 3.917532376362942e-05
  mentions {
    text {
      content: "westend"
      begin_offset: 133433
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lots"
  type: OTHER
  salience: 3.913139516953379e-05
  mentions {
    text {
      content: "lots"
      begin_offset: 26219
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.867402483592741e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 122847
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.867402483592741e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 122880
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.867402483592741e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 123186
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lampounette lumiere kings"
  type: PERSON
  salience: 3.8666639738949016e-05
  mentions {
    text {
      content: "lampounette lumiere kings"
      begin_offset: 123852
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.8666639738949016e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 124799
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "taste rainbow king"
  type: OTHER
  salience: 3.8659371057292446e-05
  mentions {
    text {
      content: "taste rainbow king"
      begin_offset: 125902
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "passing kings"
  type: PERSON
  salience: 3.865221151500009e-05
  mentions {
    text {
      content: "passing kings"
      begin_offset: 128666
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.865221151500009e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 127910
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 3.8638208934571594e-05
  mentions {
    text {
      content: "king"
      begin_offset: 131851
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sliceofthecity visitlondon londonlumiere"
  type: ORGANIZATION
  salience: 3.86294414056465e-05
  mentions {
    text {
      content: "sliceofthecity visitlondon londonlumiere"
      begin_offset: 49247
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "sliceofthecity visitlondon londonlumiere"
      begin_offset: 51111
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "sliceofthecity visitlondon londonlumiere"
      begin_offset: 51022
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "delays fi king"
  type: PERSON
  salience: 3.861796358251013e-05
  mentions {
    text {
      content: "delays fi  king"
      begin_offset: 138293
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "westminster london"
  type: LOCATION
  salience: 3.8569443859159946e-05
  mentions {
    text {
      content: "westminster london"
      begin_offset: 91352
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "piccadilly stjames jermynstreet london"
  type: LOCATION
  salience: 3.854065653285943e-05
  mentions {
    text {
      content: "piccadilly stjames jermynstreet london"
      begin_offset: 95130
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "charlie lumiere lumierelondon leicestersquare london"
  type: PERSON
  salience: 3.850482971756719e-05
  mentions {
    text {
      content: "charlie lumiere  lumierelondon leicestersquare london"
      begin_offset: 102973
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "london thisislondon londonatnight londonlife"
  type: ORGANIZATION
  salience: 3.848789128824137e-05
  mentions {
    text {
      content: "london thisislondon londonatnight londonlife"
      begin_offset: 107377
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumierelondon kingscross granarysquare visitlondon"
  type: ORGANIZATION
  salience: 3.842756268568337e-05
  mentions {
    text {
      content: "lumierelondon kingscross granarysquare visitlondon"
      begin_offset: 79478
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 3.836937321466394e-05
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 168889
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 169381
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 169506
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "deputy mayor"
  type: PERSON
  salience: 3.836896939901635e-05
  mentions {
    text {
      content: "deputy mayor"
      begin_offset: 64737
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gt mondaymotivation aichoketrust"
  type: PERSON
  salience: 3.829340130323544e-05
  mentions {
    text {
      content: "gt mondaymotivation  aichoketrust"
      begin_offset: 43186
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "flickr iesphotos cityatnight london"
  type: ORGANIZATION
  salience: 3.8273530662991107e-05
  mentions {
    text {
      content: "flickr iesphotos cityatnight  london"
      begin_offset: 67404
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london southbank london"
  type: LOCATION
  salience: 3.824580562650226e-05
  mentions {
    text {
      content: "london southbank  london"
      begin_offset: 70858
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "mondaymotivation ginoclock ginuary grosvenor_gbi mayfair london"
  type: LOCATION
  salience: 3.81485624529887e-05
  mentions {
    text {
      content: "mondaymotivation ginoclock  ginuary  grosvenor_gbi mayfair london"
      begin_offset: 35414
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 3.809525151154958e-05
  mentions {
    text {
      content: "visitlondon aichoketrust"
      begin_offset: 64947
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "european"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/02j9z"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Europe"
  }
  salience: 3.800869671977125e-05
  mentions {
    text {
      content: "european"
      begin_offset: 10037
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "european"
      begin_offset: 36227
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "european"
      begin_offset: 41650
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit"
  type: EVENT
  salience: 3.8000973290763795e-05
  mentions {
    text {
      content: "visit"
      begin_offset: 151301
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.7960246118018404e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 47648
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.790724076679908e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 97756
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.7888243241468444e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 56424
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.7888243241468444e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 56536
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.785606168094091e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 60551
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.785606168094091e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 61563
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "highlight hope"
  type: OTHER
  salience: 3.784077489399351e-05
  mentions {
    text {
      content: "highlight  hope"
      begin_offset: 61845
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "hope"
  type: OTHER
  salience: 3.784077489399351e-05
  mentions {
    text {
      content: "hope"
      begin_offset: 61686
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "swing"
  type: OTHER
  salience: 3.7816378608113155e-05
  mentions {
    text {
      content: "swing"
      begin_offset: 122701
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "swing"
      begin_offset: 133069
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.763966742553748e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 68837
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.763966742553748e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 69076
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.763966742553748e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 68663
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "tmnikonian aichoketrust"
  type: PERSON
  salience: 3.760082836379297e-05
  mentions {
    text {
      content: "tmnikonian  aichoketrust"
      begin_offset: 68096
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.7588139093713835e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 75870
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.7588139093713835e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 76044
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.7564397644018754e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 78786
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.7541831261478364e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 81954
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.7541831261478364e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 80986
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "foodie domesticgoddess"
  type: OTHER
  salience: 3.753186683752574e-05
  mentions {
    text {
      content: "foodie domesticgoddess"
      begin_offset: 100111
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "foodie domesticgoddess"
      begin_offset: 124743
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.10000000149011612
  }
}
entities {
  name: "covent garden"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/015g2s"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Covent_Garden"
  }
  salience: 3.7511221307795495e-05
  mentions {
    text {
      content: "covent garden"
      begin_offset: 18145
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "covent garden"
      begin_offset: 114201
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "urbana lovemesomelights postcardslond1"
  type: ORGANIZATION
  salience: 3.7511221307795495e-05
  mentions {
    text {
      content: "urbana lovemesomelights  postcardslond1"
      begin_offset: 16888
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "levanterman lumierelondon aichoketrust southbanklondon"
  type: PERSON
  salience: 3.748983726836741e-05
  mentions {
    text {
      content: "levanterman lumierelondon aichoketrust southbanklondon"
      begin_offset: 60617
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pyramids"
  type: LOCATION
  salience: 3.7473091651918367e-05
  mentions {
    text {
      content: "pyramids"
      begin_offset: 2034
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 3.741580439964309e-05
  mentions {
    text {
      content: "people"
      begin_offset: 134622
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 3.7340822018450126e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 128211
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.726966679096222e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 104816
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "wabbey westminsterabbey postcardslond1"
  type: ORGANIZATION
  salience: 3.724633279489353e-05
  mentions {
    text {
      content: "wabbey westminsterabbey  postcardslond1"
      begin_offset: 31615
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "momento"
  type: OTHER
  salience: 3.716669380082749e-05
  mentions {
    text {
      content: "momento"
      begin_offset: 64689
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "teacupheaven"
  type: OTHER
  salience: 3.715453203767538e-05
  mentions {
    text {
      content: "teacupheaven"
      begin_offset: 7502
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pop dinner champagne"
  type: OTHER
  salience: 3.715453203767538e-05
  mentions {
    text {
      content: "pop dinner champagne"
      begin_offset: 7885
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "terrace"
  type: LOCATION
  salience: 3.715453203767538e-05
  mentions {
    text {
      content: "terrace"
      begin_offset: 7452
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 3.7067726225359365e-05
  mentions {
    text {
      content: "people"
      begin_offset: 104118
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "shadow puppets"
  type: OTHER
  salience: 3.705255585373379e-05
  mentions {
    text {
      content: "shadow puppets"
      begin_offset: 8886
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 3.705142080434598e-05
  mentions {
    text {
      content: "people"
      begin_offset: 106845
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "bloom westminstercath"
  type: LOCATION
  salience: 3.692231621243991e-05
  mentions {
    text {
      content: "bloom westminstercath"
      begin_offset: 108688
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "avweekjuliet"
  type: OTHER
  salience: 3.6899316910421476e-05
  mentions {
    text {
      content: "avweekjuliet"
      begin_offset: 12712
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "marathon"
  type: EVENT
  salience: 3.683867907966487e-05
  mentions {
    text {
      content: "marathon"
      begin_offset: 15798
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "filipa"
  type: PERSON
  salience: 3.673756873467937e-05
  mentions {
    text {
      content: "filipa"
      begin_offset: 18200
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "palette"
  type: WORK_OF_ART
  salience: 3.669446596177295e-05
  mentions {
    text {
      content: "palette"
      begin_offset: 22455
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.665603435365483e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 82272
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.665603435365483e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 82396
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger"
  type: OTHER
  salience: 3.662271410576068e-05
  mentions {
    text {
      content: "badgerust fox amp badger"
      begin_offset: 76553
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "break london besties"
  type: OTHER
  salience: 3.661904338514432e-05
  mentions {
    text {
      content: "break london besties"
      begin_offset: 25366
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "design innovation medal"
  type: OTHER
  salience: 3.658563218777999e-05
  mentions {
    text {
      content: "design innovation medal"
      begin_offset: 27683
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.637122790678404e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 120759
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wabbey westminsterabbey mvpicsss"
  type: PERSON
  salience: 3.636296605691314e-05
  mentions {
    text {
      content: "wabbey westminsterabbey  mvpicsss"
      begin_offset: 21264
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lumierelondon londonwhispers"
  type: PERSON
  salience: 3.633977030403912e-05
  mentions {
    text {
      content: "lumierelondon  londonwhispers"
      begin_offset: 165350
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 3.629958882811479e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 92122
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon aichoketrust wrap"
  type: OTHER
  salience: 3.627303158282302e-05
  mentions {
    text {
      content: "lumierelondon  aichoketrust wrap"
      begin_offset: 96672
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.612964428612031e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 95681
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.609605846577324e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 102949
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.6088047636440024e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 105595
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "king cross granary square"
  type: LOCATION
  salience: 3.6088047636440024e-05
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 105414
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "dataweb granary square"
  type: OTHER
  salience: 3.608018232625909e-05
  mentions {
    text {
      content: "dataweb  granary square"
      begin_offset: 107301
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.604860103223473e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 114396
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.6035733501194045e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 119768
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 3.603555160225369e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 66031
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.597678369260393e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 93247
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aquarium telephone box"
  type: OTHER
  salience: 3.594059307943098e-05
  mentions {
    text {
      content: "aquarium telephone box"
      begin_offset: 136929
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "bum rossbolwill aquarium telephone box"
  type: CONSUMER_GOOD
  salience: 3.594059307943098e-05
  mentions {
    text {
      content: "bum  rossbolwill  aquarium telephone box"
      begin_offset: 136001
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "borough redbridge regents"
  type: LOCATION
  salience: 3.593022847780958e-05
  mentions {
    text {
      content: "borough redbridge  regents"
      begin_offset: 40943
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "kings"
  type: PERSON
  salience: 3.5925993870478123e-05
  mentions {
    text {
      content: "kings"
      begin_offset: 120331
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "telephone box"
  type: CONSUMER_GOOD
  salience: 3.5922275856137276e-05
  mentions {
    text {
      content: "telephone box"
      begin_offset: 141750
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "borough redbridge regents"
  type: LOCATION
  salience: 3.586843013181351e-05
  mentions {
    text {
      content: "borough redbridge  regents"
      begin_offset: 45945
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "king cross granary square"
  type: LOCATION
  salience: 3.582870340324007e-05
  mentions {
    text {
      content: "king cross granary square"
      begin_offset: 73823
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "places"
  type: LOCATION
  salience: 3.582545468816534e-05
  mentions {
    text {
      content: "places"
      begin_offset: 103060
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "berkeley square"
  type: LOCATION
  salience: 3.5805478546535596e-05
  mentions {
    text {
      content: "berkeley square"
      begin_offset: 76842
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "amp pandora box"
  type: OTHER
  salience: 3.57635690306779e-05
  mentions {
    text {
      content: "amp pandora box"
      begin_offset: 77671
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "southbank"
  type: LOCATION
  salience: 3.5737117286771536e-05
  mentions {
    text {
      content: "southbank"
      begin_offset: 105694
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "borough redbridge regents"
  type: LOCATION
  salience: 3.573680078261532e-05
  mentions {
    text {
      content: "borough redbridge  regents"
      begin_offset: 62005
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "borough redbridge regents"
  type: LOCATION
  salience: 3.573680078261532e-05
  mentions {
    text {
      content: "borough redbridge  regents"
      begin_offset: 62632
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "borough redbridge regents"
  type: LOCATION
  salience: 3.573680078261532e-05
  mentions {
    text {
      content: "borough redbridge  regents"
      begin_offset: 63480
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.5736531572183594e-05
  mentions {
    text {
      content: "city"
      begin_offset: 128273
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.5736531572183594e-05
  mentions {
    text {
      content: "city"
      begin_offset: 129353
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "regent"
  type: ORGANIZATION
  salience: 3.572282730601728e-05
  mentions {
    text {
      content: "regent"
      begin_offset: 64484
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa exhibition"
  type: EVENT
  salience: 3.57115022779908e-05
  mentions {
    text {
      content: "pa  exhibition"
      begin_offset: 33811
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 3.57115022779908e-05
  mentions {
    text {
      content: "team"
      begin_offset: 33690
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "exhibition"
  type: EVENT
  salience: 3.5686371120391414e-05
  mentions {
    text {
      content: "exhibition"
      begin_offset: 36184
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 3.5662615118781105e-05
  mentions {
    text {
      content: "team"
      begin_offset: 39482
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.5
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 3.5525103157851845e-05
  mentions {
    text {
      content: "team"
      begin_offset: 53024
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 3.5477354686008766e-05
  mentions {
    text {
      content: "team"
      begin_offset: 58899
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "teams"
  type: ORGANIZATION
  salience: 3.5477354686008766e-05
  mentions {
    text {
      content: "teams"
      begin_offset: 58271
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "teams"
  type: ORGANIZATION
  salience: 3.5477354686008766e-05
  mentions {
    text {
      content: "teams"
      begin_offset: 58197
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 3.533067865646444e-05
  mentions {
    text {
      content: "video"
      begin_offset: 39579
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "westminsterabbey london"
  type: OTHER
  salience: 3.524486965034157e-05
  mentions {
    text {
      content: "westminsterabbey london"
      begin_offset: 125624
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "westminsterabbey london"
  type: LOCATION
  salience: 3.524486965034157e-05
  mentions {
    text {
      content: "westminsterabbey london"
      begin_offset: 125348
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon aichoketrust solomongreyband philippemorvan london"
  type: ORGANIZATION
  salience: 3.5219334677094594e-05
  mentions {
    text {
      content: "visitlondon aichoketrust solomongreyband philippemorvan  london"
      begin_offset: 134515
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nightlife hatmanoflondon southbanklondon"
  type: ORGANIZATION
  salience: 3.51966118614655e-05
  mentions {
    text {
      content: "nightlife hatmanoflondon  southbanklondon"
      begin_offset: 136615
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere london marshalljulius london"
  type: LOCATION
  salience: 3.5178014513803646e-05
  mentions {
    text {
      content: "lumiere london    marshalljulius london"
      begin_offset: 148564
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "miss"
  type: EVENT
  salience: 3.513599585858174e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 118696
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "cirquebijou amp lambethacademy students"
  type: PERSON
  salience: 3.511110116960481e-05
  mentions {
    text {
      content: "cirquebijou amp lambethacademy students"
      begin_offset: 41592
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 3.506643042783253e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 38552
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 3.506469147396274e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 138205
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "road closures"
      begin_offset: 151803
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "road closures"
      begin_offset: 152950
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 3.496567296679132e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 47686
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "visitlondon lumiere london biuk"
  type: OTHER
  salience: 3.49283182004001e-05
  mentions {
    text {
      content: "visitlondon lumiere london  biuk"
      begin_offset: 42537
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 3.489934897515923e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 56574
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 3.485562410787679e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 61883
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 3.484199623926543e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 64403
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 3.483301043161191e-05
  mentions {
    text {
      content: "buses"
      begin_offset: 158606
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "buses"
      begin_offset: 168741
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "buses"
      begin_offset: 169273
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "buses"
      begin_offset: 169660
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
  }
}
entities {
  name: "lines stations"
  type: LOCATION
  salience: 3.480997838778421e-05
  mentions {
    text {
      content: "lines stations"
      begin_offset: 172728
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "lines stations"
      begin_offset: 174265
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "lines stations"
      begin_offset: 175710
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "lines stations"
      begin_offset: 176551
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.399999976158142
    score: 0.10000000149011612
  }
}
entities {
  name: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
  type: ORGANIZATION
  salience: 3.474168261163868e-05
  mentions {
    text {
      content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
      begin_offset: 30172
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
      begin_offset: 30433
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "repoing winkball vickywinkball aichoketrust visitlondon creativeas"
      begin_offset: 30598
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "pa"
  type: OTHER
  salience: 3.47081950167194e-05
  mentions {
    text {
      content: "pa"
      begin_offset: 75370
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "pa"
  type: OTHER
  salience: 3.47081950167194e-05
  mentions {
    text {
      content: "pa"
      begin_offset: 75526
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 3.466368798399344e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 144248
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 3.465231930022128e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 80880
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chinatown"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01t41x"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Chinatown,_London"
  }
  salience: 3.4610020520631224e-05
  mentions {
    text {
      content: "chinatown"
      begin_offset: 34994
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "chinatown"
      begin_offset: 82953
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "chinatown"
      begin_offset: 161546
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.20000000298023224
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 3.460263542365283e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 150547
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 3.457553975749761e-05
  mentions {
    text {
      content: "way"
      begin_offset: 120709
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "way"
      begin_offset: 138581
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
    score: 0.800000011920929
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.451754673733376e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 33484
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.449177893344313e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 33626
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 3.44703730661422e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 132335
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.446750633884221e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 35989
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "westminster victoria"
  type: LOCATION
  salience: 3.4461223549442366e-05
  mentions {
    text {
      content: "victoria"
      begin_offset: 107636
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "westminster victoria"
      begin_offset: 138149
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster victoria"
      begin_offset: 146480
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster victoria"
      begin_offset: 151747
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "westminster victoria"
      begin_offset: 152894
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 2.200000047683716
    score: 0.30000001192092896
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.438242129050195e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 44431
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.438242129050195e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 44836
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.436360202613287e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 47441
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.436360202613287e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 47032
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "king cross"
  type: OTHER
  salience: 3.43491519743111e-05
  mentions {
    text {
      content: "king cross"
      begin_offset: 95770
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.4345590393058956e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 48714
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 3.422410736675374e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 63936
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "placemaking"
  type: OTHER
  salience: 3.406804535188712e-05
  mentions {
    text {
      content: "placemaking"
      begin_offset: 43781
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "placemaking"
  type: EVENT
  salience: 3.406804535188712e-05
  mentions {
    text {
      content: "placemaking"
      begin_offset: 45204
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "places"
  type: LOCATION
  salience: 3.399802153580822e-05
  mentions {
    text {
      content: "places"
      begin_offset: 52392
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "placemaking"
  type: OTHER
  salience: 3.396700049052015e-05
  mentions {
    text {
      content: "placemaking"
      begin_offset: 55732
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 3.391118298168294e-05
  mentions {
    text {
      content: "place"
      begin_offset: 64514
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scene pa aichoketrust wrap"
  type: OTHER
  salience: 3.3891115890583023e-05
  mentions {
    text {
      content: "scene pa   aichoketrust wrap"
      begin_offset: 63847
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 3.387437027413398e-05
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
      begin_offset: 16169
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.386351090739481e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 86724
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.382533395779319e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 136662
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "london metroldn timeoutlondon lumierelondon lightfestival visitlondon"
  type: ORGANIZATION
  salience: 3.3799045922933146e-05
  mentions {
    text {
      content: "london metroldn timeoutlondon lumierelondon  lightfestival  visitlondon"
      begin_offset: 40797
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.375071901245974e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 111229
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "photographer"
  type: PERSON
  salience: 3.373010622453876e-05
  mentions {
    text {
      content: "photographer"
      begin_offset: 117790
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "photographer"
  type: PERSON
  salience: 3.373010622453876e-05
  mentions {
    text {
      content: "photographer"
      begin_offset: 118074
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 3.372543505975045e-05
  mentions {
    text {
      content: "experience"
      begin_offset: 46314
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "photo"
  type: WORK_OF_ART
  salience: 3.37234596372582e-05
  mentions {
    text {
      content: "photo"
      begin_offset: 119883
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "child hood collectif coin photo"
  type: WORK_OF_ART
  salience: 3.37234596372582e-05
  mentions {
    text {
      content: "child hood collectif coin photo"
      begin_offset: 120780
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.3707168768160045e-05
  mentions {
    text {
      content: "city"
      begin_offset: 98247
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.36764169333037e-05
  mentions {
    text {
      content: "city"
      begin_offset: 106581
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.36764169333037e-05
  mentions {
    text {
      content: "city"
      begin_offset: 106498
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.366907549207099e-05
  mentions {
    text {
      content: "city"
      begin_offset: 108453
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "things"
  type: OTHER
  salience: 3.366578675922938e-05
  mentions {
    text {
      content: "things"
      begin_offset: 103088
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 3.362928327987902e-05
  mentions {
    text {
      content: "experience"
      begin_offset: 59287
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transform experience"
  type: OTHER
  salience: 3.361524431966245e-05
  mentions {
    text {
      content: "transform experience"
      begin_offset: 60190
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "transform experience"
  type: OTHER
  salience: 3.360167102073319e-05
  mentions {
    text {
      content: "transform experience"
      begin_offset: 61910
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "charellemarr"
  type: OTHER
  salience: 3.358853064128198e-05
  mentions {
    text {
      content: "charellemarr"
      begin_offset: 64540
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photography"
  type: WORK_OF_ART
  salience: 3.3576998248463497e-05
  mentions {
    text {
      content: "photography"
      begin_offset: 67443
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.3552671084180474e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 70908
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium lumierelondon"
  type: PERSON
  salience: 3.353716601850465e-05
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  lumierelondon"
      begin_offset: 90631
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wave"
  type: OTHER
  salience: 3.35192889906466e-05
  mentions {
    text {
      content: "wave"
      begin_offset: 34585
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "wave"
  type: OTHER
  salience: 3.35192889906466e-05
  mentions {
    text {
      content: "wave"
      begin_offset: 34895
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.351870327605866e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 76455
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "blue wave king cross photography"
  type: WORK_OF_ART
  salience: 3.349753387738019e-05
  mentions {
    text {
      content: "blue wave king cross  photography"
      begin_offset: 78726
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "intentions check installations"
  type: OTHER
  salience: 3.349133476149291e-05
  mentions {
    text {
      content: "intentions check  installations"
      begin_offset: 115370
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.347740857861936e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 81791
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aquarium fish"
  type: OTHER
  salience: 3.3452259231125936e-05
  mentions {
    text {
      content: "aquarium fish"
      begin_offset: 41453
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.3363121474394575e-05
  mentions {
    text {
      content: "city"
      begin_offset: 85514
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.33497446263209e-05
  mentions {
    text {
      content: "works"
      begin_offset: 91285
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.332484993734397e-05
  mentions {
    text {
      content: "works"
      begin_offset: 95349
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.33090647473e-05
  mentions {
    text {
      content: "works"
      begin_offset: 98735
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.330139588797465e-05
  mentions {
    text {
      content: "works"
      begin_offset: 100625
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 3.3232015994144604e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 46286
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht ilyasayub_photo"
  type: ORGANIZATION
  salience: 3.313600973342545e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag waterlicht   ilyasayub_photo"
      begin_offset: 24085
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "phone box favourite"
  type: OTHER
  salience: 3.313479101052508e-05
  mentions {
    text {
      content: "phone box favourite"
      begin_offset: 38026
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon lumierelondon2018 visitlondon"
  type: ORGANIZATION
  salience: 3.311713953735307e-05
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  visitlondon"
      begin_offset: 63332
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  visitlondon"
      begin_offset: 91751
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon2018  visitlondon"
      begin_offset: 108710
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "worry works"
  type: WORK_OF_ART
  salience: 3.310641841380857e-05
  mentions {
    text {
      content: "worry works"
      begin_offset: 65652
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 3.30939692503307e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 42389
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "favourites"
  type: OTHER
  salience: 3.3075015380745754e-05
  mentions {
    text {
      content: "favourites"
      begin_offset: 43967
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.304622805444524e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 125056
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "granary square"
  type: OTHER
  salience: 3.3040014386642724e-05
  mentions {
    text {
      content: "granary square"
      begin_offset: 125803
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "berkeley square"
  type: OTHER
  salience: 3.302787081338465e-05
  mentions {
    text {
      content: "berkeley square"
      begin_offset: 130263
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.301555261714384e-05
  mentions {
    text {
      content: "works"
      begin_offset: 78019
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sea granary square"
  type: OTHER
  salience: 3.298265437479131e-05
  mentions {
    text {
      content: "sea granary square"
      begin_offset: 146889
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.2958767405943945e-05
  mentions {
    text {
      content: "works"
      begin_offset: 88481
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.2958767405943945e-05
  mentions {
    text {
      content: "works"
      begin_offset: 88275
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.2958767405943945e-05
  mentions {
    text {
      content: "works"
      begin_offset: 87901
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 3.293559711892158e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 63673
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "mattcooperphoto letsyogalondon regram theladytravels"
  type: OTHER
  salience: 3.291718167020008e-05
  mentions {
    text {
      content: "mattcooperphoto letsyogalondon regram  theladytravels"
      begin_offset: 16093
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "mattcooperphoto letsyogalondon regram"
      begin_offset: 30812
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "reflectors"
  type: PERSON
  salience: 3.290505992481485e-05
  mentions {
    text {
      content: "reflectors"
      begin_offset: 35128
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "stop"
  type: LOCATION
  salience: 3.2838204788276926e-05
  mentions {
    text {
      content: "stop"
      begin_offset: 14888
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "newwestend"
  type: PERSON
  salience: 3.2815540180308744e-05
  mentions {
    text {
      content: "newwestend"
      begin_offset: 46787
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "ray catcher"
  type: PERSON
  salience: 3.281051976955496e-05
  mentions {
    text {
      content: "ray catcher"
      begin_offset: 37093
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "southbank"
  type: LOCATION
  salience: 3.2807245588628575e-05
  mentions {
    text {
      content: "southbank"
      begin_offset: 98797
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "southbanklondon"
  type: PERSON
  salience: 3.279969314462505e-05
  mentions {
    text {
      content: "southbanklondon"
      begin_offset: 101723
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "newwestend"
  type: PERSON
  salience: 3.278185613453388e-05
  mentions {
    text {
      content: "newwestend"
      begin_offset: 50742
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "newwestend"
  type: PERSON
  salience: 3.278185613453388e-05
  mentions {
    text {
      content: "newwestend"
      begin_offset: 50387
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "southbank"
  type: ORGANIZATION
  salience: 3.277785799582489e-05
  mentions {
    text {
      content: "southbank"
      begin_offset: 107208
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "pa catch"
  type: OTHER
  salience: 3.2694464607629925e-05
  mentions {
    text {
      content: "pa  catch"
      begin_offset: 48825
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "ron haselden"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/0262c6j"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Ron_Haselden"
  }
  salience: 3.267275678808801e-05
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 83482
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 152746
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 153506
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 154440
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 155482
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 163681
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 163953
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "ron haselden"
      begin_offset: 164365
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 2.799999952316284
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag biuk"
  type: ORGANIZATION
  salience: 3.261885285610333e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  biuk"
      begin_offset: 10754
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "wabbey lumierelondon2018 visitlondon"
  type: ORGANIZATION
  salience: 3.256629497627728e-05
  mentions {
    text {
      content: "wabbey lumierelondon2018  visitlondon"
      begin_offset: 108403
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "wabbey lumierelondon2018  visitlondon"
      begin_offset: 110003
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "southbanklondon"
  type: ORGANIZATION
  salience: 3.249861765652895e-05
  mentions {
    text {
      content: "southbanklondon"
      begin_offset: 82251
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chinatown amp southbank"
  type: ORGANIZATION
  salience: 3.248919892939739e-05
  mentions {
    text {
      content: "chinatown amp southbank"
      begin_offset: 83293
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "southbanklondon"
  type: OTHER
  salience: 3.247101267334074e-05
  mentions {
    text {
      content: "southbanklondon"
      begin_offset: 86598
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 3.2456231565447524e-05
  mentions {
    text {
      content: "music"
      begin_offset: 35698
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 3.22914456774015e-05
  mentions {
    text {
      content: "streets"
      begin_offset: 160707
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "streets"
      begin_offset: 161538
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aworks"
  type: OTHER
  salience: 3.2280080631608143e-05
  mentions {
    text {
      content: "aworks"
      begin_offset: 55940
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colour timeout"
  type: OTHER
  salience: 3.227668275940232e-05
  mentions {
    text {
      content: "colour timeout"
      begin_offset: 84689
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag electricpedals"
  type: ORGANIZATION
  salience: 3.225278851459734e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  electricpedals"
      begin_offset: 31109
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 3.225266118533909e-05
  mentions {
    text {
      content: "music"
      begin_offset: 61393
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "thank"
  type: OTHER
  salience: 3.217080302420072e-05
  mentions {
    text {
      content: "thank"
      begin_offset: 133634
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
  type: ORGANIZATION
  salience: 3.214576281607151e-05
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
      begin_offset: 46845
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 3.211614239262417e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 33548
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "regent street traffic"
  type: OTHER
  salience: 3.210709473933093e-05
  mentions {
    text {
      content: "regent street traffic"
      begin_offset: 92658
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 3.209353963029571e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 35911
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "regent street traffic"
  type: OTHER
  salience: 3.20912768074777e-05
  mentions {
    text {
      content: "regent street traffic"
      begin_offset: 95715
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "regent street traffic"
  type: OTHER
  salience: 3.20912768074777e-05
  mentions {
    text {
      content: "regent street traffic"
      begin_offset: 95982
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust"
  type: ORGANIZATION
  salience: 3.2054114853963256e-05
  mentions {
    text {
      content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust"
      begin_offset: 57447
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "redbridgelive umbrellaproject thisisredbridge mylocalculture aichoketrust"
  type: PERSON
  salience: 3.202779407729395e-05
  mentions {
    text {
      content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  aichoketrust"
      begin_offset: 62101
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 3.20271028613206e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 113881
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "hats"
  type: OTHER
  salience: 3.2010622817324474e-05
  mentions {
    text {
      content: "hats"
      begin_offset: 22663
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "winterlights yourcanarywharf thegl0betrotter westminster abbey"
  type: LOCATION
  salience: 3.200943683623336e-05
  mentions {
    text {
      content: "winterlights yourcanarywharf  thegl0betrotter westminster abbey"
      begin_offset: 39174
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 3.200165519956499e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 121675
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 3.1996787583921105e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 46967
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "regent street pa"
  type: LOCATION
  salience: 3.1994033633964136e-05
  mentions {
    text {
      content: "regent street pa"
      begin_offset: 135059
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 3.198002013959922e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 48636
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "mayoroflondon staing"
  type: OTHER
  salience: 3.196897159796208e-05
  mentions {
    text {
      content: "mayoroflondon staing"
      begin_offset: 129549
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "visitlondon amp"
      begin_offset: 129533
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.399999976158142
    score: 0.699999988079071
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 3.1967552786227316e-05
  mentions {
    text {
      content: "people"
      begin_offset: 105310
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "highlight"
  type: OTHER
  salience: 3.189224662492052e-05
  mentions {
    text {
      content: "highlight"
      begin_offset: 61675
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium westminster abbey"
  type: LOCATION
  salience: 3.188601112924516e-05
  mentions {
    text {
      content: "\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium westminster abbey"
      begin_offset: 51551
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "frictions regent street standing water"
  type: OTHER
  salience: 3.186553294654004e-05
  mentions {
    text {
      content: "frictions regent street standing water"
      begin_offset: 97050
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 3.173874574713409e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 88605
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "totastemaker lumiere marshalljulius london leicester square"
  type: ORGANIZATION
  salience: 3.169260889990255e-05
  mentions {
    text {
      content: "totastemaker lumiere  marshalljulius london leicester square"
      begin_offset: 34312
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "treat"
  type: CONSUMER_GOOD
  salience: 3.1661758839618415e-05
  mentions {
    text {
      content: "treat"
      begin_offset: 42675
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "stations"
  type: ORGANIZATION
  salience: 3.160972482874058e-05
  mentions {
    text {
      content: "stations"
      begin_offset: 47971
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 3.154625665047206e-05
  mentions {
    text {
      content: "streets"
      begin_offset: 95224
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "life borrower king cross"
  type: OTHER
  salience: 3.154340083710849e-05
  mentions {
    text {
      content: "life borrower king cross"
      begin_offset: 89540
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 3.153871148242615e-05
  mentions {
    text {
      content: "street"
      begin_offset: 98321
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "regent street"
  type: LOCATION
  salience: 3.153131183353253e-05
  mentions {
    text {
      content: "regent street"
      begin_offset: 98847
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "tubes"
  type: OTHER
  salience: 3.1510237022303045e-05
  mentions {
    text {
      content: "tubes"
      begin_offset: 62284
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "jubilee line baker street"
  type: LOCATION
  salience: 3.1509935070062056e-05
  mentions {
    text {
      content: "jubilee line baker street"
      begin_offset: 106092
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "roaming streets"
  type: LOCATION
  salience: 3.147676034132019e-05
  mentions {
    text {
      content: "roaming streets"
      begin_offset: 115425
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "streets"
  type: LOCATION
  salience: 3.147676034132019e-05
  mentions {
    text {
      content: "streets"
      begin_offset: 116885
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 3.131608900730498e-05
  mentions {
    text {
      content: "street"
      begin_offset: 68328
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chandeliers"
  type: OTHER
  salience: 3.127097079413943e-05
  mentions {
    text {
      content: "chandeliers"
      begin_offset: 75317
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "chandeliers"
  type: OTHER
  salience: 3.127097079413943e-05
  mentions {
    text {
      content: "chandeliers"
      begin_offset: 75473
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 3.121679765172303e-05
  mentions {
    text {
      content: "street"
      begin_offset: 85080
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "shopping guide"
  type: WORK_OF_ART
  salience: 3.1214287446346134e-05
  mentions {
    text {
      content: "shopping guide"
      begin_offset: 50954
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 3.120856126770377e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 36427
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 3.1208157452056184e-05
  mentions {
    text {
      content: "street"
      begin_offset: 87472
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "ici themayfairhotel"
  type: OTHER
  salience: 3.119649409200065e-05
  mentions {
    text {
      content: "ici   themayfairhotel"
      begin_offset: 94925
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "par"
      begin_offset: 94921
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "south bank pa city stars"
  type: LOCATION
  salience: 3.11946241708938e-05
  mentions {
    text {
      content: "south bank pa  city stars"
      begin_offset: 98577
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 3.1187442800728604e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 100962
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 3.117891901638359e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 153797
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 3.1175597541732714e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 119436
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 3.116808511549607e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 39694
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 3.114699575235136e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 113540
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "frictions lumierelondon fox"
  type: OTHER
  salience: 3.111071418970823e-05
  mentions {
    text {
      content: "frictions  lumierelondon fox"
      begin_offset: 92703
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 3.106752774328925e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 53072
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 3.102577102254145e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 58636
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 3.0988172511570156e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 65373
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pattenden couesy aichoke aists rainbow lumierelondon"
  type: PERSON
  salience: 3.0977316782809794e-05
  mentions {
    text {
      content: "pattenden couesy aichoke aists rainbow lumierelondon"
      begin_offset: 145339
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 3.0959890864323825e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 73254
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 3.0949446227168664e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 73548
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "spirits"
  type: OTHER
  salience: 3.0944891477702186e-05
  mentions {
    text {
      content: "spirits"
      begin_offset: 120587
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photography"
  type: WORK_OF_ART
  salience: 3.0925766623113304e-05
  mentions {
    text {
      content: "photography"
      begin_offset: 125143
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "exhibits"
  type: OTHER
  salience: 3.0921401048544794e-05
  mentions {
    text {
      content: "exhibits"
      begin_offset: 68539
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "videography musicvideo zacdenman badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 3.091974213020876e-05
  mentions {
    text {
      content: "videography musicvideo zacdenman  badgerust fox amp badger stars"
      begin_offset: 79155
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.09142233163584e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 128422
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 3.091033795499243e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 80058
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 3.090952304773964e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 41019
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photography"
  type: OTHER
  salience: 3.0903025617590174e-05
  mentions {
    text {
      content: "photography"
      begin_offset: 133027
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.0903025617590174e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 131749
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.0903025617590174e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 131844
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 3.090116661041975e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 82605
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.08975504594855e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 134634
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 3.089220990659669e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 82801
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 3.088346420554444e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 85924
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 3.088346420554444e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 85601
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "photo"
  type: WORK_OF_ART
  salience: 3.087130608037114e-05
  mentions {
    text {
      content: "photo"
      begin_offset: 145327
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.086626747972332e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 145678
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.086129800067283e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 149622
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.086129800067283e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 149112
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 3.085727439611219e-05
  mentions {
    text {
      content: "display"
      begin_offset: 98101
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 3.085639400524087e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 150168
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "photo"
  type: WORK_OF_ART
  salience: 3.085639400524087e-05
  mentions {
    text {
      content: "photo"
      begin_offset: 151027
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "photo"
  type: WORK_OF_ART
  salience: 3.085639400524087e-05
  mentions {
    text {
      content: "photo"
      begin_offset: 151418
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 3.08563576254528e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 46021
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 3.0850034818286076e-05
  mentions {
    text {
      content: "display"
      begin_offset: 98562
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dubai"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01f08r"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Dubai"
  }
  salience: 3.082515104324557e-05
  mentions {
    text {
      content: "dubai"
      begin_offset: 55388
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ductack theatre"
      begin_offset: 55372
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "mason window display"
  type: OTHER
  salience: 3.0815797799732536e-05
  mentions {
    text {
      content: "mason window display"
      begin_offset: 110307
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "displays"
  type: OTHER
  salience: 3.080931128351949e-05
  mentions {
    text {
      content: "displays"
      begin_offset: 112826
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fox"
  type: OTHER
  salience: 3.077935252804309e-05
  mentions {
    text {
      content: "fox"
      begin_offset: 82856
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.077164728892967e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 37861
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 3.076385473832488e-05
  mentions {
    text {
      content: "city"
      begin_offset: 152008
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.075220956816338e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 40714
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 3.0743121897103265e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 62081
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 3.0743121897103265e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 62708
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 3.0743121897103265e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 63556
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.073373591178097e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 42574
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "something"
  type: OTHER
  salience: 3.073147308896296e-05
  mentions {
    text {
      content: "something"
      begin_offset: 64289
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "phone box"
  type: OTHER
  salience: 3.0726259865332395e-05
  mentions {
    text {
      content: "phone box"
      begin_offset: 101201
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "fish phone box"
  type: OTHER
  salience: 3.0719318601768464e-05
  mentions {
    text {
      content: "fish phone box"
      begin_offset: 103848
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.071613173233345e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 44286
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "red telephone box"
  type: CONSUMER_GOOD
  salience: 3.0712501029483974e-05
  mentions {
    text {
      content: "red telephone box"
      begin_offset: 106220
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0683229852002114e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 48997
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0683229852002114e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 49123
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0683229852002114e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 48921
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "red telephone box"
  type: CONSUMER_GOOD
  salience: 3.0674022127641365e-05
  mentions {
    text {
      content: "red telephone box"
      begin_offset: 117127
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0667804821860045e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 51245
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0667804821860045e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 51321
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0667804821860045e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 50675
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "mayfair"
  type: EVENT
  salience: 3.0663675715913996e-05
  mentions {
    text {
      content: "mayfair"
      begin_offset: 115124
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0652994610136375e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 52154
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0652994610136375e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 52577
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0652994610136375e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 52230
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53735
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54115
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54039
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53583
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54714
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53963
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54790
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53507
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54936
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54866
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53887
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53811
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54638
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54410
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54334
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54562
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 53659
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54486
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 3.0638748285127804e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 54258
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "awork entre les rangs _kanva behindthescenes jmrobes343jmr"
  type: WORK_OF_ART
  salience: 3.063468466280028e-05
  mentions {
    text {
      content: "awork entre les rangs _kanva behindthescenes jmrobes343jmr"
      begin_offset: 4295
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "awork entre les rangs _kanva behindthescenes"
      begin_offset: 32321
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "awork entre les rangs _kanva"
      begin_offset: 33757
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.20000000298023224
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 3.062226824113168e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 139902
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon woxxy lumiere lumierelondon lumierelondon2018"
  type: ORGANIZATION
  salience: 3.054267290281132e-05
  mentions {
    text {
      content: "lumierelondon   woxxy lumiere lumierelondon  lumierelondon2018"
      begin_offset: 93033
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "care"
  type: OTHER
  salience: 3.053424370591529e-05
  mentions {
    text {
      content: "care"
      begin_offset: 37731
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "description"
  type: OTHER
  salience: 3.0524675821652636e-05
  mentions {
    text {
      content: "description"
      begin_offset: 141136
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "description"
      begin_offset: 142311
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "london lumiere rudie1750 lumierelondon2018"
  type: ORGANIZATION
  salience: 3.0520324798999354e-05
  mentions {
    text {
      content: "london lumiere rudie1750  lumierelondon2018"
      begin_offset: 97420
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "quocatron lumiere lumierelondon lumiere2018"
  type: ORGANIZATION
  salience: 3.0485833121929318e-05
  mentions {
    text {
      content: "quocatron lumiere  lumierelondon lumiere2018"
      begin_offset: 107144
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 3.048078724532388e-05
  mentions {
    text {
      content: "works"
      begin_offset: 124136
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 3.048078724532388e-05
  mentions {
    text {
      content: "work"
      begin_offset: 124355
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "haya luz segunda edici\303\263n del festival de luces en londres lumierelondon"
  type: PERSON
  salience: 3.0472887374344282e-05
  mentions {
    text {
      content: "haya luz segunda edici\303\263n del festival de luces en londres  lumierelondon"
      begin_offset: 112022
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "fish phone box"
  type: OTHER
  salience: 3.046251913474407e-05
  mentions {
    text {
      content: "fish phone box"
      begin_offset: 78414
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "waterlicht granarysquare kingscross lumierelondon"
  type: PERSON
  salience: 3.0454277293756604e-05
  mentions {
    text {
      content: "waterlicht granarysquare kingscross  lumierelondon"
      begin_offset: 117481
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "fish phone box"
  type: OTHER
  salience: 3.0426777811953798e-05
  mentions {
    text {
      content: "fish phone box"
      begin_offset: 85672
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "beasts"
  type: OTHER
  salience: 3.0418357710004784e-05
  mentions {
    text {
      content: "beasts"
      begin_offset: 87262
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "illuminatedriv fish phone box"
  type: CONSUMER_GOOD
  salience: 3.0418357710004784e-05
  mentions {
    text {
      content: "illuminatedriv fish phone box"
      begin_offset: 86118
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 3.041724812646862e-05
  mentions {
    text {
      content: "work"
      begin_offset: 149272
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "experience lovelondon fish phone box"
  type: CONSUMER_GOOD
  salience: 3.0410123144974932e-05
  mentions {
    text {
      content: "experience  lovelondon fish phone box"
      begin_offset: 88122
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "phone box"
  type: CONSUMER_GOOD
  salience: 3.0410123144974932e-05
  mentions {
    text {
      content: "phone box"
      begin_offset: 87634
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "south bank"
  type: OTHER
  salience: 3.0393635825021192e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 84285
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "south bank"
      begin_offset: 86640
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "wave pa exhibition"
  type: EVENT
  salience: 3.0283224987215362e-05
  mentions {
    text {
      content: "wave pa  exhibition"
      begin_offset: 130780
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "london lumierelondon2018 lumiere"
  type: LOCATION
  salience: 3.0244289519032463e-05
  mentions {
    text {
      content: "london lumierelondon2018  lumiere"
      begin_offset: 78059
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "women"
  type: PERSON
  salience: 3.014941103174351e-05
  mentions {
    text {
      content: "women"
      begin_offset: 35867
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 3.007700252055656e-05
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 41913
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "moon water jd southbanklondon"
  type: ORGANIZATION
  salience: 2.9994182114023715e-05
  mentions {
    text {
      content: "moon water jd  southbanklondon"
      begin_offset: 134159
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 2.995766408275813e-05
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 57408
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "guide rossbolwill aquarium telephone box"
  type: CONSUMER_GOOD
  salience: 2.9867478588130325e-05
  mentions {
    text {
      content: "guide  rossbolwill  aquarium telephone box"
      begin_offset: 140039
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "exitmagazine maxcoopermax"
  type: EVENT
  salience: 2.9769606044283137e-05
  mentions {
    text {
      content: "exitmagazine  maxcoopermax"
      begin_offset: 128551
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  mentions {
    text {
      content: "youtube london light festival"
      begin_offset: 128520
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.100000023841858
    score: 0.5
  }
}
entities {
  name: "videoproduction zacvideo studiosession"
  type: ORGANIZATION
  salience: 2.9685808840440586e-05
  mentions {
    text {
      content: "videoproduction zacvideo studiosession"
      begin_offset: 2771
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "soho"
  type: OTHER
  salience: 2.9651877412106842e-05
  mentions {
    text {
      content: "soho"
      begin_offset: 42094
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 2.9645178074133582e-05
  mentions {
    text {
      content: "display"
      begin_offset: 128150
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "carnabylondon"
  type: OTHER
  salience: 2.961866994155571e-05
  mentions {
    text {
      content: "carnabylondon"
      begin_offset: 47096
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.958073491754476e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 117152
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.9574905056506395e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 119835
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.30000001192092896
  }
}
entities {
  name: "field flower"
  type: OTHER
  salience: 2.948176370409783e-05
  mentions {
    text {
      content: "field flower"
      begin_offset: 35110
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.937676981673576e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 78392
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 2.9352482670219615e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 123731
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 2.9336175430216826e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 131129
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.9326241929084063e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 89206
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.9326241929084063e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 89032
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 2.9325703508220613e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 133994
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 2.9325703508220613e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 135235
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "traffic"
  type: OTHER
  salience: 2.9325703508220613e-05
  mentions {
    text {
      content: "traffic"
      begin_offset: 134339
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.9318474844330922e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 89364
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain king cross"
  type: OTHER
  salience: 2.9252998501760885e-05
  mentions {
    text {
      content: "rain king cross"
      begin_offset: 99157
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "lumiere experience king cross"
  type: OTHER
  salience: 2.9220534997875802e-05
  mentions {
    text {
      content: "lumiere experience king cross"
      begin_offset: 110510
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aist"
  type: PERSON
  salience: 2.910609146056231e-05
  mentions {
    text {
      content: "aist"
      begin_offset: 81685
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag chrisschorah"
  type: ORGANIZATION
  salience: 2.9103124688845128e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  chrisschorah"
      begin_offset: 19931
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.6000000238418579
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 2.9073496989440173e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 87974
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "merrypranksters engcathedrals"
  type: PERSON
  salience: 2.9068978619761765e-05
  mentions {
    text {
      content: "merrypranksters   engcathedrals"
      begin_offset: 21227
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 2.9053629987174645e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 41347
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon visitlondon tflbusales"
  type: OTHER
  salience: 2.898275852203369e-05
  mentions {
    text {
      content: "lumierelondon visitlondon  tflbusales"
      begin_offset: 27186
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 2.885397225327324e-05
  mentions {
    text {
      content: "street"
      begin_offset: 124115
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "bond street"
  type: LOCATION
  salience: 2.884320383600425e-05
  mentions {
    text {
      content: "bond street"
      begin_offset: 127621
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "regent street"
  type: LOCATION
  salience: 2.8832755560870282e-05
  mentions {
    text {
      content: "regent street"
      begin_offset: 132543
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "street"
  type: LOCATION
  salience: 2.8827646019635722e-05
  mentions {
    text {
      content: "street"
      begin_offset: 133901
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "jubilee line baker street"
  type: LOCATION
  salience: 2.8822609237977304e-05
  mentions {
    text {
      content: "jubilee line baker street"
      begin_offset: 136296
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "earlham street"
  type: LOCATION
  salience: 2.8780272259609774e-05
  mentions {
    text {
      content: "earlham street"
      begin_offset: 154605
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 2.8715789085254073e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 101795
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 2.8702928830171004e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 104679
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 2.8702928830171004e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 105213
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "world"
  type: LOCATION
  salience: 2.864319867512677e-05
  mentions {
    text {
      content: "world"
      begin_offset: 49351
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "nandosuk badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8551319701364264e-05
  mentions {
    text {
      content: "nandosuk   badgerust fox amp badger stars"
      begin_offset: 123100
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8545868190121837e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 124982
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 2.8540500352391973e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 125443
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 2.8540500352391973e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 126887
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.853000842151232e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 130385
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "voyage badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.852487887139432e-05
  mentions {
    text {
      content: "voyage  badgerust fox amp badger stars"
      begin_offset: 131552
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon lumiere badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.852487887139432e-05
  mentions {
    text {
      content: "lumierelondon lumiere   badgerust fox amp badger stars"
      begin_offset: 132669
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: PERSON
  salience: 2.852487887139432e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 131971
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 2.8514839868876152e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 135447
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 2.8514839868876152e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 136545
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8509928597486578e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 138969
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 2.8509928597486578e-05
  mentions {
    text {
      content: "dreams"
      begin_offset: 137917
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8505084628704935e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 139913
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: PERSON
  salience: 2.8500309781520627e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 141859
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "someone"
  type: PERSON
  salience: 2.8491234843386337e-05
  mentions {
    text {
      content: "someone"
      begin_offset: 73675
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "lumierelondon badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8486361770774238e-05
  mentions {
    text {
      content: "lumierelondon  badgerust fox amp badger stars"
      begin_offset: 148773
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 2.8477366868173704e-05
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 151902
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "fox amp badger stars"
  type: ORGANIZATION
  salience: 2.84729539998807e-05
  mentions {
    text {
      content: "fox amp badger stars"
      begin_offset: 153685
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8455791834858246e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 97800
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flower"
  type: OTHER
  salience: 2.8412254323484376e-05
  mentions {
    text {
      content: "flower"
      begin_offset: 33734
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 2.839989792846609e-05
  mentions {
    text {
      content: "spirit"
      begin_offset: 116831
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "neon bikes reflection rain"
  type: OTHER
  salience: 2.8344933525659144e-05
  mentions {
    text {
      content: "neon bikes reflection rain"
      begin_offset: 91183
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8310359994065948e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 98914
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8310359994065948e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 99033
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8303842555033043e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 101425
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8297446988290176e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 104092
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8291166017879732e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 105535
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "oxfordcircus"
  type: PERSON
  salience: 2.8291166017879732e-05
  mentions {
    text {
      content: "oxfordcircus"
      begin_offset: 105091
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8291166017879732e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 105822
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.828499964380171e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 107017
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.828499964380171e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 107096
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.828499964380171e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 108206
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.828499964380171e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 106819
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.828499964380171e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 107768
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.82789405900985e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 109575
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "rainfall"
  type: OTHER
  salience: 2.8272987037780695e-05
  mentions {
    text {
      content: "rainfall"
      begin_offset: 111582
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8267135348869488e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 114582
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light spirit"
  type: OTHER
  salience: 2.826531999744475e-05
  mentions {
    text {
      content: "light spirit"
      begin_offset: 66113
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.826138006639667e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 116084
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8254929929971695e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 68881
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8254929929971695e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 68707
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8254929929971695e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 69120
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8250153263797984e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 119744
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8244674467714503e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 122492
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 2.8220001695444807e-05
  mentions {
    text {
      content: "display"
      begin_offset: 128100
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.821624730131589e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 75914
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.821624730131589e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 76088
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "displays"
  type: OTHER
  salience: 2.821485213644337e-05
  mentions {
    text {
      content: "displays"
      begin_offset: 130686
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.819842666212935e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 78830
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "displays"
  type: OTHER
  salience: 2.819499422912486e-05
  mentions {
    text {
      content: "displays"
      begin_offset: 139025
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8181484594824724e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 81998
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "light spirit"
  type: OTHER
  salience: 2.8181484594824724e-05
  mentions {
    text {
      content: "light spirit"
      begin_offset: 82694
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.8181484594824724e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 81030
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 2.8173319151392207e-05
  mentions {
    text {
      content: "spirit"
      begin_offset: 83537
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "light spirit"
  type: OTHER
  salience: 2.8173319151392207e-05
  mentions {
    text {
      content: "light spirit"
      begin_offset: 83686
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.8127460609539412e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 66609
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "london rain"
  type: OTHER
  salience: 2.8117119654780254e-05
  mentions {
    text {
      content: "london rain"
      begin_offset: 69401
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "regent street alberich rossbolwill aquarium telephone box"
  type: OTHER
  salience: 2.8093178116250783e-05
  mentions {
    text {
      content: "regent street alberich   rossbolwill  aquarium telephone box"
      begin_offset: 135602
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "japan"
  type: LOCATION
  salience: 2.8089618353988044e-05
  mentions {
    text {
      content: "japan"
      begin_offset: 11336
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "japan"
      begin_offset: 11386
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "evening rain"
  type: OTHER
  salience: 2.80052081507165e-05
  mentions {
    text {
      content: "evening rain"
      begin_offset: 89488
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.7997946745017543e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 91068
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon visitlondon trafalgar"
  type: LOCATION
  salience: 2.7931690055993386e-05
  mentions {
    text {
      content: "lumierelondon  visitlondon trafalgar"
      begin_offset: 65278
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "theltda tonyqpr123 lumierelondon"
  type: PERSON
  salience: 2.7917019906453788e-05
  mentions {
    text {
      content: "theltda tonyqpr123 lumierelondon"
      begin_offset: 126498
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 2.790253347484395e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 68994
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierefestival lumierelondon lumiere lumierelondon2018"
  type: PERSON
  salience: 2.79017385764746e-05
  mentions {
    text {
      content: "lumierefestival  lumierelondon lumiere lumierelondon2018"
      begin_offset: 132809
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
  type: PERSON
  salience: 2.7896794563275762e-05
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth"
      begin_offset: 134771
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "granarysquare"
  type: OTHER
  salience: 2.788517485896591e-05
  mentions {
    text {
      content: "granarysquare"
      begin_offset: 100477
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon lumierelondon2018 visitlondon robbrown678 lumierelondon"
  type: PERSON
  salience: 2.788237907225266e-05
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  visitlondon  robbrown678 lumierelondon"
      begin_offset: 139524
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "benoit deseille lumierelondon2018"
  type: PERSON
  salience: 2.7855265216203406e-05
  mentions {
    text {
      content: "benoit deseille lumierelondon2018"
      begin_offset: 152659
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visit website"
  type: OTHER
  salience: 2.781101102300454e-05
  mentions {
    text {
      content: "visit website"
      begin_offset: 65747
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 2.7751302695833147e-05
  mentions {
    text {
      content: "way"
      begin_offset: 75073
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "highlight"
  type: EVENT
  salience: 2.7704916647053324e-05
  mentions {
    text {
      content: "highlight"
      begin_offset: 88820
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "pics"
  type: WORK_OF_ART
  salience: 2.7662379579851404e-05
  mentions {
    text {
      content: "pics"
      begin_offset: 64219
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "victoriabid greypointe cubitt"
  type: PERSON
  salience: 2.7638463507173583e-05
  mentions {
    text {
      content: "victoriabid  greypointe  cubitt"
      begin_offset: 3219
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon jakubkrupa"
  type: ORGANIZATION
  salience: 2.7638463507173583e-05
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon  jakubkrupa"
      begin_offset: 3881
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.759673043328803e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 107363
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.7579300876823254e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 114026
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.7575182684813626e-05
  mentions {
    text {
      content: "people"
      begin_offset: 105848
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "treat rain"
  type: OTHER
  salience: 2.7573685656534508e-05
  mentions {
    text {
      content: "treat  rain"
      begin_offset: 116451
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.756735193543136e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 89901
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.7546151613933034e-05
  mentions {
    text {
      content: "people"
      begin_offset: 115741
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.7546151613933034e-05
  mentions {
    text {
      content: "people"
      begin_offset: 115755
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 2.7545438570086844e-05
  mentions {
    text {
      content: "video"
      begin_offset: 127513
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.754063461907208e-05
  mentions {
    text {
      content: "people"
      begin_offset: 117256
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.75352067546919e-05
  mentions {
    text {
      content: "people"
      begin_offset: 119518
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "londonislovinit thelondoneye lovelondon visitlondon londoneye thebroadwaysw1"
  type: ORGANIZATION
  salience: 2.750077510427218e-05
  mentions {
    text {
      content: "londonislovinit thelondoneye lovelondon visitlondon londoneye   thebroadwaysw1"
      begin_offset: 4580
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 2.749980012595188e-05
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 144093
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "snow amp rain"
  type: OTHER
  salience: 2.7345953640178777e-05
  mentions {
    text {
      content: "snow amp rain"
      begin_offset: 85441
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "shots"
  type: OTHER
  salience: 2.7301912268740125e-05
  mentions {
    text {
      content: "shots"
      begin_offset: 42736
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "walkers"
  type: CONSUMER_GOOD
  salience: 2.7271336875855923e-05
  mentions {
    text {
      content: "walkers"
      begin_offset: 45555
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "biuk"
  type: OTHER
  salience: 2.7271336875855923e-05
  mentions {
    text {
      content: "biuk"
      begin_offset: 47505
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "50 aists edgillwhl"
  type: PERSON
  salience: 2.7266984034213237e-05
  mentions {
    text {
      content: "50 aists  edgillwhl"
      begin_offset: 10888
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "walk"
  type: EVENT
  salience: 2.7257045076112263e-05
  mentions {
    text {
      content: "walk"
      begin_offset: 47959
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nofilters"
  type: PERSON
  salience: 2.7243342628935352e-05
  mentions {
    text {
      content: "nofilters"
      begin_offset: 50568
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 2.7217529350309633e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 54214
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon westminsterabbey"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/0bvqq"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Westminster_Abbey"
  }
  salience: 2.7213394787395373e-05
  mentions {
    text {
      content: "westminsterabbey"
      begin_offset: 98369
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "lumierelondon westminsterabbey"
      begin_offset: 122804
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.7205340302316472e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 57239
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "capital"
  type: LOCATION
  salience: 2.7205340302316472e-05
  mentions {
    text {
      content: "capital"
      begin_offset: 55962
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 2.7182231860933825e-05
  mentions {
    text {
      content: "love motion"
      begin_offset: 60110
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "city streets"
  type: LOCATION
  salience: 2.718043833738193e-05
  mentions {
    text {
      content: "city streets"
      begin_offset: 105013
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.716063136176672e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 64810
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thisislondon lumierelondon travel culturetrip londonphotography stillnojob hireme thebroadwaysw1"
  type: LOCATION
  salience: 2.706417035369668e-05
  mentions {
    text {
      content: "thisislondon  lumierelondon travel culturetrip londonphotography stillnojob hireme  thebroadwaysw1"
      begin_offset: 21780
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "fish phonebox aquarium"
  type: OTHER
  salience: 2.7056266844738275e-05
  mentions {
    text {
      content: "fish phonebox aquarium"
      begin_offset: 152617
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 2.7052075893152505e-05
  mentions {
    text {
      content: "aquarium"
      begin_offset: 154575
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag thebroadwaysw1"
  type: ORGANIZATION
  salience: 2.7035179300582968e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag  thebroadwaysw1"
      begin_offset: 23831
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "details"
  type: OTHER
  salience: 2.6989260732079856e-05
  mentions {
    text {
      content: "details"
      begin_offset: 64378
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aists"
  type: PERSON
  salience: 2.6877571144723333e-05
  mentions {
    text {
      content: "aists"
      begin_offset: 129376
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 2.6862089725909755e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 158217
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "camera"
  type: CONSUMER_GOOD
  salience: 2.6809992050402798e-05
  mentions {
    text {
      content: "camera"
      begin_offset: 38680
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "thanks"
  type: OTHER
  salience: 2.678380587894935e-05
  mentions {
    text {
      content: "thanks"
      begin_offset: 117962
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "camera"
  type: CONSUMER_GOOD
  salience: 2.6776962840813212e-05
  mentions {
    text {
      content: "camera"
      begin_offset: 42715
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "case study events management students"
  type: PERSON
  salience: 2.676162330317311e-05
  mentions {
    text {
      content: "case study events management students"
      begin_offset: 45288
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "communities"
  type: PERSON
  salience: 2.676162330317311e-05
  mentions {
    text {
      content: "communities"
      begin_offset: 45437
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "students"
  type: PERSON
  salience: 2.676162330317311e-05
  mentions {
    text {
      content: "students"
      begin_offset: 43894
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.30000001192092896
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 2.674000097613316e-05
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 136425
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "need suppo"
  type: PERSON
  salience: 2.671858783287462e-05
  mentions {
    text {
      content: "need suppo"
      begin_offset: 49396
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "ballerinas"
  type: PERSON
  salience: 2.668224806257058e-05
  mentions {
    text {
      content: "ballerinas"
      begin_offset: 55284
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "commission"
  type: ORGANIZATION
  salience: 2.664881685632281e-05
  mentions {
    text {
      content: "commission"
      begin_offset: 62237
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.6569039619062096e-05
  mentions {
    text {
      content: "people"
      begin_offset: 108037
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "wave brightnights"
  type: OTHER
  salience: 2.6557499950286e-05
  mentions {
    text {
      content: "wave brightnights"
      begin_offset: 136723
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fish check phone box check"
  type: OTHER
  salience: 2.6473264369997196e-05
  mentions {
    text {
      content: "fish check phone box check"
      begin_offset: 116714
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "look"
  type: OTHER
  salience: 2.642769322847016e-05
  mentions {
    text {
      content: "look"
      begin_offset: 37741
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lovelondon visitlondon"
  type: ORGANIZATION
  salience: 2.637267971294932e-05
  mentions {
    text {
      content: "lovelondon  visitlondon"
      begin_offset: 137887
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 2.6283571060048416e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 121627
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 2.624497574288398e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 39944
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "oxford street"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01hc94"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Oxford_Street"
  }
  salience: 2.6217190679744817e-05
  mentions {
    text {
      content: "oxford street"
      begin_offset: 115317
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "oxford street"
      begin_offset: 164292
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 2.618610415083822e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 48293
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 2.618610415083822e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 48206
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "ballet rambe projection"
  type: OTHER
  salience: 2.6154471925110556e-05
  mentions {
    text {
      content: "ballet rambe projection"
      begin_offset: 113668
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminster westminsterabbey"
  type: LOCATION
  salience: 2.613645301607903e-05
  mentions {
    text {
      content: "westminster westminsterabbey"
      begin_offset: 133787
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "westminster westminsterabbey"
      begin_offset: 149745
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.20000000298023224
  }
}
entities {
  name: "miss"
  type: PERSON
  salience: 2.613368815218564e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 122310
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "miss"
  type: PERSON
  salience: 2.613368815218564e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 122305
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "oxford street wabbey stas"
  type: PERSON
  salience: 2.6122717827092856e-05
  mentions {
    text {
      content: "oxford street  wabbey  stas"
      begin_offset: 6109
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "go"
  type: OTHER
  salience: 2.6103685740963556e-05
  mentions {
    text {
      content: "go"
      begin_offset: 62973
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "lumierelondon lumierelondon2018 leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  type: ORGANIZATION
  salience: 2.6059613446705043e-05
  mentions {
    text {
      content: "lumierelondon  lumierelondon2018  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
      begin_offset: 93283
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
      begin_offset: 127550
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
      begin_offset: 145805
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayor"
  type: PERSON
  salience: 2.6041208911919966e-05
  mentions {
    text {
      content: "mayor"
      begin_offset: 95181
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "miss"
  type: EVENT
  salience: 2.603510074550286e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 65626
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 2.6028572392533533e-05
  mentions {
    text {
      content: "spirit"
      begin_offset: 126294
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "project"
  type: OTHER
  salience: 2.6025234546978027e-05
  mentions {
    text {
      content: "project"
      begin_offset: 65900
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "spire"
  type: OTHER
  salience: 2.6023752070614137e-05
  mentions {
    text {
      content: "spire"
      begin_offset: 129220
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.6022880774689838e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 101468
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.6022880774689838e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 102302
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.601122650958132e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 105034
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 2.601122650958132e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 105489
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "spirits"
  type: OTHER
  salience: 2.6000692741945386e-05
  mentions {
    text {
      content: "spirits"
      begin_offset: 138459
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 72359
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 71662
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 72580
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: PERSON
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 71424
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 72138
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 72801
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 73022
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.5997358534368686e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 71900
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 2.5983841624110937e-05
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 115176
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 2.597507045720704e-05
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 150591
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "projection"
  type: OTHER
  salience: 2.5948043912649155e-05
  mentions {
    text {
      content: "projection"
      begin_offset: 82515
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "host"
  type: PERSON
  salience: 2.5947192625608295e-05
  mentions {
    text {
      content: "host"
      begin_offset: 5556
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "peek"
  type: OTHER
  salience: 2.5930285119102336e-05
  mentions {
    text {
      content: "peek"
      begin_offset: 8483
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.590162148408126e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 126137
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.5878332962747663e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 135803
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rains"
  type: OTHER
  salience: 2.5869479941320606e-05
  mentions {
    text {
      content: "rains"
      begin_offset: 141009
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rain"
  type: OTHER
  salience: 2.5869479941320606e-05
  mentions {
    text {
      content: "rain"
      begin_offset: 140954
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rains"
  type: OTHER
  salience: 2.5869479941320606e-05
  mentions {
    text {
      content: "rains"
      begin_offset: 140200
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "leicestersquare aichoketrust"
  type: ORGANIZATION
  salience: 2.5868172087939456e-05
  mentions {
    text {
      content: "leicestersquare aichoketrust"
      begin_offset: 92732
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon rain"
  type: OTHER
  salience: 2.5856650609057397e-05
  mentions {
    text {
      content: "aichoketrust visitlondon rain"
      begin_offset: 147422
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "host"
  type: PERSON
  salience: 2.5855411877273582e-05
  mentions {
    text {
      content: "host"
      begin_offset: 7697
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "host"
  type: PERSON
  salience: 2.5855411877273582e-05
  mentions {
    text {
      content: "host"
      begin_offset: 7087
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.5841976821538992e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 70150
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.5741635909071192e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 90556
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 2.556842446210794e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 36879
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 47115
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 73932
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 102487
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 103670
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 111059
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 115102
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 120457
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 126248
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 127496
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 135013
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 137470
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 137619
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 137997
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 139283
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 142996
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 143548
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 145229
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 145939
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 146332
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 147032
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 147328
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 148146
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 150929
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 151320
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 151526
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 152071
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 152735
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 153270
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 153495
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 154429
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 154556
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 154833
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 154919
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 154972
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 155332
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 155471
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 155890
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 156014
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 158968
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 160540
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 161053
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 163074
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 163670
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 163942
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 164354
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 168573
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "chance"
      begin_offset: 175504
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.5563798772054724e-05
  mentions {
    text {
      content: "people"
      begin_offset: 124263
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "street gardens"
  type: LOCATION
  salience: 2.5528763217153028e-05
  mentions {
    text {
      content: "street gardens"
      begin_offset: 47792
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lots"
  type: OTHER
  salience: 2.5523728254484013e-05
  mentions {
    text {
      content: "lots"
      begin_offset: 52380
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granary"
  type: OTHER
  salience: 2.5512608772260137e-05
  mentions {
    text {
      content: "granary"
      begin_offset: 126549
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "granarysquare"
  type: OTHER
  salience: 2.5476681912550703e-05
  mentions {
    text {
      content: "granarysquare"
      begin_offset: 142610
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "producer director cameraman promo coaching music video"
  type: WORK_OF_ART
  salience: 2.5294115403085016e-05
  mentions {
    text {
      content: "producer director cameraman promo coaching music video"
      begin_offset: 119081
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 2.5294115403085016e-05
  mentions {
    text {
      content: "video"
      begin_offset: 117268
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 2.5286035452154465e-05
  mentions {
    text {
      content: "work"
      begin_offset: 148926
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 2.524360388633795e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 68610
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "patrice warrener wave veigo"
  type: PERSON
  salience: 2.5234947315766476e-05
  mentions {
    text {
      content: "patrice warrener wave veigo"
      begin_offset: 15642
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 2.5227816877304576e-05
  mentions {
    text {
      content: "people"
      begin_offset: 134615
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "mariana"
  type: LOCATION
  salience: 2.5205921701854095e-05
  mentions {
    text {
      content: "mariana"
      begin_offset: 2894
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 2.5165270926663652e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 99848
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.699999988079071
  }
}
entities {
  name: "circus"
  type: PERSON
  salience: 2.5153793103527278e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 102799
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 2.5142728190985508e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 107885
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 2.5126848413492553e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 114129
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "hat video"
  type: WORK_OF_ART
  salience: 2.509733894839883e-05
  mentions {
    text {
      content: "hat video"
      begin_offset: 84104
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "patrice warrener westminsterabbey"
  type: PERSON
  salience: 2.5070030460483395e-05
  mentions {
    text {
      content: "patrice warrener  westminsterabbey"
      begin_offset: 82707
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "stop"
  type: LOCATION
  salience: 2.5039955289685167e-05
  mentions {
    text {
      content: "stop"
      begin_offset: 45486
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "trafalgarsquare"
  type: OTHER
  salience: 2.5004746930790134e-05
  mentions {
    text {
      content: "trafalgarsquare"
      begin_offset: 125661
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "landscape"
  type: OTHER
  salience: 2.4988485165522434e-05
  mentions {
    text {
      content: "landscape"
      begin_offset: 52944
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp culture"
  type: OTHER
  salience: 2.496568595233839e-05
  mentions {
    text {
      content: "amp culture"
      begin_offset: 56235
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "calls"
  type: OTHER
  salience: 2.495489752618596e-05
  mentions {
    text {
      content: "calls"
      begin_offset: 58283
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "newwestend"
  type: PERSON
  salience: 2.495489752618596e-05
  mentions {
    text {
      content: "newwestend"
      begin_offset: 58023
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "aichoketrust kingscrossn1c"
  type: PERSON
  salience: 2.4949729777290486e-05
  mentions {
    text {
      content: "aichoketrust  kingscrossn1c"
      begin_offset: 103637
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 2.492852945579216e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 82563
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "circus"
  type: OTHER
  salience: 2.490735460014548e-05
  mentions {
    text {
      content: "circus"
      begin_offset: 86492
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lighta kingsx"
  type: PERSON
  salience: 2.4719129214645363e-05
  mentions {
    text {
      content: "lighta kingsx"
      begin_offset: 82755
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "ken kesey"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/04dhm"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Ken_Kesey"
  }
  salience: 2.468217098794412e-05
  mentions {
    text {
      content: "ken kesey"
      begin_offset: 21217
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "cities"
  type: LOCATION
  salience: 2.465131001372356e-05
  mentions {
    text {
      content: "cities"
      begin_offset: 53402
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.20000000298023224
  }
}
entities {
  name: "ldn_culture loveldnlovecul aichoketrust justin_venn lumierelondon2018 lumierelondon ilyasayub_photo"
  type: PERSON
  salience: 2.458805829519406e-05
  mentions {
    text {
      content: "ldn_culture loveldnlovecul aichoketrust  justin_venn  lumierelondon2018 lumierelondon  ilyasayub_photo"
      begin_offset: 30964
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 2.4556722564739175e-05
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
      begin_offset: 92816
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
      begin_offset: 99883
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "thank"
  type: OTHER
  salience: 2.453025444992818e-05
  mentions {
    text {
      content: "thank"
      begin_offset: 136170
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "sound"
  type: OTHER
  salience: 2.446664984745439e-05
  mentions {
    text {
      content: "sound"
      begin_offset: 36201
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "spaces"
  type: LOCATION
  salience: 2.446664984745439e-05
  mentions {
    text {
      content: "spaces"
      begin_offset: 36143
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "winterlights"
  type: EVENT
  salience: 2.4450360797345638e-05
  mentions {
    text {
      content: "winterlights"
      begin_offset: 38762
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "use"
  type: OTHER
  salience: 2.4450360797345638e-05
  mentions {
    text {
      content: "use"
      begin_offset: 38540
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 2.442023833282292e-05
  mentions {
    text {
      content: "whizz"
      begin_offset: 41874
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "flamingo animatronics"
  type: OTHER
  salience: 2.442023833282292e-05
  mentions {
    text {
      content: "flamingo animatronics"
      begin_offset: 42072
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chinatownlondon"
  type: LOCATION
  salience: 2.4414972358499654e-05
  mentions {
    text {
      content: "chinatownlondon"
      begin_offset: 104179
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sights amp sounds"
  type: OTHER
  salience: 2.4392889827140607e-05
  mentions {
    text {
      content: "sights amp sounds"
      begin_offset: 45734
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "city tour"
  type: EVENT
  salience: 2.4392889827140607e-05
  mentions {
    text {
      content: "city tour"
      begin_offset: 45621
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere lumierelondon thisislondon westminster abbey"
  type: LOCATION
  salience: 2.438715637254063e-05
  mentions {
    text {
      content: "lumiere  lumierelondon thisislondon westminster abbey"
      begin_offset: 104747
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "animals"
  type: OTHER
  salience: 2.4380105969612487e-05
  mentions {
    text {
      content: "animals"
      begin_offset: 47843
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "colour"
  type: OTHER
  salience: 2.4378970920224674e-05
  mentions {
    text {
      content: "colour"
      begin_offset: 117076
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "rainbow colours"
  type: OTHER
  salience: 2.4378970920224674e-05
  mentions {
    text {
      content: "rainbow colours"
      begin_offset: 118412
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 2.4323344405274838e-05
  mentions {
    text {
      content: "whizz"
      begin_offset: 57369
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: -0.800000011920929
  }
}
entities {
  name: "jacob ladder"
  type: OTHER
  salience: 2.431318898743484e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 61102
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "jacob ladder"
  type: OTHER
  salience: 2.431318898743484e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 60369
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "jacob ladder"
  type: PERSON
  salience: 2.431318898743484e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 59600
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "jacob ladder"
  type: OTHER
  salience: 2.431318898743484e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 61214
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "tourists"
  type: PERSON
  salience: 2.4303371901623905e-05
  mentions {
    text {
      content: "tourists"
      begin_offset: 63140
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "phone chinatown"
  type: LOCATION
  salience: 2.4250724891317077e-05
  mentions {
    text {
      content: "phone chinatown"
      begin_offset: 70925
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "opp aquarium installation check"
  type: OTHER
  salience: 2.424098420306109e-05
  mentions {
    text {
      content: "opp aquarium  installation check"
      begin_offset: 136807
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "colour"
  type: OTHER
  salience: 2.4182465494959615e-05
  mentions {
    text {
      content: "colour"
      begin_offset: 85873
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.4179566025850363e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 95914
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granarysquare chinatownlondon"
  type: LOCATION
  salience: 2.4169228709070012e-05
  mentions {
    text {
      content: "granarysquare   chinatownlondon"
      begin_offset: 88319
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.4157086954801343e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 103246
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.4151726393029094e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 105989
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.4151726393029094e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 105324
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.4151726393029094e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 105460
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.413319452898577e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 109097
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.413319452898577e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 108960
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.4123119146679528e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 112964
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.4123119146679528e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 113150
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon road closures"
  type: EVENT
  salience: 2.410772503935732e-05
  mentions {
    text {
      content: "lumierelondon  road closures"
      begin_offset: 123668
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "meeting event liaison team"
  type: ORGANIZATION
  salience: 2.4043665689532645e-05
  mentions {
    text {
      content: "meeting event liaison team"
      begin_offset: 98141
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nohern lights pa exhibition"
  type: EVENT
  salience: 2.4032491637626663e-05
  mentions {
    text {
      content: "nohern lights pa  exhibition"
      begin_offset: 101531
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "exhibition"
  type: EVENT
  salience: 2.4006292733247392e-05
  mentions {
    text {
      content: "exhibition"
      begin_offset: 112583
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "trail"
  type: LOCATION
  salience: 2.3989676265046e-05
  mentions {
    text {
      content: "trail"
      begin_offset: 140373
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.3978156605153345e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 73869
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "project"
  type: OTHER
  salience: 2.3965742002474144e-05
  mentions {
    text {
      content: "project"
      begin_offset: 125863
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.3940750907058828e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 81324
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "leakestreet miss"
  type: OTHER
  salience: 2.39400706050219e-05
  mentions {
    text {
      content: "leakestreet miss"
      begin_offset: 138697
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "miss"
  type: OTHER
  salience: 2.3936005163704976e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 139907
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "sliceofthecity umbrella project"
  type: OTHER
  salience: 2.3928036171128042e-05
  mentions {
    text {
      content: "sliceofthecity umbrella project"
      begin_offset: 145282
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 2.3920705643831752e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 87433
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 2.3920705643831752e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 86270
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sliceofthecity umbrella project"
  type: OTHER
  salience: 2.3916480131447315e-05
  mentions {
    text {
      content: "sliceofthecity umbrella project"
      begin_offset: 151373
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "sliceofthecity umbrella project"
  type: OTHER
  salience: 2.3916480131447315e-05
  mentions {
    text {
      content: "sliceofthecity umbrella project"
      begin_offset: 150982
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 71797
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 72273
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 72494
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 71559
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 72936
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 73157
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 72035
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "architecture exhibition"
  type: EVENT
  salience: 2.3857142878114246e-05
  mentions {
    text {
      content: "architecture exhibition"
      begin_offset: 72715
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "bye london thisislondon"
  type: ORGANIZATION
  salience: 2.381104786763899e-05
  mentions {
    text {
      content: "bye  london thisislondon"
      begin_offset: 34431
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "energy"
  type: OTHER
  salience: 2.381104786763899e-05
  mentions {
    text {
      content: "energy"
      begin_offset: 34237
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "cross road"
  type: LOCATION
  salience: 2.3805483579053544e-05
  mentions {
    text {
      content: "cross road"
      begin_offset: 131239
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cross road"
  type: LOCATION
  salience: 2.3796985260560177e-05
  mentions {
    text {
      content: "cross road"
      begin_offset: 134449
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "cross road"
  type: LOCATION
  salience: 2.3796985260560177e-05
  mentions {
    text {
      content: "cross road"
      begin_offset: 135345
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "buildings"
  type: LOCATION
  salience: 2.3794289518264122e-05
  mentions {
    text {
      content: "buildings"
      begin_offset: 37173
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.3792828869773075e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 136403
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "child hood collectif coin"
  type: OTHER
  salience: 2.3735548893455416e-05
  mentions {
    text {
      content: "child hood collectif coin"
      begin_offset: 44565
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "head"
  type: PERSON
  salience: 2.372544076933991e-05
  mentions {
    text {
      content: "head"
      begin_offset: 127328
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "spectators"
  type: PERSON
  salience: 2.3710124878562056e-05
  mentions {
    text {
      content: "spectators"
      begin_offset: 47939
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.3630720534129068e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 101297
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "folks"
  type: PERSON
  salience: 2.36149880947778e-05
  mentions {
    text {
      content: "folks"
      begin_offset: 108510
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "street arches"
  type: OTHER
  salience: 2.3604960006196052e-05
  mentions {
    text {
      content: "street arches"
      begin_offset: 111749
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival aichoketrust"
  type: ORGANIZATION
  salience: 2.3603293811902404e-05
  mentions {
    text {
      content: "visitlondon london lumierelondon londonblogger wintersinlondon nightfestival  aichoketrust"
      begin_offset: 147221
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.359054451517295e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 118249
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.359054451517295e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 117901
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.3483458789996803e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 66815
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.347482404729817e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 67879
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gt"
  type: CONSUMER_GOOD
  salience: 2.34697599807987e-05
  mentions {
    text {
      content: "gt"
      begin_offset: 128054
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "pa hope"
  type: OTHER
  salience: 2.3444150428986177e-05
  mentions {
    text {
      content: "pa  hope"
      begin_offset: 141959
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.342787956877146e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 79361
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.341380422876682e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 82742
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.3407019398291595e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 83579
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "architecture"
  type: OTHER
  salience: 2.3407019398291595e-05
  mentions {
    text {
      content: "architecture"
      begin_offset: 83734
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.4000000059604645
  }
}
entities {
  name: "order prints lumierelondon facade landmark architecture"
  type: OTHER
  salience: 2.3400392819894478e-05
  mentions {
    text {
      content: "order prints lumierelondon facade landmark architecture"
      begin_offset: 84600
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "oppounity"
  type: OTHER
  salience: 2.3386710381601006e-05
  mentions {
    text {
      content: "oppounity"
      begin_offset: 122254
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "oppounity"
      begin_offset: 138658
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "oppounity"
      begin_offset: 139851
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "miss"
  type: EVENT
  salience: 2.3349641196546145e-05
  mentions {
    text {
      content: "miss"
      begin_offset: 143301
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.3279233573703095e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 77985
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3239435904542916e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 92187
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3233653337229043e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 94116
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3233653337229043e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 94316
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3227987185236998e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 96213
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.322243199159857e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 96765
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.322243199159857e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 97667
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.322243199159857e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 96513
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "set scene"
  type: WORK_OF_ART
  salience: 2.320540079381317e-05
  mentions {
    text {
      content: "set scene"
      begin_offset: 100766
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 2.3174050511443056e-05
  mentions {
    text {
      content: "video"
      begin_offset: 132791
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "love motion royal"
  type: OTHER
  salience: 2.3098857127479278e-05
  mentions {
    text {
      content: "love motion royal"
      begin_offset: 116969
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3058508304529823e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 69569
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.305027737747878e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 70292
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 2.3049055016599596e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 40308
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "transforms"
  type: EVENT
  salience: 2.3042279281071387e-05
  mentions {
    text {
      content: "transforms"
      begin_offset: 73466
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "perspective"
  type: OTHER
  salience: 2.3024673282634467e-05
  mentions {
    text {
      content: "perspective"
      begin_offset: 52430
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.3010094082565047e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 97846
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ideas"
  type: OTHER
  salience: 2.3010094082565047e-05
  mentions {
    text {
      content: "ideas"
      begin_offset: 97524
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.2999398424872197e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 102444
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 2.2997352061793208e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 48443
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.2984087991062552e-05
  mentions {
    text {
      content: "place"
      begin_offset: 108621
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "place"
  type: OTHER
  salience: 2.2984087991062552e-05
  mentions {
    text {
      content: "place"
      begin_offset: 108139
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "travel find"
  type: OTHER
  salience: 2.297678292961791e-05
  mentions {
    text {
      content: "travel find"
      begin_offset: 151274
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "ideas"
  type: OTHER
  salience: 2.2974327293923125e-05
  mentions {
    text {
      content: "ideas"
      begin_offset: 111116
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 2.2953727238927968e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 56871
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.284766742377542e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 69166
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.284766742377542e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 68927
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.284766742377542e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 68753
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.2816388081992045e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 75960
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.2816388081992045e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 76134
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "share experience"
  type: OTHER
  salience: 2.280784428876359e-05
  mentions {
    text {
      content: "share experience"
      begin_offset: 92583
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.2801978047937155e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 78876
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.2788277419749647e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 82044
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.2788277419749647e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 81076
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.2781674488214776e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 82943
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "experience"
  type: OTHER
  salience: 2.2770362193114124e-05
  mentions {
    text {
      content: "experience"
      begin_offset: 105062
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.2999999523162842
    score: 0.6000000238418579
  }
}
entities {
  name: "share experience"
  type: OTHER
  salience: 2.2751019059796818e-05
  mentions {
    text {
      content: "share experience"
      begin_offset: 114319
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "london lumierelightfestival lumierelightfestival2018 exitmagazine maxcoopermax"
  type: ORGANIZATION
  salience: 2.2740239728591405e-05
  mentions {
    text {
      content: "london lumierelightfestival lumierelightfestival2018   exitmagazine  maxcoopermax"
      begin_offset: 55198
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "thing"
  type: OTHER
  salience: 2.2704403818352148e-05
  mentions {
    text {
      content: "thing"
      begin_offset: 102013
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "tracyemin"
  type: LOCATION
  salience: 2.2649075617664494e-05
  mentions {
    text {
      content: "tracyemin"
      begin_offset: 46585
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "experiences"
  type: OTHER
  salience: 2.2630276362178847e-05
  mentions {
    text {
      content: "experiences"
      begin_offset: 67982
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "everyone"
  type: PERSON
  salience: 2.262755879200995e-05
  mentions {
    text {
      content: "everyone"
      begin_offset: 140854
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "fish"
  type: OTHER
  salience: 2.255717117805034e-05
  mentions {
    text {
      content: "fish"
      begin_offset: 101216
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "london leebrowne1971 lumierelondon2018 lumierelondon visitlondon"
  type: ORGANIZATION
  salience: 2.2556521798833273e-05
  mentions {
    text {
      content: "london  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon"
      begin_offset: 87786
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fishes"
  type: OTHER
  salience: 2.2547068510903046e-05
  mentions {
    text {
      content: "fishes"
      begin_offset: 106206
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "fish"
  type: OTHER
  salience: 2.2523330699186772e-05
  mentions {
    text {
      content: "fish"
      begin_offset: 116636
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "fish"
  type: OTHER
  salience: 2.2523330699186772e-05
  mentions {
    text {
      content: "fish"
      begin_offset: 116704
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere wave"
  type: OTHER
  salience: 2.2514381271321326e-05
  mentions {
    text {
      content: "lumiere  wave"
      begin_offset: 120177
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "freedom fish"
  type: OTHER
  salience: 2.2514381271321326e-05
  mentions {
    text {
      content: "freedom fish"
      begin_offset: 120971
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "capital"
  type: LOCATION
  salience: 2.247679185529705e-05
  mentions {
    text {
      content: "capital"
      begin_offset: 35296
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.2426669602282345e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 160666
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "flamingos"
      begin_offset: 161497
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lighting london night wave"
  type: EVENT
  salience: 2.240835783595685e-05
  mentions {
    text {
      content: "lighting london night  wave"
      begin_offset: 69021
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amateurphotography lights colour"
  type: OTHER
  salience: 2.235204192402307e-05
  mentions {
    text {
      content: "amateurphotography lights colour"
      begin_offset: 125195
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 2.2344707758747973e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 94763
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "illuminatedriv fish"
  type: OTHER
  salience: 2.2331123545882292e-05
  mentions {
    text {
      content: "illuminatedriv fish"
      begin_offset: 87614
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 2.2328980776364915e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 101481
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 38644
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 38190
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 39155
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 38117
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 39372
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2298396288533695e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 38743
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon neon light lighting colour"
  type: CONSUMER_GOOD
  salience: 2.2294949303613976e-05
  mentions {
    text {
      content: "lumierelondon  neon light lighting colour"
      begin_offset: 154207
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon neon light lighting colour"
  type: CONSUMER_GOOD
  salience: 2.2294949303613976e-05
  mentions {
    text {
      content: "lumierelondon  neon light lighting colour"
      begin_offset: 154264
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "fear"
  type: OTHER
  salience: 2.2284313672571443e-05
  mentions {
    text {
      content: "fear"
      begin_offset: 39818
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "street level level playing field"
  type: LOCATION
  salience: 2.2234324205783196e-05
  mentions {
    text {
      content: "street level level playing field"
      begin_offset: 49360
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon action"
  type: OTHER
  salience: 2.222314833488781e-05
  mentions {
    text {
      content: "visitlondon action"
      begin_offset: 49559
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "programme"
  type: OTHER
  salience: 2.2212414478417486e-05
  mentions {
    text {
      content: "programme"
      begin_offset: 52978
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lumiere kingscrossn1c beauty_blah visitlondon kingscrossn1c"
  type: ORGANIZATION
  salience: 2.2196660211193375e-05
  mentions {
    text {
      content: "london lumiere  kingscrossn1c  beauty_blah  visitlondon kingscrossn1c"
      begin_offset: 40384
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 2.2182557586347684e-05
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 58904
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "nkirkwoodlondon celebration"
  type: EVENT
  salience: 2.2182557586347684e-05
  mentions {
    text {
      content: "nkirkwoodlondon celebration"
      begin_offset: 58964
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "progress"
  type: OTHER
  salience: 2.2182557586347684e-05
  mentions {
    text {
      content: "progress"
      begin_offset: 58447
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "phone box favourite"
  type: OTHER
  salience: 2.218167355749756e-05
  mentions {
    text {
      content: "phone box favourite"
      begin_offset: 69470
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "umbrella project regent"
  type: LOCATION
  salience: 2.217598375864327e-05
  mentions {
    text {
      content: "umbrella project regent"
      begin_offset: 125273
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "faves"
  type: OTHER
  salience: 2.2153444660943933e-05
  mentions {
    text {
      content: "faves"
      begin_offset: 96120
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "david batchelor 60minutespectrum"
  type: PERSON
  salience: 2.2136520783533342e-05
  mentions {
    text {
      content: "david batchelor 60minutespectrum"
      begin_offset: 1952
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cambridge"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01qh7"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Cambridge,_Massachusetts"
  }
  salience: 2.2136520783533342e-05
  mentions {
    text {
      content: "cambridge"
      begin_offset: 3748
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 2.2111340513220057e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 85692
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "pa catch"
  type: OTHER
  salience: 2.210600723628886e-05
  mentions {
    text {
      content: "pa  catch"
      begin_offset: 96626
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 2.210522143286653e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 86153
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 2.2099236957728863e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 88165
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "crowd"
  type: PERSON
  salience: 2.2099236957728863e-05
  mentions {
    text {
      content: "crowd"
      begin_offset: 87649
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "installation sculpture"
  type: OTHER
  salience: 2.2036432710592635e-05
  mentions {
    text {
      content: "installation sculpture"
      begin_offset: 119612
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "hq"
  type: PERSON
  salience: 2.201725510531105e-05
  mentions {
    text {
      content: "hq"
      begin_offset: 36236
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "teams"
  type: ORGANIZATION
  salience: 2.1965479390928522e-05
  mentions {
    text {
      content: "teams"
      begin_offset: 140829
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "team"
  type: ORGANIZATION
  salience: 2.1951051166979596e-05
  mentions {
    text {
      content: "team"
      begin_offset: 148325
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "sroosegaarde pa catch"
  type: OTHER
  salience: 2.193451473431196e-05
  mentions {
    text {
      content: "sroosegaarde pa  catch"
      begin_offset: 71334
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "roads"
  type: LOCATION
  salience: 2.191646308347117e-05
  mentions {
    text {
      content: "roads"
      begin_offset: 94750
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tinyplanet 360video"
  type: PERSON
  salience: 2.1888086848775856e-05
  mentions {
    text {
      content: "tinyplanet 360video"
      begin_offset: 9461
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet"
  type: ORGANIZATION
  salience: 2.1888086848775856e-05
  mentions {
    text {
      content: "obscuraveigo zumtobel_light victoriabid ricohthetauk aichoketrust ldn_gov regentstreetw1 oxfordstreetw1 timeoutlondon visitlondon littleplanet"
      begin_offset: 9519
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "show"
  type: WORK_OF_ART
  salience: 2.1886562535655685e-05
  mentions {
    text {
      content: "show"
      begin_offset: 82782
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "awork"
  type: PERSON
  salience: 2.1883310182602145e-05
  mentions {
    text {
      content: "awork"
      begin_offset: 92690
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gin costs"
  type: OTHER
  salience: 2.187296558986418e-05
  mentions {
    text {
      content: "gin costs"
      begin_offset: 38814
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "awork"
  type: OTHER
  salience: 2.187252903240733e-05
  mentions {
    text {
      content: "awork"
      begin_offset: 96014
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "awork"
  type: OTHER
  salience: 2.187252903240733e-05
  mentions {
    text {
      content: "awork"
      begin_offset: 95747
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "laughter southmoltonstreet musical"
  type: WORK_OF_ART
  salience: 2.1852196368854493e-05
  mentions {
    text {
      content: "laughter southmoltonstreet musical"
      begin_offset: 103289
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 2.1837906388100237e-05
  mentions {
    text {
      content: "music"
      begin_offset: 109879
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 2.1837906388100237e-05
  mentions {
    text {
      content: "music"
      begin_offset: 109808
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 2.1833307982888073e-05
  mentions {
    text {
      content: "music"
      begin_offset: 112359
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 2.1833307982888073e-05
  mentions {
    text {
      content: "music"
      begin_offset: 111433
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "patrols"
  type: OTHER
  salience: 2.1821510017616674e-05
  mentions {
    text {
      content: "patrols"
      begin_offset: 141418
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "que tengo que hacer para estar"
  type: WORK_OF_ART
  salience: 2.179756120312959e-05
  mentions {
    text {
      content: "que tengo que hacer para estar"
      begin_offset: 13211
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumi\303\250re \303\240 londres"
  type: PERSON
  salience: 2.1776033463538624e-05
  mentions {
    text {
      content: "lumi\303\250re \303\240 londres"
      begin_offset: 94897
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "metpoliceevents londonfire"
  type: PERSON
  salience: 2.1770825696876273e-05
  mentions {
    text {
      content: "metpoliceevents londonfire"
      begin_offset: 98169
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "katarzyna malejka joachim"
  type: PERSON
  salience: 2.1753015971626155e-05
  mentions {
    text {
      content: "katarzyna malejka joachim"
      begin_offset: 124056
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "polish duo"
      begin_offset: 124045
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "park"
  type: LOCATION
  salience: 2.1746911443187855e-05
  mentions {
    text {
      content: "park"
      begin_offset: 102739
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite cheekychops"
  type: PERSON
  salience: 2.1730189473601058e-05
  mentions {
    text {
      content: "silhouette_profile profilepic ig_profileshot blackandwhitephotography onlocation unlimitedlondon darkpicture ig_captures igers profile_photo londonlumiere2018 bwphotography shadesofme loveblackandwhite   cheekychops"
      begin_offset: 16583
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "donotrefreeze"
  type: OTHER
  salience: 2.1718296920880675e-05
  mentions {
    text {
      content: "donotrefreeze"
      begin_offset: 142177
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "photo credit"
      begin_offset: 142164
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "westhandyside canopy laugh"
  type: OTHER
  salience: 2.169315303035546e-05
  mentions {
    text {
      content: "westhandyside canopy laugh"
      begin_offset: 113240
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visitlondon victoriabid createvictoria aichoketrust"
  type: ORGANIZATION
  salience: 2.1676594769814983e-05
  mentions {
    text {
      content: "visitlondon victoriabid createvictoria aichoketrust"
      begin_offset: 117803
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 2.163337921956554e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 94038
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon btpvolunteers"
  type: PERSON
  salience: 2.1631987692671828e-05
  mentions {
    text {
      content: "timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  btpvolunteers"
      begin_offset: 24825
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon stmaininthefields"
  type: PERSON
  salience: 2.1631987692671828e-05
  mentions {
    text {
      content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature de londres al cielo lumierelondon  stmaininthefields"
      begin_offset: 25204
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 2.1628102331305854e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 96448
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonisopen highlights"
  type: OTHER
  salience: 2.1617857782985084e-05
  mentions {
    text {
      content: "londonisopen highlights"
      begin_offset: 99303
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "thing"
  type: OTHER
  salience: 2.1612881027976982e-05
  mentions {
    text {
      content: "thing"
      begin_offset: 102370
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "american"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/09c7w0"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/United_States"
  }
  salience: 2.1612249838653952e-05
  mentions {
    text {
      content: "american"
      begin_offset: 27893
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.1605654183076695e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 135743
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.1605654183076695e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 137032
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.1605654183076695e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 136122
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.1598261810140684e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 140162
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lightfestival visitlondon aichoketrust westminsterabbey lumiere lumierelondon westminster abbey"
  type: LOCATION
  salience: 2.1596431906800717e-05
  mentions {
    text {
      content: "lightfestival visitlondon aichoketrust westminsterabbey lumiere  lumierelondon westminster abbey"
      begin_offset: 91866
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 2.1594642021227628e-05
  mentions {
    text {
      content: "folk"
      begin_offset: 141844
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito experiencias londres2018 alloaconnecting"
  type: WORK_OF_ART
  salience: 2.1593892597593367e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag si tuviste tiempo de visitar el festival de luces en londres aqui te compaimos un poquito  experiencias londres2018 alloaconnecting"
      begin_offset: 29717
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "things"
  type: OTHER
  salience: 2.1580455722869374e-05
  mentions {
    text {
      content: "things"
      begin_offset: 115734
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "thing"
  type: OTHER
  salience: 2.1580455722869374e-05
  mentions {
    text {
      content: "thing"
      begin_offset: 115455
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "london architecture"
  type: OTHER
  salience: 2.157725793949794e-05
  mentions {
    text {
      content: "london architecture"
      begin_offset: 151984
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson"
  type: ORGANIZATION
  salience: 2.1576732251560315e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon mayoroflondon nikonownermag eddierobson"
      begin_offset: 31464
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature fouhstreetdan benjamingammon"
  type: PERSON
  salience: 2.1576732251560315e-05
  mentions {
    text {
      content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature  fouhstreetdan benjamingammon"
      begin_offset: 32970
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fishes"
  type: OTHER
  salience: 2.157295421056915e-05
  mentions {
    text {
      content: "fishes"
      begin_offset: 74415
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "lights darkness"
  type: OTHER
  salience: 2.156453592760954e-05
  mentions {
    text {
      content: "lights darkness"
      begin_offset: 118816
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumierelondon kingscross granarysquare visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 2.1555082639679313e-05
  mentions {
    text {
      content: "lumierelondon kingscross granarysquare visitlondon  aichoketrust"
      begin_offset: 73336
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "power"
  type: OTHER
  salience: 2.1550009478232823e-05
  mentions {
    text {
      content: "power"
      begin_offset: 4420
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "power"
      begin_offset: 29297
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "power"
      begin_offset: 43773
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "power"
      begin_offset: 45196
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "power"
      begin_offset: 55724
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "leicestersquare"
  type: OTHER
  salience: 2.1527126591536216e-05
  mentions {
    text {
      content: "leicestersquare"
      begin_offset: 78484
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "wildlife"
  type: OTHER
  salience: 2.1502401068573818e-05
  mentions {
    text {
      content: "wildlife"
      begin_offset: 34946
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dismantling thousands"
  type: PERSON
  salience: 2.1502401068573818e-05
  mentions {
    text {
      content: "dismantling thousands"
      begin_offset: 33700
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "dinner"
  type: EVENT
  salience: 2.1502401068573818e-05
  mentions {
    text {
      content: "dinner"
      begin_offset: 35403
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "dinner"
  type: EVENT
  salience: 2.147296254406683e-05
  mentions {
    text {
      content: "dinner"
      begin_offset: 38829
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 2.1470295905601233e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 69491
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp pandora box brightnights"
  type: ORGANIZATION
  salience: 2.146263068425469e-05
  mentions {
    text {
      content: "amp pandora box brightnights"
      begin_offset: 70826
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "waterlicht sroosegaarde pa catch"
  type: WORK_OF_ART
  salience: 2.145394500985276e-05
  mentions {
    text {
      content: "waterlicht sroosegaarde pa  catch"
      begin_offset: 154729
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "amp brightnights"
  type: OTHER
  salience: 2.1440901036839932e-05
  mentions {
    text {
      content: "amp brightnights"
      begin_offset: 75704
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "amp pandora box brightnights"
  type: ORGANIZATION
  salience: 2.1427358660730533e-05
  mentions {
    text {
      content: "amp pandora box brightnights"
      begin_offset: 77939
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "marshalljulius london leicester square"
  type: LOCATION
  salience: 2.1420366465463303e-05
  mentions {
    text {
      content: "marshalljulius london leicester square"
      begin_offset: 75747
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "gt brightnights"
  type: OTHER
  salience: 2.141448567272164e-05
  mentions {
    text {
      content: "gt brightnights"
      begin_offset: 82375
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "gt brightnights"
  type: OTHER
  salience: 2.141448567272164e-05
  mentions {
    text {
      content: "gt brightnights"
      begin_offset: 82499
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "childhood"
  type: OTHER
  salience: 2.141448567272164e-05
  mentions {
    text {
      content: "childhood"
      begin_offset: 81156
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 2.1411262423498556e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 49206
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 2.1400499463197775e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 51070
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 2.1400499463197775e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 50981
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thought"
  type: OTHER
  salience: 2.1390163965406828e-05
  mentions {
    text {
      content: "thought"
      begin_offset: 52465
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "neon"
  type: OTHER
  salience: 2.138288073183503e-05
  mentions {
    text {
      content: "neon"
      begin_offset: 93376
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "something"
  type: OTHER
  salience: 2.1367539375205524e-05
  mentions {
    text {
      content: "something"
      begin_offset: 100343
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "neon"
  type: OTHER
  salience: 2.1367539375205524e-05
  mentions {
    text {
      content: "neon"
      begin_offset: 98816
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "jubileeline"
  type: OTHER
  salience: 2.1361411199904978e-05
  mentions {
    text {
      content: "jubileeline"
      begin_offset: 59310
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "neon"
  type: OTHER
  salience: 2.1353052943595685e-05
  mentions {
    text {
      content: "neon"
      begin_offset: 105713
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "walk station"
  type: LOCATION
  salience: 2.134839814971201e-05
  mentions {
    text {
      content: "walk station"
      begin_offset: 107564
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon neon"
  type: OTHER
  salience: 2.1343825210351497e-05
  mentions {
    text {
      content: "lumierelondon  neon"
      begin_offset: 110083
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "tfltrafficnews road closures"
  type: OTHER
  salience: 2.1334913981263526e-05
  mentions {
    text {
      content: "tfltrafficnews  road closures"
      begin_offset: 113817
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "circus tube station"
  type: LOCATION
  salience: 2.1330570234567858e-05
  mentions {
    text {
      content: "circus tube station"
      begin_offset: 115918
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aworks"
  type: OTHER
  salience: 2.131107248715125e-05
  mentions {
    text {
      content: "aworks"
      begin_offset: 107595
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "granarysquare rain"
  type: OTHER
  salience: 2.1231606297078542e-05
  mentions {
    text {
      content: "granarysquare rain"
      begin_offset: 146972
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "road closures"
  type: OTHER
  salience: 2.1221685528871603e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 68289
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "king cross station"
  type: ORGANIZATION
  salience: 2.1214109438005835e-05
  mentions {
    text {
      content: "king cross station"
      begin_offset: 70441
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "someone"
  type: PERSON
  salience: 2.1179246687097475e-05
  mentions {
    text {
      content: "someone"
      begin_offset: 78113
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lighta neon"
  type: OTHER
  salience: 2.116652285621967e-05
  mentions {
    text {
      content: "lighta neon"
      begin_offset: 82633
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lighta neon"
  type: OTHER
  salience: 2.1160389223950915e-05
  mentions {
    text {
      content: "lighta neon"
      begin_offset: 82829
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "power station"
  type: LOCATION
  salience: 2.1160389223950915e-05
  mentions {
    text {
      content: "power station"
      begin_offset: 84131
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "king cross station"
  type: LOCATION
  salience: 2.1160389223950915e-05
  mentions {
    text {
      content: "king cross station"
      begin_offset: 84420
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "road closures"
  type: OTHER
  salience: 2.1154397472855635e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 85041
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "king cross station"
  type: LOCATION
  salience: 2.114854214596562e-05
  mentions {
    text {
      content: "king cross station"
      begin_offset: 86006
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "audio guide"
  type: WORK_OF_ART
  salience: 2.1105975974933244e-05
  mentions {
    text {
      content: "audio guide"
      begin_offset: 102047
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "audio guide"
  type: WORK_OF_ART
  salience: 2.1105975974933244e-05
  mentions {
    text {
      content: "audio guide"
      begin_offset: 102404
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "shopping guide"
  type: WORK_OF_ART
  salience: 2.1074311007396318e-05
  mentions {
    text {
      content: "shopping guide"
      begin_offset: 116907
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "triptych"
  type: OTHER
  salience: 2.1061852748971432e-05
  mentions {
    text {
      content: "triptych"
      begin_offset: 122268
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "dot aichoketrust legacy"
  type: OTHER
  salience: 2.1047402697149664e-05
  mentions {
    text {
      content: "dot  aichoketrust legacy"
      begin_offset: 91233
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.104735358443577e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 126205
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.1039615603513084e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 130331
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "energy"
  type: OTHER
  salience: 2.1034660676377825e-05
  mentions {
    text {
      content: "energy"
      begin_offset: 159785
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "energy"
      begin_offset: 164914
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "energy"
      begin_offset: 166020
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
  }
}
entities {
  name: "idea"
  type: OTHER
  salience: 2.102843063767068e-05
  mentions {
    text {
      content: "idea"
      begin_offset: 135768
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.102480902976822e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 139240
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.102480902976822e-05
  mentions {
    text {
      content: "place"
      begin_offset: 138264
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.1021729480708018e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 98701
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.1016889149905182e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 100591
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
  }
}
entities {
  name: "hat details"
  type: OTHER
  salience: 2.1013616787968203e-05
  mentions {
    text {
      content: "hat details"
      begin_offset: 84979
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.1010811906307936e-05
  mentions {
    text {
      content: "place"
      begin_offset: 146595
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.100742858601734e-05
  mentions {
    text {
      content: "place"
      begin_offset: 147513
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 2.1004090740461834e-05
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 150637
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "places"
  type: LOCATION
  salience: 2.1004090740461834e-05
  mentions {
    text {
      content: "places"
      begin_offset: 150879
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.1004090740461834e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 151483
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "idea"
  type: OTHER
  salience: 2.1004090740461834e-05
  mentions {
    text {
      content: "idea"
      begin_offset: 150886
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 2.100079473166261e-05
  mentions {
    text {
      content: "flamingos"
      begin_offset: 153227
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.100079473166261e-05
  mentions {
    text {
      content: "place"
      begin_offset: 153009
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "place"
  type: LOCATION
  salience: 2.100079473166261e-05
  mentions {
    text {
      content: "place"
      begin_offset: 151862
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "marlborough"
  type: LOCATION
  salience: 2.096028401865624e-05
  mentions {
    text {
      content: "marlborough"
      begin_offset: 68415
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "marlborough"
      begin_offset: 85167
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "marlborough"
      begin_offset: 86396
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "marlborough"
      begin_offset: 87559
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
  }
}
entities {
  name: "sculptures"
  type: WORK_OF_ART
  salience: 2.0949815734638833e-05
  mentions {
    text {
      content: "sculptures"
      begin_offset: 134732
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust lumierelondon2018 visitlondon"
  type: ORGANIZATION
  salience: 2.0852796296821907e-05
  mentions {
    text {
      content: "aichoketrust lumierelondon2018  visitlondon"
      begin_offset: 128356
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.0847332052653655e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 99413
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "picture"
  type: WORK_OF_ART
  salience: 2.0837822376051918e-05
  mentions {
    text {
      content: "picture"
      begin_offset: 102667
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "world"
  type: LOCATION
  salience: 2.0833198504988104e-05
  mentions {
    text {
      content: "world"
      begin_offset: 105085
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 2.0833198504988104e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 104602
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "picture"
  type: WORK_OF_ART
  salience: 2.0824194507440552e-05
  mentions {
    text {
      content: "picture"
      begin_offset: 110444
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "picture"
  type: WORK_OF_ART
  salience: 2.0819810742978007e-05
  mentions {
    text {
      content: "picture"
      begin_offset: 111341
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "uk"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/07ssc"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/United_Kingdom"
  }
  salience: 2.0810355636058375e-05
  mentions {
    text {
      content: "uk"
      begin_offset: 77746
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "uk"
      begin_offset: 125842
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.10000000149011612
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.0800644051632844e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 87867
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.0800644051632844e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 88241
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "estate"
  type: LOCATION
  salience: 2.0722342014778405e-05
  mentions {
    text {
      content: "estate"
      begin_offset: 35480
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "oppounities"
  type: OTHER
  salience: 2.0705028873635456e-05
  mentions {
    text {
      content: "oppounities"
      begin_offset: 68202
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 2.0697118088719435e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 120511
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayfair london estate"
  type: LOCATION
  salience: 2.0656636479543522e-05
  mentions {
    text {
      content: "mayfair london estate"
      begin_offset: 44592
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "waves"
  type: OTHER
  salience: 2.062054591078777e-05
  mentions {
    text {
      content: "waves"
      begin_offset: 138399
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "appeal"
  type: OTHER
  salience: 2.0602261429303326e-05
  mentions {
    text {
      content: "appeal"
      begin_offset: 35560
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "swipeleft fish"
  type: OTHER
  salience: 2.0596993635990657e-05
  mentions {
    text {
      content: "swipeleft fish"
      begin_offset: 152577
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "wabbey westminsterabbey mpsonthewater southbank"
  type: ORGANIZATION
  salience: 2.0582192519214004e-05
  mentions {
    text {
      content: "wabbey westminsterabbey  mpsonthewater southbank"
      begin_offset: 64019
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "camera lomo"
  type: OTHER
  salience: 2.0574056179611944e-05
  mentions {
    text {
      content: "camera lomo"
      begin_offset: 39408
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lomographyuk"
  type: PERSON
  salience: 2.0561061319313012e-05
  mentions {
    text {
      content: "lomographyuk"
      begin_offset: 39879
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "camera lomo"
  type: OTHER
  salience: 2.0561061319313012e-05
  mentions {
    text {
      content: "camera lomo"
      begin_offset: 39854
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "beauty"
  type: OTHER
  salience: 2.0548708562273532e-05
  mentions {
    text {
      content: "beauty"
      begin_offset: 43357
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "performance"
  type: OTHER
  salience: 2.0536937881843187e-05
  mentions {
    text {
      content: "performance"
      begin_offset: 44185
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "srmlondon"
  type: OTHER
  salience: 2.0467174181248993e-05
  mentions {
    text {
      content: "srmlondon"
      begin_offset: 57345
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "care"
  type: OTHER
  salience: 2.0467174181248993e-05
  mentions {
    text {
      content: "care"
      begin_offset: 58245
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "umbrella performance"
  type: OTHER
  salience: 2.0442372260731645e-05
  mentions {
    text {
      content: "umbrella performance"
      begin_offset: 64602
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ave fi"
  type: OTHER
  salience: 2.0442372260731645e-05
  mentions {
    text {
      content: "ave fi"
      begin_offset: 64532
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "frog"
  type: OTHER
  salience: 2.0442372260731645e-05
  mentions {
    text {
      content: "frog"
      begin_offset: 65065
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "favourites"
  type: PERSON
  salience: 2.0426321498234756e-05
  mentions {
    text {
      content: "favourites"
      begin_offset: 130204
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "crowds"
  type: OTHER
  salience: 2.0422648958628997e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 132563
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "visitlondon southbanklondon"
  type: ORGANIZATION
  salience: 2.041143125097733e-05
  mentions {
    text {
      content: "visitlondon  southbanklondon"
      begin_offset: 84230
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "wish"
  type: OTHER
  salience: 2.0302992197684944e-05
  mentions {
    text {
      content: "wish"
      begin_offset: 70671
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "viewing"
  type: OTHER
  salience: 2.0302992197684944e-05
  mentions {
    text {
      content: "viewing"
      begin_offset: 69788
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "piece"
  type: OTHER
  salience: 2.028874951065518e-05
  mentions {
    text {
      content: "piece"
      begin_offset: 103947
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "victoria"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/0ctd7l"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Victoria,_London"
  }
  salience: 2.0264445993234403e-05
  mentions {
    text {
      content: "victoria"
      begin_offset: 59016
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "victoria"
      begin_offset: 59087
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "treasure hunt"
  type: PERSON
  salience: 2.0254839910194278e-05
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 121059
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "light show"
  type: EVENT
  salience: 2.0216635675751604e-05
  mentions {
    text {
      content: "light show"
      begin_offset: 128899
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "pa catch"
  type: OTHER
  salience: 2.0182023945380934e-05
  mentions {
    text {
      content: "pa  catch"
      begin_offset: 148727
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "pa catch"
  type: OTHER
  salience: 2.0175652025500312e-05
  mentions {
    text {
      content: "pa  catch"
      begin_offset: 151614
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "waterlicht sroosegaarde pa catch"
  type: OTHER
  salience: 2.0175652025500312e-05
  mentions {
    text {
      content: "waterlicht sroosegaarde pa  catch"
      begin_offset: 152209
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "plant"
  type: LOCATION
  salience: 2.0107052478124388e-05
  mentions {
    text {
      content: "plant"
      begin_offset: 81696
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.003044937737286e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 92303
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 2.003044937737286e-05
  mentions {
    text {
      content: "sculpture"
      begin_offset: 93210
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.0020581359858625e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 95315
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust legacy"
  type: OTHER
  salience: 2.0015793779748492e-05
  mentions {
    text {
      content: "aichoketrust legacy"
      begin_offset: 96829
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 2.0006489648949355e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 102227
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "job mayoroflondon"
  type: OTHER
  salience: 1.9981984223704785e-05
  mentions {
    text {
      content: "job mayoroflondon"
      begin_offset: 63072
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "music"
  type: WORK_OF_ART
  salience: 1.99806072487263e-05
  mentions {
    text {
      content: "music"
      begin_offset: 137874
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "carnaby"
  type: LOCATION
  salience: 1.9968540073023178e-05
  mentions {
    text {
      content: "carnaby"
      begin_offset: 119667
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon stjamessquare oxfordstreet regentstreet"
  type: WORK_OF_ART
  salience: 1.9922581486753188e-05
  mentions {
    text {
      content: "lumierelondon  stjamessquare oxfordstreet regentstreet"
      begin_offset: 45835
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "thewave veigo eatsleepshootuk"
  type: PERSON
  salience: 1.992220313695725e-05
  mentions {
    text {
      content: "thewave veigo  eatsleepshootuk"
      begin_offset: 11252
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
  type: PERSON
  salience: 1.987601353903301e-05
  mentions {
    text {
      content: "westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere"
      begin_offset: 148931
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "londonblogger wintersinlondon nightfestival londonwhispers"
  type: PERSON
  salience: 1.987601353903301e-05
  mentions {
    text {
      content: "londonblogger wintersinlondon nightfestival  londonwhispers"
      begin_offset: 147950
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "westminsterabbey aichoketrust sliceofthecity visitlondon londonlumiere"
  type: ORGANIZATION
  salience: 1.987601353903301e-05
  mentions {
    text {
      content: "westminsterabbey aichoketrust  sliceofthecity visitlondon londonlumiere"
      begin_offset: 149277
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "magic"
  type: OTHER
  salience: 1.9866187358275056e-05
  mentions {
    text {
      content: "magic"
      begin_offset: 110159
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "herroyalj visitlondon thelondoneye kingscrossn1c wabbey"
  type: PERSON
  salience: 1.986577990464866e-05
  mentions {
    text {
      content: "herroyalj visitlondon thelondoneye kingscrossn1c wabbey"
      begin_offset: 58515
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "mayoroflondon carnabylondon"
  type: PERSON
  salience: 1.9853814592352137e-05
  mentions {
    text {
      content: "mayoroflondon  carnabylondon"
      begin_offset: 73898
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "soho"
  type: LOCATION
  salience: 1.981709647225216e-05
  mentions {
    text {
      content: "soho"
      begin_offset: 83094
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "legacy"
  type: OTHER
  salience: 1.9800641894107684e-05
  mentions {
    text {
      content: "legacy"
      begin_offset: 88447
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.979923945327755e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 80097
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp brightnights"
  type: OTHER
  salience: 1.9774844986386597e-05
  mentions {
    text {
      content: "amp brightnights"
      begin_offset: 128015
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "wave brightnights"
  type: OTHER
  salience: 1.9764178432524204e-05
  mentions {
    text {
      content: "wave brightnights"
      begin_offset: 134256
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wave brightnights"
  type: OTHER
  salience: 1.975732266146224e-05
  mentions {
    text {
      content: "wave brightnights"
      begin_offset: 138058
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "insight magic"
  type: OTHER
  salience: 1.9752504158532247e-05
  mentions {
    text {
      content: "insight magic"
      begin_offset: 68125
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "thanks"
  type: OTHER
  salience: 1.9752422304009087e-05
  mentions {
    text {
      content: "thanks"
      begin_offset: 89506
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london uk"
  type: LOCATION
  salience: 1.9749331841012463e-05
  mentions {
    text {
      content: "london uk"
      begin_offset: 43372
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon images"
  type: WORK_OF_ART
  salience: 1.973424332391005e-05
  mentions {
    text {
      content: "lumierelondon images"
      begin_offset: 92974
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "colleague"
  type: PERSON
  salience: 1.9719804186024703e-05
  mentions {
    text {
      content: "colleague"
      begin_offset: 97571
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminsterabbey wabbey"
  type: CONSUMER_GOOD
  salience: 1.9706963939825073e-05
  mentions {
    text {
      content: "westminsterabbey wabbey"
      begin_offset: 50216
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "installation lovemotion royalacademy"
  type: PERSON
  salience: 1.9706185412360355e-05
  mentions {
    text {
      content: "installation lovemotion royalacademy"
      begin_offset: 102545
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "image"
  type: WORK_OF_ART
  salience: 1.967712705663871e-05
  mentions {
    text {
      content: "image"
      begin_offset: 118331
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installation light spirit london"
  type: OTHER
  salience: 1.9644554413389415e-05
  mentions {
    text {
      content: "installation light spirit  london"
      begin_offset: 155398
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "streets london"
  type: OTHER
  salience: 1.9641547623905353e-05
  mentions {
    text {
      content: "streets london"
      begin_offset: 157266
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 1.9635648641269654e-05
  mentions {
    text {
      content: "london"
      begin_offset: 159982
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumi\303\250re london"
  type: LOCATION
  salience: 1.9632750991149805e-05
  mentions {
    text {
      content: "lumi\303\250re london"
      begin_offset: 161629
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london"
  type: LOCATION
  salience: 1.9629889720818028e-05
  mentions {
    text {
      content: "london"
      begin_offset: 164798
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "londonlumiere lumiere london"
  type: PERSON
  salience: 1.9627063011284918e-05
  mentions {
    text {
      content: "londonlumiere lumiere london"
      begin_offset: 165932
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "leicestersquare london"
  type: OTHER
  salience: 1.9624267224571668e-05
  mentions {
    text {
      content: "leicestersquare london"
      begin_offset: 167718
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "glow london"
  type: LOCATION
  salience: 1.9616074496298097e-05
  mentions {
    text {
      content: "glow  london"
      begin_offset: 173774
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "delight"
  type: OTHER
  salience: 1.9599585357354954e-05
  mentions {
    text {
      content: "delight"
      begin_offset: 46249
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "rain someone"
  type: PERSON
  salience: 1.9549486751202494e-05
  mentions {
    text {
      content: "rain someone"
      begin_offset: 127264
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "case study events management"
  type: OTHER
  salience: 1.954770414158702e-05
  mentions {
    text {
      content: "case study events management"
      begin_offset: 43865
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "op ed"
  type: PERSON
  salience: 1.954770414158702e-05
  mentions {
    text {
      content: "op ed"
      begin_offset: 45384
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "ceo"
  type: PERSON
  salience: 1.954770414158702e-05
  mentions {
    text {
      content: "ceo"
      begin_offset: 45363
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "cities"
  type: LOCATION
  salience: 1.954770414158702e-05
  mentions {
    text {
      content: "cities"
      begin_offset: 45430
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.20000000298023224
  }
}
entities {
  name: "station"
  type: ORGANIZATION
  salience: 1.9545866962289438e-05
  mentions {
    text {
      content: "station"
      begin_offset: 127652
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "road closures"
  type: OTHER
  salience: 1.9542299924069084e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 131081
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "image"
  type: WORK_OF_ART
  salience: 1.9535504179657437e-05
  mentions {
    text {
      content: "image"
      begin_offset: 79581
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 1.9535324099706486e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 135187
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "road closures"
  type: OTHER
  salience: 1.9535324099706486e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 133946
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 1.9535324099706486e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 134291
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "minds"
  type: OTHER
  salience: 1.9526765754562803e-05
  mentions {
    text {
      content: "minds"
      begin_offset: 49340
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation trees"
  type: OTHER
  salience: 1.9526765754562803e-05
  mentions {
    text {
      content: "installation trees"
      begin_offset: 47767
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "engcathedrals"
  type: PERSON
  salience: 1.951695048774127e-05
  mentions {
    text {
      content: "engcathedrals"
      begin_offset: 50622
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "road closures"
  type: EVENT
  salience: 1.9515544408932328e-05
  mentions {
    text {
      content: "road closures"
      begin_offset: 146536
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "something"
  type: OTHER
  salience: 1.9512403014232405e-05
  mentions {
    text {
      content: "something"
      begin_offset: 148285
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ceo"
  type: PERSON
  salience: 1.950752266566269e-05
  mentions {
    text {
      content: "ceo"
      begin_offset: 53335
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "op ed"
  type: PERSON
  salience: 1.950752266566269e-05
  mentions {
    text {
      content: "op ed"
      begin_offset: 53356
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "neon"
  type: OTHER
  salience: 1.950624027813319e-05
  mentions {
    text {
      content: "neon"
      begin_offset: 152543
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.949946272361558e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 152437
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "case study events management"
  type: OTHER
  salience: 1.9489723854348995e-05
  mentions {
    text {
      content: "case study events management"
      begin_offset: 55816
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "engcathedrals"
  type: OTHER
  salience: 1.945769508893136e-05
  mentions {
    text {
      content: "engcathedrals"
      begin_offset: 64000
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "somewhere"
  type: LOCATION
  salience: 1.945769508893136e-05
  mentions {
    text {
      content: "somewhere"
      begin_offset: 64108
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "carnabylondon"
  type: OTHER
  salience: 1.942839298862964e-05
  mentions {
    text {
      content: "carnabylondon"
      begin_offset: 152052
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 1.9395665731281042e-05
  mentions {
    text {
      content: "warning"
      begin_offset: 129164
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.9392127796891145e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 131189
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.938520472322125e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 135295
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.938520472322125e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 134399
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.938520472322125e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 134054
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 1.9381817764951847e-05
  mentions {
    text {
      content: "warning"
      begin_offset: 135979
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.9373737814021297e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 170880
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival light aichoketrust wrap"
  type: OTHER
  salience: 1.9320672436151654e-05
  mentions {
    text {
      content: "festival light  aichoketrust wrap"
      begin_offset: 44742
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 1.931547922140453e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 43616
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "trip"
  type: EVENT
  salience: 1.929725840454921e-05
  mentions {
    text {
      content: "trip"
      begin_offset: 137191
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "triptych"
  type: OTHER
  salience: 1.9293935110908933e-05
  mentions {
    text {
      content: "triptych"
      begin_offset: 138672
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "triptych"
  type: OTHER
  salience: 1.9290657292003743e-05
  mentions {
    text {
      content: "triptych"
      begin_offset: 139865
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "royalacademy"
  type: OTHER
  salience: 1.9263665308244526e-05
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 93162
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 139105
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 139389
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 145593
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 164921
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 166027
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 172805
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.899999976158142
  }
}
entities {
  name: "ldn_gov"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/022cpx"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/.gov"
  }
  salience: 1.9173456166754477e-05
  mentions {
    text {
      content: "ldn_gov"
      begin_offset: 64851
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "event hope"
  type: OTHER
  salience: 1.9102333681075834e-05
  mentions {
    text {
      content: "event hope"
      begin_offset: 96417
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "umbrellas"
  type: CONSUMER_GOOD
  salience: 1.9093284208793193e-05
  mentions {
    text {
      content: "umbrellas"
      begin_offset: 99630
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "umbrellas"
  type: CONSUMER_GOOD
  salience: 1.9093284208793193e-05
  mentions {
    text {
      content: "umbrellas"
      begin_offset: 100251
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thelondoneye lumierelondon regentstreet piccadilly"
  type: OTHER
  salience: 1.9066656022914685e-05
  mentions {
    text {
      content: "thelondoneye  lumierelondon regentstreet piccadilly"
      begin_offset: 164743
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 164878
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "royalacademy piano"
  type: OTHER
  salience: 1.9062248611589894e-05
  mentions {
    text {
      content: "royalacademy piano"
      begin_offset: 115287
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 1.8962715330417268e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 134195
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 1.8931550584966317e-05
  mentions {
    text {
      content: "chance"
      begin_offset: 153615
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 11.699999809265137
    score: 0.10000000149011612
  }
}
entities {
  name: "coin child hood"
  type: OTHER
  salience: 1.8925033145933412e-05
  mentions {
    text {
      content: "coin child hood"
      begin_offset: 77795
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "umbrellas"
  type: CONSUMER_GOOD
  salience: 1.8913662643171847e-05
  mentions {
    text {
      content: "umbrellas"
      begin_offset: 81473
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "gt mondaymotivation thinkingcity"
  type: OTHER
  salience: 1.8901384464697912e-05
  mentions {
    text {
      content: "gt mondaymotivation  thinkingcity"
      begin_offset: 46190
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "chrisplant one"
  type: PERSON
  salience: 1.8894337699748576e-05
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 146733
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "chrisplant one"
  type: PERSON
  salience: 1.8894337699748576e-05
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 147158
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 1.8875009118346497e-05
  mentions {
    text {
      content: "cocktails"
      begin_offset: 156253
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "cocktails"
      begin_offset: 157710
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon aichoketrust london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet"
  type: ORGANIZATION
  salience: 1.8850703781936318e-05
  mentions {
    text {
      content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018 lumiere london oxfordstreet"
      begin_offset: 119914
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "visitlondon aichoketrust  london lighta streetphotography streetphoto nightphotography londonlumiere lumierelondon lumierelondon2018"
      begin_offset: 120837
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 1.8796525182551704e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 99594
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 1.8796525182551704e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 100215
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "pics"
  type: WORK_OF_ART
  salience: 1.8761205865303054e-05
  mentions {
    text {
      content: "pics"
      begin_offset: 101819
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "wabbey lumierelondon2018 visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 1.8721597371040843e-05
  mentions {
    text {
      content: "wabbey lumierelondon2018  visitlondon  aichoketrust"
      begin_offset: 106434
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "crowds"
  type: PERSON
  salience: 1.8619693946675397e-05
  mentions {
    text {
      content: "crowds"
      begin_offset: 81437
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "excuse catch check highlights"
  type: OTHER
  salience: 1.8583681594463997e-05
  mentions {
    text {
      content: "excuse catch  check highlights"
      begin_offset: 133689
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.10000000149011612
  }
}
entities {
  name: "map"
  type: WORK_OF_ART
  salience: 1.857799361459911e-05
  mentions {
    text {
      content: "map"
      begin_offset: 123047
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "billboard planet"
  type: OTHER
  salience: 1.8567512597655877e-05
  mentions {
    text {
      content: "billboard planet"
      begin_offset: 128123
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "excuse catch check highlights"
  type: OTHER
  salience: 1.8558928786660545e-05
  mentions {
    text {
      content: "excuse catch  check highlights"
      begin_offset: 149647
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.10000000149011612
  }
}
entities {
  name: "piece"
  type: WORK_OF_ART
  salience: 1.8554255802882835e-05
  mentions {
    text {
      content: "piece"
      begin_offset: 136602
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "plant"
  type: OTHER
  salience: 1.8554255802882835e-05
  mentions {
    text {
      content: "plant"
      begin_offset: 137302
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "serve"
  type: OTHER
  salience: 1.8545104467193596e-05
  mentions {
    text {
      content: "serve"
      begin_offset: 148350
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 1.8544800695963204e-05
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 141539
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "map"
  type: WORK_OF_ART
  salience: 1.853572393883951e-05
  mentions {
    text {
      content: "map"
      begin_offset: 148084
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "aworks"
  type: OTHER
  salience: 1.84936016012216e-05
  mentions {
    text {
      content: "aworks"
      begin_offset: 69844
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance win"
  type: OTHER
  salience: 1.847233943408355e-05
  mentions {
    text {
      content: "chance win"
      begin_offset: 39384
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "chance win"
  type: OTHER
  salience: 1.847233943408355e-05
  mentions {
    text {
      content: "chance win"
      begin_offset: 38656
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "chance win"
  type: OTHER
  salience: 1.8460672436049208e-05
  mentions {
    text {
      content: "chance win"
      begin_offset: 39830
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 1.8442960936226882e-05
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 93119
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "brand"
  type: ORGANIZATION
  salience: 1.842892015702091e-05
  mentions {
    text {
      content: "brand"
      begin_offset: 46416
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "pleasures"
  type: OTHER
  salience: 1.842892015702091e-05
  mentions {
    text {
      content: "pleasures"
      begin_offset: 45572
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "thisislondon leakestarches"
  type: PERSON
  salience: 1.842514393501915e-05
  mentions {
    text {
      content: "thisislondon  leakestarches"
      begin_offset: 98423
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "branches"
  type: OTHER
  salience: 1.8419261323288083e-05
  mentions {
    text {
      content: "branches"
      begin_offset: 47860
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 1.839326614572201e-05
  mentions {
    text {
      content: "love motion"
      begin_offset: 116295
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "food cocktails"
  type: OTHER
  salience: 1.839326614572201e-05
  mentions {
    text {
      content: "food cocktails"
      begin_offset: 115467
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "light show"
  type: EVENT
  salience: 1.8390566765447147e-05
  mentions {
    text {
      content: "light show"
      begin_offset: 37195
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 1.838958269217983e-05
  mentions {
    text {
      content: "love motion"
      begin_offset: 118720
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.8385959265287966e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 119728
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "atransformslives"
  type: OTHER
  salience: 1.838432035583537e-05
  mentions {
    text {
      content: "atransformslives"
      begin_offset: 55125
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "stewards"
  type: PERSON
  salience: 1.836870433180593e-05
  mentions {
    text {
      content: "stewards"
      begin_offset: 59501
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "facade"
  type: OTHER
  salience: 1.836128649301827e-05
  mentions {
    text {
      content: "facade"
      begin_offset: 62313
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "sculptures"
  type: WORK_OF_ART
  salience: 1.8305061530554667e-05
  mentions {
    text {
      content: "sculptures"
      begin_offset: 128700
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 1.8292841559741646e-05
  mentions {
    text {
      content: "cocktails"
      begin_offset: 70770
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "capital"
  type: LOCATION
  salience: 1.8292841559741646e-05
  mentions {
    text {
      content: "capital"
      begin_offset: 69866
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 1.8288839783053845e-05
  mentions {
    text {
      content: "sculpture"
      begin_offset: 139153
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 1.828573294915259e-05
  mentions {
    text {
      content: "sculpture"
      begin_offset: 140278
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 1.828573294915259e-05
  mentions {
    text {
      content: "sculpture"
      begin_offset: 139437
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "carnabylondon"
  type: OTHER
  salience: 1.8276665286975913e-05
  mentions {
    text {
      content: "carnabylondon"
      begin_offset: 146313
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 1.8276665286975913e-05
  mentions {
    text {
      content: "sculpture"
      begin_offset: 145641
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 1.8268474377691746e-05
  mentions {
    text {
      content: "cocktails"
      begin_offset: 77615
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "aichoketrust carnabylondon"
  type: PERSON
  salience: 1.826512198022101e-05
  mentions {
    text {
      content: "aichoketrust  carnabylondon"
      begin_offset: 153582
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 1.8262779121869244e-05
  mentions {
    text {
      content: "cocktails"
      begin_offset: 77883
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "walk"
  type: EVENT
  salience: 1.8257225747220218e-05
  mentions {
    text {
      content: "walk"
      begin_offset: 79562
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "courses amp cocktail"
  type: OTHER
  salience: 1.8251806977787055e-05
  mentions {
    text {
      content: "courses amp cocktail"
      begin_offset: 82436
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "courses amp cocktail"
  type: OTHER
  salience: 1.8251806977787055e-05
  mentions {
    text {
      content: "courses amp cocktail"
      begin_offset: 82312
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "biuk"
  type: OTHER
  salience: 1.8193881260231137e-05
  mentions {
    text {
      content: "biuk"
      begin_offset: 40705
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "wiermann frictions"
  type: OTHER
  salience: 1.8128190276911482e-05
  mentions {
    text {
      content: "wiermann frictions"
      begin_offset: 131408
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wiermann frictions"
  type: OTHER
  salience: 1.8118553271051496e-05
  mentions {
    text {
      content: "wiermann frictions"
      begin_offset: 137053
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "2018 leicester square"
  type: LOCATION
  salience: 1.8092245227308013e-05
  mentions {
    text {
      content: "2018 leicester square"
      begin_offset: 136853
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "production students"
  type: PERSON
  salience: 1.80883398570586e-05
  mentions {
    text {
      content: "production students"
      begin_offset: 92620
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "plants"
  type: LOCATION
  salience: 1.8078964785672724e-05
  mentions {
    text {
      content: "plants"
      begin_offset: 152388
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "thelondoneye loki_lego lumierelondon trafalgar square"
  type: LOCATION
  salience: 1.8071301383315586e-05
  mentions {
    text {
      content: "thelondoneye   loki_lego lumierelondon  trafalgar square"
      begin_offset: 150286
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "laughter southmoltonstreet musical"
  type: WORK_OF_ART
  salience: 1.8070571968564764e-05
  mentions {
    text {
      content: "laughter southmoltonstreet musical"
      begin_offset: 63174
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mpsprinces team"
  type: ORGANIZATION
  salience: 1.805219471862074e-05
  mentions {
    text {
      content: "mpsprinces team"
      begin_offset: 130085
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "students"
  type: PERSON
  salience: 1.8043272575596347e-05
  mentions {
    text {
      content: "students"
      begin_offset: 114367
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "image"
  type: WORK_OF_ART
  salience: 1.8037710106000304e-05
  mentions {
    text {
      content: "image"
      begin_offset: 126922
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "images"
  type: WORK_OF_ART
  salience: 1.8027836631517857e-05
  mentions {
    text {
      content: "images"
      begin_offset: 133235
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "royalacademy"
  type: PERSON
  salience: 1.8012307918979786e-05
  mentions {
    text {
      content: "royalacademy"
      begin_offset: 142424
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "colleagues"
  type: PERSON
  salience: 1.8012307918979786e-05
  mentions {
    text {
      content: "colleagues"
      begin_offset: 141456
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "neon ladder"
  type: OTHER
  salience: 1.8010723579209298e-05
  mentions {
    text {
      content: "neon ladder"
      begin_offset: 83503
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "pinterest board selection books"
  type: WORK_OF_ART
  salience: 1.8005792298936285e-05
  mentions {
    text {
      content: "pinterest board selection books"
      begin_offset: 130743
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.7996087990468368e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 167676
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "supercube look camera"
  type: OTHER
  salience: 1.7954112990992144e-05
  mentions {
    text {
      content: "supercube look camera"
      begin_offset: 66841
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "asalto london victoriabid embspainuk spaincultureuk kingscrossn1c"
  type: ORGANIZATION
  salience: 1.7931921320268884e-05
  mentions {
    text {
      content: "asalto london  victoriabid embspainuk spaincultureuk  kingscrossn1c"
      begin_offset: 144457
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.782963408913929e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 75639
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "nightlife chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon biuk"
  type: ORGANIZATION
  salience: 1.7816577383200638e-05
  mentions {
    text {
      content: "nightlife chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon  biuk"
      begin_offset: 37313
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon biuk"
  type: ORGANIZATION
  salience: 1.7804715753300115e-05
  mentions {
    text {
      content: "mayoroflondon visitlondon aichoketrust guardianwitness timeoutlondon  biuk"
      begin_offset: 37782
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "eye updates"
  type: OTHER
  salience: 1.776968565536663e-05
  mentions {
    text {
      content: "eye updates"
      begin_offset: 35309
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "food"
  type: OTHER
  salience: 1.776010867615696e-05
  mentions {
    text {
      content: "food"
      begin_offset: 149957
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "area"
  type: LOCATION
  salience: 1.7674168702797033e-05
  mentions {
    text {
      content: "area"
      begin_offset: 114760
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon timeoutlondon"
  type: OTHER
  salience: 1.7620197468204424e-05
  mentions {
    text {
      content: "lumierelondon  timeoutlondon"
      begin_offset: 125754
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "canon"
  type: PERSON
  salience: 1.7574091543792747e-05
  mentions {
    text {
      content: "canon"
      begin_offset: 70915
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon carnabylondon"
  type: PERSON
  salience: 1.753774267854169e-05
  mentions {
    text {
      content: "lumierelondon  carnabylondon"
      begin_offset: 39334
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "voyages"
  type: OTHER
  salience: 1.7534668586449698e-05
  mentions {
    text {
      content: "voyages"
      begin_offset: 82532
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scenes"
  type: WORK_OF_ART
  salience: 1.7534668586449698e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 80769
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lots"
  type: OTHER
  salience: 1.752958633005619e-05
  mentions {
    text {
      content: "lots"
      begin_offset: 83392
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "canon"
  type: OTHER
  salience: 1.7524624126963317e-05
  mentions {
    text {
      content: "canon"
      begin_offset: 85893
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "go"
  type: OTHER
  salience: 1.7524624126963317e-05
  mentions {
    text {
      content: "go"
      begin_offset: 85389
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "power"
  type: OTHER
  salience: 1.751154923113063e-05
  mentions {
    text {
      content: "power"
      begin_offset: 108652
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon2018 london aquarium"
  type: ORGANIZATION
  salience: 1.7481166651123203e-05
  mentions {
    text {
      content: "lumierelondon2018  london aquarium"
      begin_offset: 114136
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "child hood"
  type: OTHER
  salience: 1.7459165974287316e-05
  mentions {
    text {
      content: "child hood"
      begin_offset: 133147
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "hope"
  type: OTHER
  salience: 1.7459165974287316e-05
  mentions {
    text {
      content: "hope"
      begin_offset: 132781
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "child hood"
  type: OTHER
  salience: 1.7456071873311885e-05
  mentions {
    text {
      content: "child hood"
      begin_offset: 133850
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust aists"
  type: PERSON
  salience: 1.7326974557363428e-05
  mentions {
    text {
      content: "aichoketrust aists"
      begin_offset: 115190
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "child hood lumiere"
  type: OTHER
  salience: 1.727765629766509e-05
  mentions {
    text {
      content: "child hood lumiere"
      begin_offset: 166180
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon"
  type: PERSON
  salience: 1.7270360331167467e-05
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 172319
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "carnabylondon london lumiere"
  type: OTHER
  salience: 1.7267982912017033e-05
  mentions {
    text {
      content: "carnabylondon london lumiere"
      begin_offset: 175223
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "night sky"
  type: OTHER
  salience: 1.7221896996488795e-05
  mentions {
    text {
      content: "night sky"
      begin_offset: 35205
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "go pop"
  type: OTHER
  salience: 1.7220661902683787e-05
  mentions {
    text {
      content: "go pop"
      begin_offset: 128640
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "benjamingammon"
  type: PERSON
  salience: 1.720977707009297e-05
  mentions {
    text {
      content: "benjamingammon"
      begin_offset: 36260
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "locations"
  type: LOCATION
  salience: 1.7198319255840033e-05
  mentions {
    text {
      content: "locations"
      begin_offset: 38000
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "website"
  type: OTHER
  salience: 1.719618376228027e-05
  mentions {
    text {
      content: "website"
      begin_offset: 68230
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "levanterman"
  type: PERSON
  salience: 1.7187456251122057e-05
  mentions {
    text {
      content: "levanterman"
      begin_offset: 39925
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "experience pics"
  type: WORK_OF_ART
  salience: 1.715945836622268e-05
  mentions {
    text {
      content: "experience pics"
      begin_offset: 132586
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "canary wharf adamscottg"
  type: ORGANIZATION
  salience: 1.715789403533563e-05
  mentions {
    text {
      content: "canary wharf  adamscottg"
      begin_offset: 45504
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonwalks ghosts"
  type: OTHER
  salience: 1.715789403533563e-05
  mentions {
    text {
      content: "londonwalks ghosts"
      begin_offset: 45598
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "detail"
  type: OTHER
  salience: 1.7136288079200312e-05
  mentions {
    text {
      content: "detail"
      begin_offset: 147805
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "reasons"
  type: OTHER
  salience: 1.713200254016556e-05
  mentions {
    text {
      content: "reasons"
      begin_offset: 52093
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "decision"
  type: OTHER
  salience: 1.713200254016556e-05
  mentions {
    text {
      content: "decision"
      begin_offset: 52733
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fun"
  type: OTHER
  salience: 1.7129388652392663e-05
  mentions {
    text {
      content: "fun"
      begin_offset: 36243
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "angle"
  type: OTHER
  salience: 1.7120431948569603e-05
  mentions {
    text {
      content: "angle"
      begin_offset: 35148
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "thing"
  type: OTHER
  salience: 1.711511504254304e-05
  mentions {
    text {
      content: "thing"
      begin_offset: 96364
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "telephone box"
  type: CONSUMER_GOOD
  salience: 1.7114953152486123e-05
  mentions {
    text {
      content: "telephone box"
      begin_offset: 66721
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aquarium telephone box"
  type: OTHER
  salience: 1.7114953152486123e-05
  mentions {
    text {
      content: "aquarium telephone box"
      begin_offset: 67776
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "interview harry qedproductions"
  type: WORK_OF_ART
  salience: 1.7108974134316668e-05
  mentions {
    text {
      content: "interview harry qedproductions"
      begin_offset: 57708
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "response"
  type: OTHER
  salience: 1.7108974134316668e-05
  mentions {
    text {
      content: "response"
      begin_offset: 58262
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "breathing difficulties chest pain diabetic"
  type: OTHER
  salience: 1.7108974134316668e-05
  mentions {
    text {
      content: "breathing difficulties chest pain diabetic"
      begin_offset: 58297
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "drug overdoses"
  type: OTHER
  salience: 1.7108974134316668e-05
  mentions {
    text {
      content: "drug overdoses"
      begin_offset: 58350
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "development"
  type: OTHER
  salience: 1.7108974134316668e-05
  mentions {
    text {
      content: "development"
      begin_offset: 58479
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "decision"
  type: OTHER
  salience: 1.709492426016368e-05
  mentions {
    text {
      content: "decision"
      begin_offset: 62818
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "list"
  type: OTHER
  salience: 1.7088241293095052e-05
  mentions {
    text {
      content: "list"
      begin_offset: 64302
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aquarium telephone box"
  type: OTHER
  salience: 1.707444607745856e-05
  mentions {
    text {
      content: "aquarium telephone box"
      begin_offset: 79258
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lumiere lumierelondon oxfordstreet london oxford street"
  type: LOCATION
  salience: 1.7041571481968276e-05
  mentions {
    text {
      content: "lumiere  lumierelondon oxfordstreet london oxford street"
      begin_offset: 127085
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "tmnikonian christiana72 ganton sttreet carnaby street"
  type: LOCATION
  salience: 1.7032243704306893e-05
  mentions {
    text {
      content: "tmnikonian  christiana72  ganton sttreet carnaby street"
      begin_offset: 131678
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lumiere lumierelondon lumierelondon2018 ganton sttreet carnaby street"
  type: LOCATION
  salience: 1.7032243704306893e-05
  mentions {
    text {
      content: "lumiere lumierelondon lumierelondon2018  ganton sttreet carnaby street"
      begin_offset: 131899
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
  }
}
entities {
  name: "tomodo"
  type: LOCATION
  salience: 1.7013664546539076e-05
  mentions {
    text {
      content: "tomodo"
      begin_offset: 117458
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "night lights"
  type: OTHER
  salience: 1.6936093743424863e-05
  mentions {
    text {
      content: "night lights"
      begin_offset: 156372
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6931006030063145e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 160264
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6923602743190713e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 167123
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lightbulb"
  type: OTHER
  salience: 1.6923602743190713e-05
  mentions {
    text {
      content: "lightbulb"
      begin_offset: 167433
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6923602743190713e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 167353
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6923602743190713e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 166889
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierefestival lights"
  type: OTHER
  salience: 1.6923602743190713e-05
  mentions {
    text {
      content: "lumierefestival lights"
      begin_offset: 166686
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "light"
  type: OTHER
  salience: 1.6921192582231015e-05
  mentions {
    text {
      content: "light"
      begin_offset: 168790
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6921192582231015e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 168027
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lumierefestival lights"
  type: OTHER
  salience: 1.6921192582231015e-05
  mentions {
    text {
      content: "lumierefestival lights"
      begin_offset: 167741
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6918811525101773e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 171142
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lighting light"
  type: OTHER
  salience: 1.691645593382418e-05
  mentions {
    text {
      content: "lighting light"
      begin_offset: 172340
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.691645593382418e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 172958
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.6914129446377046e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 173580
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "fun"
  type: OTHER
  salience: 1.6860603864188306e-05
  mentions {
    text {
      content: "fun"
      begin_offset: 125248
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "sight"
  type: OTHER
  salience: 1.6860603864188306e-05
  mentions {
    text {
      content: "sight"
      begin_offset: 124307
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.6857433365657926e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 127248
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "road closures buses"
  type: OTHER
  salience: 1.6857433365657926e-05
  mentions {
    text {
      content: "road closures buses"
      begin_offset: 126109
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.6857433365657926e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 126819
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "sights"
  type: OTHER
  salience: 1.685431197984144e-05
  mentions {
    text {
      content: "sights"
      begin_offset: 127950
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 1.6839376257848926e-05
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 139062
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 1.6836514987517148e-05
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 139346
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "motion"
  type: OTHER
  salience: 1.683369373495225e-05
  mentions {
    text {
      content: "motion"
      begin_offset: 142465
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "wearewaterloouk leakestarches"
  type: PERSON
  salience: 1.6830910681164823e-05
  mentions {
    text {
      content: "wearewaterloouk leakestarches"
      begin_offset: 144343
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 1.6828165826154873e-05
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 145550
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "leakestreetarches"
  type: PERSON
  salience: 1.681753565208055e-05
  mentions {
    text {
      content: "leakestreetarches"
      begin_offset: 154992
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "leakestreetarches"
  type: PERSON
  salience: 1.681753565208055e-05
  mentions {
    text {
      content: "leakestreetarches"
      begin_offset: 154939
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "amp culture"
  type: OTHER
  salience: 1.6799038348835893e-05
  mentions {
    text {
      content: "amp culture"
      begin_offset: 66070
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "landscape"
  type: OTHER
  salience: 1.6792862879810855e-05
  mentions {
    text {
      content: "landscape"
      begin_offset: 69337
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "heres images"
  type: WORK_OF_ART
  salience: 1.6790365407359786e-05
  mentions {
    text {
      content: "heres images"
      begin_offset: 104360
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "friends"
  type: PERSON
  salience: 1.6759278878453188e-05
  mentions {
    text {
      content: "friends"
      begin_offset: 78589
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "guide amp share pics"
  type: WORK_OF_ART
  salience: 1.6747964764363132e-05
  mentions {
    text {
      content: "guide amp share pics"
      begin_offset: 127984
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon"
  type: PERSON
  salience: 1.6747155314078555e-05
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium aichoketrust ace_national visitlondon bloombergdotorg mayoroflondon"
      begin_offset: 83790
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lightinstallation landscape"
  type: OTHER
  salience: 1.6739615603000857e-05
  mentions {
    text {
      content: "lightinstallation landscape"
      begin_offset: 85828
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "james piccadilly"
  type: LOCATION
  salience: 1.664471346884966e-05
  mentions {
    text {
      content: "james piccadilly"
      begin_offset: 98118
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nofilterneeded lovelondon"
  type: PERSON
  salience: 1.6640808098600246e-05
  mentions {
    text {
      content: "nofilterneeded lovelondon"
      begin_offset: 100366
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 archdeaconluke trafalgarsquare"
  type: PERSON
  salience: 1.6639485693303868e-05
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  archdeaconluke trafalgarsquare"
      begin_offset: 60719
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "visitlondon bealocaltourist phone"
  type: ORGANIZATION
  salience: 1.6622612747596577e-05
  mentions {
    text {
      content: "visitlondon bealocaltourist phone"
      begin_offset: 150098
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "cityshots snapshoot lightfestival lovelondon"
  type: PERSON
  salience: 1.6608690202701837e-05
  mentions {
    text {
      content: "cityshots snapshoot lightfestival lovelondon"
      begin_offset: 117274
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "trip"
  type: EVENT
  salience: 1.6534557289560325e-05
  mentions {
    text {
      content: "trip"
      begin_offset: 87313
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "doorways"
  type: OTHER
  salience: 1.6525606042705476e-05
  mentions {
    text {
      content: "doorways"
      begin_offset: 104429
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "doorways"
  type: OTHER
  salience: 1.6521938960067928e-05
  mentions {
    text {
      content: "doorways"
      begin_offset: 106392
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "camera"
  type: CONSUMER_GOOD
  salience: 1.651843194849789e-05
  mentions {
    text {
      content: "camera"
      begin_offset: 135530
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "rain loki_lego"
  type: ORGANIZATION
  salience: 1.6515587049070746e-05
  mentions {
    text {
      content: "rain  loki_lego"
      begin_offset: 138910
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "doorways"
  type: OTHER
  salience: 1.651479942665901e-05
  mentions {
    text {
      content: "doorways"
      begin_offset: 109961
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "hotelkensington"
  type: OTHER
  salience: 1.650728336244356e-05
  mentions {
    text {
      content: "hotelkensington"
      begin_offset: 145200
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "cameras"
  type: CONSUMER_GOOD
  salience: 1.650193371460773e-05
  mentions {
    text {
      content: "cameras"
      begin_offset: 148876
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "visitlondon printer"
  type: OTHER
  salience: 1.6500483980053104e-05
  mentions {
    text {
      content: "visitlondon printer"
      begin_offset: 91305
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "hotelkensington"
  type: OTHER
  salience: 1.6499310731887817e-05
  mentions {
    text {
      content: "hotelkensington"
      begin_offset: 150900
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon balloons"
  type: OTHER
  salience: 1.649416662985459e-05
  mentions {
    text {
      content: "lumierelondon balloons"
      begin_offset: 154050
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 1.6488167602801695e-05
  mentions {
    text {
      content: "weather"
      begin_offset: 95071
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "space"
  type: LOCATION
  salience: 1.6484224033774808e-05
  mentions {
    text {
      content: "space"
      begin_offset: 98048
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "use"
  type: OTHER
  salience: 1.6476562450407073e-05
  mentions {
    text {
      content: "use"
      begin_offset: 101285
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "westminsterabbey reflection"
  type: OTHER
  salience: 1.646918462938629e-05
  mentions {
    text {
      content: "westminsterabbey reflection"
      begin_offset: 104719
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "mickfusion"
  type: OTHER
  salience: 1.6451844203402288e-05
  mentions {
    text {
      content: "mickfusion"
      begin_offset: 116120
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "reflections"
  type: OTHER
  salience: 1.6451844203402288e-05
  mentions {
    text {
      content: "reflections"
      begin_offset: 116750
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "use"
  type: OTHER
  salience: 1.6448550013592467e-05
  mentions {
    text {
      content: "use"
      begin_offset: 117889
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "use"
  type: OTHER
  salience: 1.6448550013592467e-05
  mentions {
    text {
      content: "use"
      begin_offset: 118237
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tour"
  type: EVENT
  salience: 1.6373882317566313e-05
  mentions {
    text {
      content: "tour"
      begin_offset: 66416
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tour"
  type: EVENT
  salience: 1.6373882317566313e-05
  mentions {
    text {
      content: "tour"
      begin_offset: 67101
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dots order prints"
  type: OTHER
  salience: 1.6373882317566313e-05
  mentions {
    text {
      content: "dots order prints"
      begin_offset: 65769
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "academy"
  type: ORGANIZATION
  salience: 1.6351639715139754e-05
  mentions {
    text {
      content: "academy"
      begin_offset: 116987
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 1.6330161088262685e-05
  mentions {
    text {
      content: "weather"
      begin_offset: 80239
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "reflection"
  type: OTHER
  salience: 1.632531530049164e-05
  mentions {
    text {
      content: "reflection"
      begin_offset: 81399
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "wickeduk tour"
  type: EVENT
  salience: 1.6320584109053016e-05
  mentions {
    text {
      content: "wickeduk tour"
      begin_offset: 83210
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "order prints"
  type: OTHER
  salience: 1.631596387596801e-05
  mentions {
    text {
      content: "order prints"
      begin_offset: 85804
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "tourists"
  type: PERSON
  salience: 1.631596387596801e-05
  mentions {
    text {
      content: "tourists"
      begin_offset: 85556
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "masons window"
  type: OTHER
  salience: 1.6246673112618737e-05
  mentions {
    text {
      content: "masons window"
      begin_offset: 110978
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amp masons window"
  type: OTHER
  salience: 1.6246673112618737e-05
  mentions {
    text {
      content: "amp masons window"
      begin_offset: 111664
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "area"
  type: LOCATION
  salience: 1.6189125744858757e-05
  mentions {
    text {
      content: "area"
      begin_offset: 131269
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "area"
  type: LOCATION
  salience: 1.618334681552369e-05
  mentions {
    text {
      content: "area"
      begin_offset: 134479
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "area"
  type: LOCATION
  salience: 1.618334681552369e-05
  mentions {
    text {
      content: "area"
      begin_offset: 135375
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "trains"
  type: OTHER
  salience: 1.616178997210227e-05
  mentions {
    text {
      content: "trains"
      begin_offset: 151234
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 1.6156749552465044e-05
  mentions {
    text {
      content: "scenes"
      begin_offset: 155030
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wish"
  type: OTHER
  salience: 1.61390289576957e-05
  mentions {
    text {
      content: "wish"
      begin_offset: 126040
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.6124427929753438e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 165670
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 1.6090765711851418e-05
  mentions {
    text {
      content: "pictures"
      begin_offset: 39904
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "londontown biuk"
  type: OTHER
  salience: 1.6085536117316224e-05
  mentions {
    text {
      content: "londontown  biuk"
      begin_offset: 51805
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.10000000149011612
  }
}
entities {
  name: "visitlondon biuk"
  type: OTHER
  salience: 1.607806007086765e-05
  mentions {
    text {
      content: "visitlondon  biuk"
      begin_offset: 54236
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "torch faces"
  type: OTHER
  salience: 1.6077063264674507e-05
  mentions {
    text {
      content: "torch faces"
      begin_offset: 129643
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "energy"
  type: OTHER
  salience: 1.604295539436862e-05
  mentions {
    text {
      content: "energy"
      begin_offset: 93155
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "buildings"
  type: LOCATION
  salience: 1.6013098502298817e-05
  mentions {
    text {
      content: "buildings"
      begin_offset: 107648
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "ping pong side imaginationuk building"
  type: LOCATION
  salience: 1.600629730091896e-05
  mentions {
    text {
      content: "ping pong side imaginationuk building"
      begin_offset: 111361
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "cycling"
  type: EVENT
  salience: 1.599658207851462e-05
  mentions {
    text {
      content: "cycling"
      begin_offset: 58778
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lasers"
  type: OTHER
  salience: 1.5996522051864304e-05
  mentions {
    text {
      content: "lasers"
      begin_offset: 117219
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "illumination"
  type: OTHER
  salience: 1.5990268366294913e-05
  mentions {
    text {
      content: "illumination"
      begin_offset: 122520
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "illuminations"
  type: OTHER
  salience: 1.5990268366294913e-05
  mentions {
    text {
      content: "illuminations"
      begin_offset: 122392
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: -0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: -0.8999999761581421
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 1.593406341271475e-05
  mentions {
    text {
      content: "south bank"
      begin_offset: 87318
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "gasworks longexposures"
  type: ORGANIZATION
  salience: 1.5925403204164468e-05
  mentions {
    text {
      content: "gasworks longexposures"
      begin_offset: 101156
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "staing"
  type: OTHER
  salience: 1.591344698681496e-05
  mentions {
    text {
      content: "staing"
      begin_offset: 167399
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "staing"
      begin_offset: 174837
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.10000000149011612
  }
}
entities {
  name: "london lumierelondon"
  type: PERSON
  salience: 1.589075145602692e-05
  mentions {
    text {
      content: "london lumierelondon"
      begin_offset: 175876
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "guide amp share pics"
  type: WORK_OF_ART
  salience: 1.5858004189794883e-05
  mentions {
    text {
      content: "guide amp share pics"
      begin_offset: 75673
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "dot"
  type: LOCATION
  salience: 1.5847172107896768e-05
  mentions {
    text {
      content: "dot"
      begin_offset: 122868
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "origin world bubble"
  type: OTHER
  salience: 1.582968980073929e-05
  mentions {
    text {
      content: "origin world bubble"
      begin_offset: 135101
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "canadian"
  type: LOCATION
  salience: 1.582947515998967e-05
  mentions {
    text {
      content: "canadian"
      begin_offset: 46533
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "canadian"
      begin_offset: 53234
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "poal"
  type: OTHER
  salience: 1.58269249368459e-05
  mentions {
    text {
      content: "poal"
      begin_offset: 137291
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "friend toddler"
  type: PERSON
  salience: 1.5817257008166052e-05
  mentions {
    text {
      content: "friend toddler"
      begin_offset: 141046
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "mayfair"
  type: EVENT
  salience: 1.5813979189260863e-05
  mentions {
    text {
      content: "mayfair"
      begin_offset: 91166
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon biuk"
  type: ORGANIZATION
  salience: 1.5800625988049433e-05
  mentions {
    text {
      content: "lumierelondon   leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  biuk"
      begin_offset: 28158
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "50 aists dewdropbook dewdrop ay abi"
  type: ORGANIZATION
  salience: 1.5767760487506166e-05
  mentions {
    text {
      content: "50 aists  dewdropbook dewdrop ay abi"
      begin_offset: 51883
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "love md"
  type: PERSON
  salience: 1.5706109479651786e-05
  mentions {
    text {
      content: "love md"
      begin_offset: 34303
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "background distractions"
  type: OTHER
  salience: 1.5706109479651786e-05
  mentions {
    text {
      content: "background distractions"
      begin_offset: 35173
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "gin costs"
  type: OTHER
  salience: 1.5706109479651786e-05
  mentions {
    text {
      content: "gin costs"
      begin_offset: 35388
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "david ward"
  type: PERSON
  salience: 1.5695055481046438e-05
  mentions {
    text {
      content: "david ward"
      begin_offset: 36772
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "fish swimming"
  type: EVENT
  salience: 1.5674699170631357e-05
  mentions {
    text {
      content: "fish swimming"
      begin_offset: 41371
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "screens"
  type: OTHER
  salience: 1.56652822624892e-05
  mentions {
    text {
      content: "screens"
      begin_offset: 42372
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "reality"
  type: OTHER
  salience: 1.5647738109692e-05
  mentions {
    text {
      content: "reality"
      begin_offset: 45655
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "fireflies"
  type: OTHER
  salience: 1.5639538105460815e-05
  mentions {
    text {
      content: "fireflies"
      begin_offset: 47820
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "sofas"
  type: CONSUMER_GOOD
  salience: 1.562412580824457e-05
  mentions {
    text {
      content: "sofas"
      begin_offset: 52329
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "magnificence"
  type: OTHER
  salience: 1.5609870388288982e-05
  mentions {
    text {
      content: "magnificence"
      begin_offset: 56252
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "flamingo flyway"
  type: LOCATION
  salience: 1.5609870388288982e-05
  mentions {
    text {
      content: "flamingo flyway"
      begin_offset: 55413
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "saws"
  type: OTHER
  salience: 1.5590310795232654e-05
  mentions {
    text {
      content: "saws"
      begin_offset: 63213
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "launch"
  type: EVENT
  salience: 1.558421536174137e-05
  mentions {
    text {
      content: "launch"
      begin_offset: 64718
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust londonisopen"
  type: PERSON
  salience: 1.5579817045363598e-05
  mentions {
    text {
      content: "aichoketrust londonisopen"
      begin_offset: 168217
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "blog"
  type: OTHER
  salience: 1.555679045850411e-05
  mentions {
    text {
      content: "blog"
      begin_offset: 94211
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 1.5549278032267466e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 97344
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon ball"
  type: OTHER
  salience: 1.553179208713118e-05
  mentions {
    text {
      content: "lumierelondon  ball"
      begin_offset: 135556
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "doorways"
  type: OTHER
  salience: 1.5531702956650406e-05
  mentions {
    text {
      content: "doorways"
      begin_offset: 108361
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "town"
  type: LOCATION
  salience: 1.552510730107315e-05
  mentions {
    text {
      content: "town"
      begin_offset: 112859
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "production"
  type: OTHER
  salience: 1.5521893146797083e-05
  mentions {
    text {
      content: "production"
      begin_offset: 114356
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "plug bulbs"
  type: OTHER
  salience: 1.5512567188125104e-05
  mentions {
    text {
      content: "plug bulbs"
      begin_offset: 119646
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pics"
  type: WORK_OF_ART
  salience: 1.5504898328799754e-05
  mentions {
    text {
      content: "pics"
      begin_offset: 64834
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "life"
  type: OTHER
  salience: 1.5469624486286193e-05
  mentions {
    text {
      content: "life"
      begin_offset: 125877
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "calls"
  type: OTHER
  salience: 1.5447840269189328e-05
  mentions {
    text {
      content: "calls"
      begin_offset: 141392
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "polaroidorignls"
  type: OTHER
  salience: 1.544519363960717e-05
  mentions {
    text {
      content: "polaroidorignls"
      begin_offset: 67501
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "poland"
  type: LOCATION
  salience: 1.54395147546893e-05
  mentions {
    text {
      content: "poland"
      begin_offset: 68362
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 1.5
    score: 0.4000000059604645
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 1.5434003216796555e-05
  mentions {
    text {
      content: "glass"
      begin_offset: 70725
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 1.541344499855768e-05
  mentions {
    text {
      content: "glass"
      begin_offset: 77570
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 1.540863922855351e-05
  mentions {
    text {
      content: "glass"
      begin_offset: 77838
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "extravaganza magic"
  type: OTHER
  salience: 1.5403951692860574e-05
  mentions {
    text {
      content: "extravaganza magic"
      begin_offset: 79940
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "names"
  type: OTHER
  salience: 1.539680306450464e-05
  mentions {
    text {
      content: "names"
      begin_offset: 156274
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "names"
      begin_offset: 157731
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "jar kids"
  type: PERSON
  salience: 1.53876007971121e-05
  mentions {
    text {
      content: "jar kids"
      begin_offset: 66870
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "poland"
  type: LOCATION
  salience: 1.5386300219688565e-05
  mentions {
    text {
      content: "poland"
      begin_offset: 86343
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "poland"
  type: LOCATION
  salience: 1.5386300219688565e-05
  mentions {
    text {
      content: "poland"
      begin_offset: 87506
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 1.5344943676609546e-05
  mentions {
    text {
      content: "people"
      begin_offset: 73855
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "selection craft beer food tickle tastebuds"
  type: OTHER
  salience: 1.5304140106309205e-05
  mentions {
    text {
      content: "selection craft beer food tickle tastebuds"
      begin_offset: 129816
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "westminster marshalljulius"
  type: LOCATION
  salience: 1.5276624253601767e-05
  mentions {
    text {
      content: "westminster  marshalljulius"
      begin_offset: 144991
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5172511666605715e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 155641
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5170218830462545e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 159344
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5170218830462545e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 158396
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.516795418865513e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 160954
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.516571683168877e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 162106
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.516571683168877e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 163181
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.516571683168877e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 161975
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.516571683168877e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 161937
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5161322153289802e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 166733
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 1.5159163012867793e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 168203
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "southbank installation"
  type: OTHER
  salience: 1.5159163012867793e-05
  mentions {
    text {
      content: "southbank installation"
      begin_offset: 167937
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5159163012867793e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 167607
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5157029338297434e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 170545
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 1.5152833839238156e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 173729
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installation"
  type: OTHER
  salience: 1.5152833839238156e-05
  mentions {
    text {
      content: "installation"
      begin_offset: 174087
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "installations"
  type: OTHER
  salience: 1.5152833839238156e-05
  mentions {
    text {
      content: "installations"
      begin_offset: 173320
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "tour"
  type: EVENT
  salience: 1.5083829566719942e-05
  mentions {
    text {
      content: "tour"
      begin_offset: 123227
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "jacob ladder"
  type: OTHER
  salience: 1.5075320334290154e-05
  mentions {
    text {
      content: "jacob ladder"
      begin_offset: 129207
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "tour"
  type: EVENT
  salience: 1.506985972810071e-05
  mentions {
    text {
      content: "tour"
      begin_offset: 132249
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 1.5059402358019724e-05
  mentions {
    text {
      content: "whizz"
      begin_offset: 141288
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 1.5056879419717006e-05
  mentions {
    text {
      content: "whizz"
      begin_offset: 141500
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "rain grantchito 2018 leicester square"
  type: LOCATION
  salience: 1.5054749383125454e-05
  mentions {
    text {
      content: "rain  grantchito  2018 leicester square"
      begin_offset: 137755
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "space"
  type: LOCATION
  salience: 1.5049510693643242e-05
  mentions {
    text {
      content: "space"
      begin_offset: 147499
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 1.5044757674331777e-05
  mentions {
    text {
      content: "weather"
      begin_offset: 153377
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "reflections"
  type: OTHER
  salience: 1.5042426639411133e-05
  mentions {
    text {
      content: "reflections"
      begin_offset: 154187
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "churches"
  type: LOCATION
  salience: 1.5036956028779969e-05
  mentions {
    text {
      content: "churches"
      begin_offset: 94648
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cathedral"
  type: LOCATION
  salience: 1.5033359886729158e-05
  mentions {
    text {
      content: "cathedral"
      begin_offset: 97011
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "progress"
  type: OTHER
  salience: 1.5029832866275683e-05
  mentions {
    text {
      content: "progress"
      begin_offset: 98475
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "field"
  type: OTHER
  salience: 1.5029832866275683e-05
  mentions {
    text {
      content: "field"
      begin_offset: 99668
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "ldn_culture"
  type: OTHER
  salience: 1.5022977095213719e-05
  mentions {
    text {
      content: "ldn_culture"
      begin_offset: 104072
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "physics glory nohern"
  type: OTHER
  salience: 1.5013152733445168e-05
  mentions {
    text {
      content: "physics glory nohern"
      begin_offset: 110835
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "academy"
  type: ORGANIZATION
  salience: 1.5006884495960549e-05
  mentions {
    text {
      content: "academy"
      begin_offset: 113467
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "progress"
  type: OTHER
  salience: 1.5006884495960549e-05
  mentions {
    text {
      content: "progress"
      begin_offset: 114519
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "academy"
  type: ORGANIZATION
  salience: 1.5003829503257293e-05
  mentions {
    text {
      content: "academy"
      begin_offset: 116313
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "view"
  type: OTHER
  salience: 1.5003829503257293e-05
  mentions {
    text {
      content: "view"
      begin_offset: 116421
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "homes"
  type: LOCATION
  salience: 1.5003829503257293e-05
  mentions {
    text {
      content: "homes"
      begin_offset: 115075
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "view"
  type: OTHER
  salience: 1.5003829503257293e-05
  mentions {
    text {
      content: "view"
      begin_offset: 116551
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "destinations"
  type: LOCATION
  salience: 1.5003829503257293e-05
  mentions {
    text {
      content: "destinations"
      begin_offset: 115541
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "academy"
  type: ORGANIZATION
  salience: 1.5000824532762635e-05
  mentions {
    text {
      content: "academy"
      begin_offset: 118738
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "public"
  type: PERSON
  salience: 1.5000824532762635e-05
  mentions {
    text {
      content: "public"
      begin_offset: 117401
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "london kings cross"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0ndnw"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Kings_Cross,_London"
  }
  salience: 1.4989837836765219e-05
  mentions {
    text {
      content: "london kings cross"
      begin_offset: 127439
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "communities"
  type: PERSON
  salience: 1.4962212844693568e-05
  mentions {
    text {
      content: "communities"
      begin_offset: 53409
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "programme"
  type: OTHER
  salience: 1.4927239135431591e-05
  mentions {
    text {
      content: "programme"
      begin_offset: 69371
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "names"
  type: OTHER
  salience: 1.4921910405973904e-05
  mentions {
    text {
      content: "names"
      begin_offset: 70791
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "pa w"
  type: OTHER
  salience: 1.4897386790835299e-05
  mentions {
    text {
      content: "pa w"
      begin_offset: 77780
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "field"
  type: OTHER
  salience: 1.4888436453475151e-05
  mentions {
    text {
      content: "field"
      begin_offset: 81511
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "fields"
  type: OTHER
  salience: 1.488412181060994e-05
  mentions {
    text {
      content: "fields"
      begin_offset: 83475
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "lumierelondon2018 newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium piccadilly circus"
  type: PERSON
  salience: 1.487638019170845e-05
  mentions {
    text {
      content: "lumierelondon2018   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium piccadilly circus"
      begin_offset: 93665
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "julian crowe"
  type: PERSON
  salience: 1.4871293387841433e-05
  mentions {
    text {
      content: "julian crowe"
      begin_offset: 119889
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "julian crowe"
      begin_offset: 120812
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "amp capture"
  type: OTHER
  salience: 1.4869574442855082e-05
  mentions {
    text {
      content: "amp capture"
      begin_offset: 137980
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "instagram gt"
  type: OTHER
  salience: 1.4848167666059453e-05
  mentions {
    text {
      content: "instagram gt"
      begin_offset: 75733
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "brightnights gt"
  type: OTHER
  salience: 1.483878895669477e-05
  mentions {
    text {
      content: "brightnights gt"
      begin_offset: 77687
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tag"
  type: OTHER
  salience: 1.481803792557912e-05
  mentions {
    text {
      content: "tag"
      begin_offset: 164989
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "tag"
      begin_offset: 166095
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.30000001192092896
  }
}
entities {
  name: "pop south bank"
  type: ORGANIZATION
  salience: 1.4718591955897864e-05
  mentions {
    text {
      content: "pop south bank"
      begin_offset: 134237
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "pop south bank"
  type: ORGANIZATION
  salience: 1.471601990488125e-05
  mentions {
    text {
      content: "pop south bank"
      begin_offset: 136704
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "followers"
  type: PERSON
  salience: 1.4713884411321487e-05
  mentions {
    text {
      content: "followers"
      begin_offset: 75086
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pop south bank"
  type: ORGANIZATION
  salience: 1.4713485143147409e-05
  mentions {
    text {
      content: "pop south bank"
      begin_offset: 137661
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "pop south bank"
  type: ORGANIZATION
  salience: 1.4713485143147409e-05
  mentions {
    text {
      content: "pop south bank"
      begin_offset: 138039
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visitlondon"
  type: EVENT
  salience: 1.4712785741721746e-05
  mentions {
    text {
      content: "visitlondon"
      begin_offset: 156568
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "night go check visitlondon"
  type: ORGANIZATION
  salience: 1.47061964526074e-05
  mentions {
    text {
      content: "night go check visitlondon"
      begin_offset: 163209
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wave brightnights"
  type: OTHER
  salience: 1.4700825886393432e-05
  mentions {
    text {
      content: "wave brightnights"
      begin_offset: 137680
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "youtubers"
  type: PERSON
  salience: 1.4666504284832627e-05
  mentions {
    text {
      content: "youtubers"
      begin_offset: 123451
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "gardens"
  type: LOCATION
  salience: 1.4666504284832627e-05
  mentions {
    text {
      content: "gardens"
      begin_offset: 124189
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lasers"
  type: OTHER
  salience: 1.4655719496659003e-05
  mentions {
    text {
      content: "london lasers"
      begin_offset: 131878
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "ldn festival spectacle"
  type: OTHER
  salience: 1.4655719496659003e-05
  mentions {
    text {
      content: "ldn festival spectacle"
      begin_offset: 132885
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "london lasers"
  type: OTHER
  salience: 1.4655719496659003e-05
  mentions {
    text {
      content: "london lasers"
      begin_offset: 131783
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "coin"
  type: OTHER
  salience: 1.465312197979074e-05
  mentions {
    text {
      content: "coin"
      begin_offset: 133871
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "others"
  type: PERSON
  salience: 1.4650561752205249e-05
  mentions {
    text {
      content: "others"
      begin_offset: 135788
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "nightlife"
  type: EVENT
  salience: 1.464897741243476e-05
  mentions {
    text {
      content: "nightlife"
      begin_offset: 165402
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "flamingoflyway nightlife"
  type: OTHER
  salience: 1.464897741243476e-05
  mentions {
    text {
      content: "flamingoflyway nightlife"
      begin_offset: 165698
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nightlife"
  type: OTHER
  salience: 1.4642791938968003e-05
  mentions {
    text {
      content: "nightlife"
      begin_offset: 173164
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "gardens"
  type: LOCATION
  salience: 1.4633603313995991e-05
  mentions {
    text {
      content: "gardens"
      begin_offset: 149928
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "chrissykinsella friend toddler"
  type: PERSON
  salience: 1.4510585060634185e-05
  mentions {
    text {
      content: "chrissykinsella friend toddler"
      begin_offset: 140403
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "aether"
  type: CONSUMER_GOOD
  salience: 1.4487450243905187e-05
  mentions {
    text {
      content: "aether"
      begin_offset: 91554
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "tag"
  type: OTHER
  salience: 1.4487450243905187e-05
  mentions {
    text {
      content: "tag"
      begin_offset: 93230
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lanterns"
  type: OTHER
  salience: 1.4483845006907359e-05
  mentions {
    text {
      content: "lanterns"
      begin_offset: 94542
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "dinner"
  type: EVENT
  salience: 1.4473453120444901e-05
  mentions {
    text {
      content: "dinner"
      begin_offset: 100051
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.4451354218181223e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 113941
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "glory electricpedals"
  type: OTHER
  salience: 1.4448412002820987e-05
  mentions {
    text {
      content: "glory electricpedals"
      begin_offset: 116167
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "shaftesburyplc"
  type: OTHER
  salience: 1.4445518900174648e-05
  mentions {
    text {
      content: "shaftesburyplc"
      begin_offset: 117084
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "couyard maxcoopermax"
  type: OTHER
  salience: 1.4445518900174648e-05
  mentions {
    text {
      content: "couyard  maxcoopermax"
      begin_offset: 118749
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "boomerang maxcoopermax"
  type: OTHER
  salience: 1.4445518900174648e-05
  mentions {
    text {
      content: "boomerang  maxcoopermax"
      begin_offset: 117547
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance experience aether"
  type: PERSON
  salience: 1.4445518900174648e-05
  mentions {
    text {
      content: "chance experience aether"
      begin_offset: 117576
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "chance experience aether"
  type: PERSON
  salience: 1.4445518900174648e-05
  mentions {
    text {
      content: "chance experience aether"
      begin_offset: 118776
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lanterncompany"
  type: ORGANIZATION
  salience: 1.4442672181758098e-05
  mentions {
    text {
      content: "lanterncompany"
      begin_offset: 120561
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.4439870938076638e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 121735
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "programme"
  type: OTHER
  salience: 1.4437582649406977e-05
  mentions {
    text {
      content: "programme"
      begin_offset: 132458
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "panership technicians_mih techniciansmakeithappen"
  type: ORGANIZATION
  salience: 1.4425586414290592e-05
  mentions {
    text {
      content: "panership technicians_mih techniciansmakeithappen"
      begin_offset: 43288
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 1.4369525160873309e-05
  mentions {
    text {
      content: "bat"
      begin_offset: 70813
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "panership technicians_mih"
  type: PERSON
  salience: 1.4368347365234513e-05
  mentions {
    text {
      content: "panership technicians_mih"
      begin_offset: 57742
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 1.4350384844874498e-05
  mentions {
    text {
      content: "bat"
      begin_offset: 77658
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 1.4345910130941775e-05
  mentions {
    text {
      content: "bat"
      begin_offset: 77926
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "wildlife"
  type: OTHER
  salience: 1.4333136277855374e-05
  mentions {
    text {
      content: "wildlife"
      begin_offset: 84198
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 1.4325111806101631e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 87396
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "theatre hare"
  type: OTHER
  salience: 1.4317441127786878e-05
  mentions {
    text {
      content: "theatre  hare"
      begin_offset: 89436
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 1.4313728570414241e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 90792
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.4238934454624541e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 170142
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 1.4229526641429402e-05
  mentions {
    text {
      content: "people"
      begin_offset: 82201
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 1.4225589438865427e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 124488
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "plug bulbs"
  type: OTHER
  salience: 1.4225589438865427e-05
  mentions {
    text {
      content: "plug bulbs"
      begin_offset: 124097
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "officers"
  type: PERSON
  salience: 1.4220279808796477e-05
  mentions {
    text {
      content: "officers"
      begin_offset: 127760
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "head offices"
  type: OTHER
  salience: 1.4217685020412318e-05
  mentions {
    text {
      content: "head offices"
      begin_offset: 129585
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "stories"
  type: WORK_OF_ART
  salience: 1.4215129340300336e-05
  mentions {
    text {
      content: "stories"
      begin_offset: 132236
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "selfie"
  type: OTHER
  salience: 1.4212610039976425e-05
  mentions {
    text {
      content: "selfie"
      begin_offset: 134494
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 1.4210127119440585e-05
  mentions {
    text {
      content: "car bus"
      begin_offset: 136364
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 1.4205264960764907e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 139725
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "storage"
  type: OTHER
  salience: 1.4205264960764907e-05
  mentions {
    text {
      content: "storage"
      begin_offset: 140303
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 1.4202884813130368e-05
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 142562
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "bulb"
  type: OTHER
  salience: 1.4195934454619419e-05
  mentions {
    text {
      content: "bulb"
      begin_offset: 148307
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "officers"
  type: PERSON
  salience: 1.4189252397045493e-05
  mentions {
    text {
      content: "officers"
      begin_offset: 153832
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 1.4149050912237726e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 156772
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "amp"
  type: PERSON
  salience: 1.4149050912237726e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 157325
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "westend amp"
  type: LOCATION
  salience: 1.4146912690193858e-05
  mentions {
    text {
      content: "westend amp"
      begin_offset: 158454
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amp"
  type: OTHER
  salience: 1.414479993400164e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 160159
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "stairway heaven amp"
  type: OTHER
  salience: 1.414479993400164e-05
  mentions {
    text {
      content: "stairway heaven amp"
      begin_offset: 159757
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp"
  type: PERSON
  salience: 1.4142713553155772e-05
  mentions {
    text {
      content: "amp"
      begin_offset: 162317
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "check light"
  type: OTHER
  salience: 1.4078987987886649e-05
  mentions {
    text {
      content: "check light"
      begin_offset: 155910
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "charing cross road"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0c00p"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Charing_Cross_Road"
  }
  salience: 1.405740749760298e-05
  mentions {
    text {
      content: "charing cross road"
      begin_offset: 134096
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "timeoutlondon londonist standardnews guardianphotos lumierelondon"
  type: PERSON
  salience: 1.3959188436274417e-05
  mentions {
    text {
      content: "timeoutlondon londonist standardnews guardianphotos lumierelondon"
      begin_offset: 101605
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lumiere southbank southbanklondon"
  type: PERSON
  salience: 1.395293656969443e-05
  mentions {
    text {
      content: "lumiere  southbank southbanklondon"
      begin_offset: 106149
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "festival lights"
  type: OTHER
  salience: 1.3892440620111302e-05
  mentions {
    text {
      content: "festival lights"
      begin_offset: 170328
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "taize prayer trudyakelly pa gift"
  type: OTHER
  salience: 1.3874123396817595e-05
  mentions {
    text {
      content: "taize prayer  trudyakelly pa gift"
      begin_offset: 94715
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buses cars"
  type: OTHER
  salience: 1.3874123396817595e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 94794
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "frictions"
  type: OTHER
  salience: 1.3867550478607882e-05
  mentions {
    text {
      content: "frictions"
      begin_offset: 98868
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "buses cars"
  type: CONSUMER_GOOD
  salience: 1.3864358152204659e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 101512
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "buses cars"
  type: CONSUMER_GOOD
  salience: 1.3864358152204659e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 102346
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "gift"
  type: OTHER
  salience: 1.3864358152204659e-05
  mentions {
    text {
      content: "gift"
      begin_offset: 101462
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visitlondon pa gift"
  type: OTHER
  salience: 1.3864358152204659e-05
  mentions {
    text {
      content: "visitlondon pa gift"
      begin_offset: 102281
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "beauty"
  type: OTHER
  salience: 1.3861224942957051e-05
  mentions {
    text {
      content: "beauty"
      begin_offset: 103886
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "changes colours amp designs"
  type: WORK_OF_ART
  salience: 1.3858149031875655e-05
  mentions {
    text {
      content: "changes colours amp designs"
      begin_offset: 105755
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "home"
  type: LOCATION
  salience: 1.385216000926448e-05
  mentions {
    text {
      content: "home"
      begin_offset: 109599
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "stuff"
  type: OTHER
  salience: 1.383537437504856e-05
  mentions {
    text {
      content: "stuff"
      begin_offset: 122578
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "stroll"
  type: OTHER
  salience: 1.3807024515699595e-05
  mentions {
    text {
      content: "stroll"
      begin_offset: 144177
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "stroll"
  type: OTHER
  salience: 1.3807024515699595e-05
  mentions {
    text {
      content: "stroll"
      begin_offset: 143776
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "delays fi"
  type: OTHER
  salience: 1.3799536645819899e-05
  mentions {
    text {
      content: "delays fi"
      begin_offset: 153038
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "day ifo"
  type: OTHER
  salience: 1.3793485777569003e-05
  mentions {
    text {
      content: "day ifo"
      begin_offset: 34256
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "object jacques"
  type: PERSON
  salience: 1.3793485777569003e-05
  mentions {
    text {
      content: "object jacques"
      begin_offset: 34282
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "birdcage"
  type: OTHER
  salience: 1.3793485777569003e-05
  mentions {
    text {
      content: "birdcage"
      begin_offset: 34187
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "work collaboration owners"
  type: PERSON
  salience: 1.378377783112228e-05
  mentions {
    text {
      content: "work collaboration owners"
      begin_offset: 36827
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "vote"
  type: OTHER
  salience: 1.378377783112228e-05
  mentions {
    text {
      content: "vote"
      begin_offset: 35881
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fairies"
  type: OTHER
  salience: 1.3776612831861712e-05
  mentions {
    text {
      content: "fairies"
      begin_offset: 67665
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "yes"
  type: OTHER
  salience: 1.3774601939076092e-05
  mentions {
    text {
      content: "yes"
      begin_offset: 39569
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "buses cars"
  type: OTHER
  salience: 1.3767973541689571e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 70194
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gift"
  type: OTHER
  salience: 1.3767973541689571e-05
  mentions {
    text {
      content: "gift"
      begin_offset: 70144
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "age"
  type: OTHER
  salience: 1.375763076794101e-05
  mentions {
    text {
      content: "age"
      begin_offset: 42344
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "case wi fi"
  type: OTHER
  salience: 1.374963358102832e-05
  mentions {
    text {
      content: "case wi fi"
      begin_offset: 76954
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "churches"
  type: LOCATION
  salience: 1.3745947399002034e-05
  mentions {
    text {
      content: "churches"
      begin_offset: 129448
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "neon sign"
  type: OTHER
  salience: 1.3742223018198274e-05
  mentions {
    text {
      content: "neon sign"
      begin_offset: 46604
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "befaithfultoyourdreams"
  type: PERSON
  salience: 1.3742223018198274e-05
  mentions {
    text {
      content: "befaithfultoyourdreams"
      begin_offset: 46614
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "vids"
  type: OTHER
  salience: 1.3742223018198274e-05
  mentions {
    text {
      content: "vids"
      begin_offset: 46722
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "bump"
  type: OTHER
  salience: 1.3742223018198274e-05
  mentions {
    text {
      content: "bump"
      begin_offset: 45787
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "action"
  type: OTHER
  salience: 1.374104067508597e-05
  mentions {
    text {
      content: "action"
      begin_offset: 135137
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "wish"
  type: OTHER
  salience: 1.3733939340454526e-05
  mentions {
    text {
      content: "wish"
      begin_offset: 140220
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "stuff"
  type: OTHER
  salience: 1.3733107152802404e-05
  mentions {
    text {
      content: "stuff"
      begin_offset: 83379
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "piccadilly victoria"
  type: OTHER
  salience: 1.3723926713282708e-05
  mentions {
    text {
      content: "piccadilly victoria"
      begin_offset: 104158
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "piccadilly victoria"
      begin_offset: 105888
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "frogs"
  type: OTHER
  salience: 1.3721703908231575e-05
  mentions {
    text {
      content: "frogs"
      begin_offset: 88866
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "frogs"
  type: OTHER
  salience: 1.371806956740329e-05
  mentions {
    text {
      content: "frogs"
      begin_offset: 89384
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon"
  type: ORGANIZATION
  salience: 1.3716116882278584e-05
  mentions {
    text {
      content: "lumierelondon2018 visitlondon aichoketrust a streeta lightfestival sadiqkhan mayoroflondon"
      begin_offset: 99197
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "buses cars"
  type: OTHER
  salience: 1.3714512533624656e-05
  mentions {
    text {
      content: "buses cars"
      begin_offset: 90600
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aquarium trudyakelly pa gift"
  type: OTHER
  salience: 1.3714512533624656e-05
  mentions {
    text {
      content: "aquarium  trudyakelly pa gift"
      begin_offset: 90525
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "venues"
  type: LOCATION
  salience: 1.3708966434933245e-05
  mentions {
    text {
      content: "venues"
      begin_offset: 55321
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bunny"
  type: OTHER
  salience: 1.3691789717995562e-05
  mentions {
    text {
      content: "bunny"
      begin_offset: 63813
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "purple haze"
  type: OTHER
  salience: 1.3686436432180926e-05
  mentions {
    text {
      content: "purple haze"
      begin_offset: 64134
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "help"
  type: OTHER
  salience: 1.3686436432180926e-05
  mentions {
    text {
      content: "help"
      begin_offset: 64565
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "photo eleni"
  type: PERSON
  salience: 1.3686436432180926e-05
  mentions {
    text {
      content: "photo eleni"
      begin_offset: 64095
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rg"
  type: PERSON
  salience: 1.3686436432180926e-05
  mentions {
    text {
      content: "rg"
      begin_offset: 64249
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "princes"
  type: OTHER
  salience: 1.3658139323524665e-05
  mentions {
    text {
      content: "princes"
      begin_offset: 130109
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 1.3657987437909469e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 156093
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 1.3655923794431146e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 158872
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kingscrossn1c festival"
  type: EVENT
  salience: 1.3655923794431146e-05
  mentions {
    text {
      content: "kingscrossn1c festival"
      begin_offset: 157592
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 1.3653884707309771e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 160455
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival"
  type: EVENT
  salience: 1.3642151316162199e-05
  mentions {
    text {
      content: "festival"
      begin_offset: 171475
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "light festival"
  type: EVENT
  salience: 1.3638417840411421e-05
  mentions {
    text {
      content: "light festival"
      begin_offset: 176330
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon thelondonguidee"
  type: OTHER
  salience: 1.3612902876047883e-05
  mentions {
    text {
      content: "lumierelondon  thelondonguidee"
      begin_offset: 71393
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "aichoketrust visitlondon mayoroflondon"
  type: OTHER
  salience: 1.3568267604568973e-05
  mentions {
    text {
      content: "aichoketrust visitlondon mayoroflondon"
      begin_offset: 89608
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "aichoketrust biggsytravels"
  type: PERSON
  salience: 1.3531231161323376e-05
  mentions {
    text {
      content: "aichoketrust biggsytravels"
      begin_offset: 133445
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "job mayoroflondon"
  type: OTHER
  salience: 1.3414766726782545e-05
  mentions {
    text {
      content: "job mayoroflondon"
      begin_offset: 85488
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "darraghdoyle"
  type: OTHER
  salience: 1.3402010154095478e-05
  mentions {
    text {
      content: "darraghdoyle"
      begin_offset: 137346
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "canary wharf winter lights"
  type: OTHER
  salience: 1.3388444131123833e-05
  mentions {
    text {
      content: "canary wharf winter lights"
      begin_offset: 169714
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "aichoketrust wrap"
  type: OTHER
  salience: 1.3381246390054002e-05
  mentions {
    text {
      content: "aichoketrust wrap"
      begin_offset: 94238
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "haya luz segunda edici\303\263n del festival de"
  type: PERSON
  salience: 1.33344601636054e-05
  mentions {
    text {
      content: "haya luz segunda edici\303\263n del festival de"
      begin_offset: 110568
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "haya luz segunda edici\303\263n del festival de"
      begin_offset: 174664
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "nofilter ihealondon wabbey"
  type: ORGANIZATION
  salience: 1.3299726560944691e-05
  mentions {
    text {
      content: "nofilter ihealondon wabbey"
      begin_offset: 119679
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "foodie"
  type: OTHER
  salience: 1.3244452929939143e-05
  mentions {
    text {
      content: "foodie"
      begin_offset: 124958
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dinner"
  type: OTHER
  salience: 1.3244452929939143e-05
  mentions {
    text {
      content: "dinner"
      begin_offset: 124683
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "cross road directions pall mall"
  type: LOCATION
  salience: 1.3244452929939143e-05
  mentions {
    text {
      content: "cross road directions pall mall"
      begin_offset: 123791
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "experience aether"
  type: PERSON
  salience: 1.3241961823950987e-05
  mentions {
    text {
      content: "experience aether"
      begin_offset: 126590
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "experience aether"
  type: PERSON
  salience: 1.3237093298812397e-05
  mentions {
    text {
      content: "experience aether"
      begin_offset: 129730
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "delight"
  type: OTHER
  salience: 1.3232865057943854e-05
  mentions {
    text {
      content: "delight"
      begin_offset: 104997
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "hare"
  type: OTHER
  salience: 1.3232368473836686e-05
  mentions {
    text {
      content: "hare"
      begin_offset: 134129
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "droplets"
  type: OTHER
  salience: 1.3232368473836686e-05
  mentions {
    text {
      content: "droplets"
      begin_offset: 134935
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "photography lantern"
  type: OTHER
  salience: 1.3232368473836686e-05
  mentions {
    text {
      content: "photography lantern"
      begin_offset: 133767
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "humans"
  type: PERSON
  salience: 1.3229978321760427e-05
  mentions {
    text {
      content: "humans"
      begin_offset: 130346
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "check night market"
  type: OTHER
  salience: 1.3221128028817475e-05
  mentions {
    text {
      content: "check night market"
      begin_offset: 144535
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "restaurants"
  type: LOCATION
  salience: 1.3221128028817475e-05
  mentions {
    text {
      content: "restaurants"
      begin_offset: 144593
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "check night market"
  type: OTHER
  salience: 1.3221128028817475e-05
  mentions {
    text {
      content: "check night market"
      begin_offset: 143344
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "restaurants"
  type: LOCATION
  salience: 1.3221128028817475e-05
  mentions {
    text {
      content: "restaurants"
      begin_offset: 143402
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "droplets"
  type: OTHER
  salience: 1.321897070738487e-05
  mentions {
    text {
      content: "droplets"
      begin_offset: 147459
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tag"
  type: OTHER
  salience: 1.321897070738487e-05
  mentions {
    text {
      content: "tag"
      begin_offset: 145661
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chrisplant one"
  type: PERSON
  salience: 1.321684248978272e-05
  mentions {
    text {
      content: "chrisplant one"
      begin_offset: 147854
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "photography lantern"
  type: OTHER
  salience: 1.3214741557021625e-05
  mentions {
    text {
      content: "photography lantern"
      begin_offset: 149725
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.20000000298023224
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 1.3212668818596285e-05
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 153539
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "winterlights"
  type: EVENT
  salience: 1.321258969255723e-05
  mentions {
    text {
      content: "winterlights"
      begin_offset: 93390
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hat"
  type: OTHER
  salience: 1.3212325939093716e-05
  mentions {
    text {
      content: "hat"
      begin_offset: 92391
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "game pong"
  type: OTHER
  salience: 1.3212325939093716e-05
  mentions {
    text {
      content: "game pong"
      begin_offset: 91970
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "snapshots"
  type: OTHER
  salience: 1.3202658919908572e-05
  mentions {
    text {
      content: "snapshots"
      begin_offset: 97475
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "snapshots"
  type: OTHER
  salience: 1.3199561180954333e-05
  mentions {
    text {
      content: "snapshots"
      begin_offset: 98676
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "videography musicvideo zacdenman"
  type: PERSON
  salience: 1.3193540326028597e-05
  mentions {
    text {
      content: "videography musicvideo zacdenman"
      begin_offset: 103590
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "mind"
  type: OTHER
  salience: 1.3190611753088888e-05
  mentions {
    text {
      content: "mind"
      begin_offset: 105110
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "aaron"
  type: PERSON
  salience: 1.3187736840336584e-05
  mentions {
    text {
      content: "aaron"
      begin_offset: 106707
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "conditions"
  type: OTHER
  salience: 1.3184911949792877e-05
  mentions {
    text {
      content: "conditions"
      begin_offset: 109444
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "hat"
  type: OTHER
  salience: 1.3179406778363045e-05
  mentions {
    text {
      content: "hat"
      begin_offset: 113400
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "violin centrepiece"
  type: OTHER
  salience: 1.3179406778363045e-05
  mentions {
    text {
      content: "violin centrepiece"
      begin_offset: 113442
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cosmoscope sculpture"
  type: OTHER
  salience: 1.3179406778363045e-05
  mentions {
    text {
      content: "cosmoscope sculpture"
      begin_offset: 114623
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aaron"
  type: PERSON
  salience: 1.3176723768992815e-05
  mentions {
    text {
      content: "aaron"
      begin_offset: 115956
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aaron"
  type: PERSON
  salience: 1.3176723768992815e-05
  mentions {
    text {
      content: "aaron"
      begin_offset: 115800
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aaron"
  type: PERSON
  salience: 1.3176723768992815e-05
  mentions {
    text {
      content: "aaron"
      begin_offset: 116347
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aaron"
  type: PERSON
  salience: 1.3176723768992815e-05
  mentions {
    text {
      content: "aaron"
      begin_offset: 116477
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "hatmanoflondon"
  type: PERSON
  salience: 1.3176723768992815e-05
  mentions {
    text {
      content: "hatmanoflondon"
      begin_offset: 116940
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "videography musicvideo zacdenman"
  type: OTHER
  salience: 1.317148871748941e-05
  mentions {
    text {
      content: "videography musicvideo zacdenman"
      begin_offset: 119246
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "atmosphere"
  type: OTHER
  salience: 1.317148871748941e-05
  mentions {
    text {
      content: "atmosphere"
      begin_offset: 119352
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "atmosphere"
  type: OTHER
  salience: 1.317148871748941e-05
  mentions {
    text {
      content: "atmosphere"
      begin_offset: 119498
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "faves"
  type: OTHER
  salience: 1.316893394687213e-05
  mentions {
    text {
      content: "faves"
      begin_offset: 122357
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "must"
  type: OTHER
  salience: 1.3114281500747893e-05
  mentions {
    text {
      content: "must"
      begin_offset: 67655
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "photography engcathedrals"
  type: PERSON
  salience: 1.3114281500747893e-05
  mentions {
    text {
      content: "photography  engcathedrals"
      begin_offset: 67526
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "training jobs"
  type: OTHER
  salience: 1.3109460269333795e-05
  mentions {
    text {
      content: "training jobs"
      begin_offset: 68166
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "tfl update"
  type: OTHER
  salience: 1.3109460269333795e-05
  mentions {
    text {
      content: "tfl update"
      begin_offset: 68262
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "bond"
  type: OTHER
  salience: 1.3109460269333795e-05
  mentions {
    text {
      content: "bond"
      begin_offset: 68344
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "photography fave"
  type: OTHER
  salience: 1.3083243175060488e-05
  mentions {
    text {
      content: "photography fave"
      begin_offset: 79439
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "offer"
  type: OTHER
  salience: 1.3075382412353065e-05
  mentions {
    text {
      content: "offer"
      begin_offset: 82418
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "offer"
  type: OTHER
  salience: 1.3075382412353065e-05
  mentions {
    text {
      content: "offer"
      begin_offset: 82294
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kx10 omg newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium openyoureyesldn show"
  type: PERSON
  salience: 1.3068046428088564e-05
  mentions {
    text {
      content: "kx10 omg   newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  openyoureyesldn show"
      begin_offset: 91561
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bond"
  type: OTHER
  salience: 1.3067892723483965e-05
  mentions {
    text {
      content: "bond"
      begin_offset: 85096
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "bond"
  type: OTHER
  salience: 1.3064275663055014e-05
  mentions {
    text {
      content: "bond"
      begin_offset: 86325
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bond"
  type: OTHER
  salience: 1.3064275663055014e-05
  mentions {
    text {
      content: "bond"
      begin_offset: 87488
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "hat"
  type: OTHER
  salience: 1.3064275663055014e-05
  mentions {
    text {
      content: "hat"
      begin_offset: 86031
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "shop"
  type: LOCATION
  salience: 1.3057279829808977e-05
  mentions {
    text {
      content: "shop"
      begin_offset: 89696
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1 levanterman"
  type: PERSON
  salience: 1.3053811926511116e-05
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1  levanterman"
      begin_offset: 48078
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
      begin_offset: 50800
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "aichoketrust thewpa regentst_assoc lumierelondon grosvenor_gbi thecrownestate oxfordstreetw1 regentstreetw1"
      begin_offset: 58081
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.30000001192092896
  }
}
entities {
  name: "citylife travelblogger"
  type: PERSON
  salience: 1.3035388292337302e-05
  mentions {
    text {
      content: "citylife travelblogger"
      begin_offset: 133827
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  mentions {
    text {
      content: "citylife travelblogger"
      begin_offset: 149785
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere london rhianbwatts"
  type: PERSON
  salience: 1.2970536772627383e-05
  mentions {
    text {
      content: "lumiere london   rhianbwatts"
      begin_offset: 153131
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 1.2948107723786961e-05
  mentions {
    text {
      content: "event"
      begin_offset: 163456
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wrap"
  type: OTHER
  salience: 1.2948082257935312e-05
  mentions {
    text {
      content: "wrap"
      begin_offset: 73401
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 1.2944943591719493e-05
  mentions {
    text {
      content: "people"
      begin_offset: 159697
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 1.2944398804393131e-05
  mentions {
    text {
      content: "event"
      begin_offset: 168931
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 1.2940233318659011e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 74467
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "events"
  type: EVENT
  salience: 1.2937233805132564e-05
  mentions {
    text {
      content: "events"
      begin_offset: 175626
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta"
  type: LOCATION
  salience: 1.2914440958411433e-05
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta"
      begin_offset: 99727
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "westend"
  type: LOCATION
  salience: 1.2897930901090149e-05
  mentions {
    text {
      content: "westend"
      begin_offset: 163061
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lovelyweather lightexhibition london2018"
  type: PERSON
  salience: 1.2894722203782294e-05
  mentions {
    text {
      content: "lovelyweather  lightexhibition london2018"
      begin_offset: 114644
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife travelbloggers lovelondon"
  type: ORGANIZATION
  salience: 1.2892097402072977e-05
  mentions {
    text {
      content: "lumierelondon visitlondon thelondoneye kingscrossn1c wabbey jayonlife  travelbloggers lovelondon"
      begin_offset: 115625
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumiere aworks"
  type: OTHER
  salience: 1.2826286365452688e-05
  mentions {
    text {
      content: "lumiere aworks"
      begin_offset: 69006
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "friend toddler"
  type: PERSON
  salience: 1.2796402188541833e-05
  mentions {
    text {
      content: "friend toddler"
      begin_offset: 67599
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "emmaallendesign greymatters timeoutlondon visitlondon"
  type: OTHER
  salience: 1.2748134395224042e-05
  mentions {
    text {
      content: "emmaallendesign greymatters timeoutlondon  visitlondon"
      begin_offset: 150218
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 1.2721081475319806e-05
  mentions {
    text {
      content: "kingdom"
      begin_offset: 162158
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "king"
  type: PERSON
  salience: 1.2717394383798819e-05
  mentions {
    text {
      content: "king"
      begin_offset: 167308
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kingdom"
  type: LOCATION
  salience: 1.2712024727079552e-05
  mentions {
    text {
      content: "kingdom"
      begin_offset: 172281
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "canal kings"
  type: OTHER
  salience: 1.271027485927334e-05
  mentions {
    text {
      content: "canal kings"
      begin_offset: 174114
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "canal kings"
  type: OTHER
  salience: 1.271027485927334e-05
  mentions {
    text {
      content: "canal kings"
      begin_offset: 173756
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "umbrella project performance"
  type: OTHER
  salience: 1.2692421478277538e-05
  mentions {
    text {
      content: "umbrella project performance"
      begin_offset: 122907
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "beauty"
  type: OTHER
  salience: 1.2689997674897313e-05
  mentions {
    text {
      content: "beauty"
      begin_offset: 124165
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "home"
  type: LOCATION
  salience: 1.2687612070294563e-05
  mentions {
    text {
      content: "home"
      begin_offset: 126168
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "festival hurry"
  type: OTHER
  salience: 1.2687612070294563e-05
  mentions {
    text {
      content: "festival hurry"
      begin_offset: 125539
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 1.2687120943155605e-05
  mentions {
    text {
      content: "buses"
      begin_offset: 136454
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "gallery"
  type: LOCATION
  salience: 1.2671867807512172e-05
  mentions {
    text {
      content: "gallery"
      begin_offset: 140251
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "fairies"
  type: OTHER
  salience: 1.2670631804212462e-05
  mentions {
    text {
      content: "fairies"
      begin_offset: 140669
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "fairies"
  type: OTHER
  salience: 1.2670631804212462e-05
  mentions {
    text {
      content: "fairies"
      begin_offset: 140485
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "festival hurry"
  type: OTHER
  salience: 1.2661531400226522e-05
  mentions {
    text {
      content: "festival hurry"
      begin_offset: 150052
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "biggsytravels pa beauty"
  type: OTHER
  salience: 1.2661531400226522e-05
  mentions {
    text {
      content: "biggsytravels pa beauty"
      begin_offset: 150838
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "dials"
  type: OTHER
  salience: 1.2657583283726126e-05
  mentions {
    text {
      content: "dials"
      begin_offset: 154590
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon fuzzworks_uk"
  type: ORGANIZATION
  salience: 1.264807451661909e-05
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon  fuzzworks_uk"
      begin_offset: 48306
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon lumierelondon2018 visitlondon fuzzworks_uk"
  type: WORK_OF_ART
  salience: 1.2624081136891618e-05
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  visitlondon  fuzzworks_uk"
      begin_offset: 56743
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "posts tix"
  type: OTHER
  salience: 1.24539128592005e-05
  mentions {
    text {
      content: "posts tix"
      begin_offset: 117429
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "rainbow tunnel"
  type: LOCATION
  salience: 1.2450906069716439e-05
  mentions {
    text {
      content: "rainbow tunnel"
      begin_offset: 98456
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "anywhere"
  type: LOCATION
  salience: 1.2439752936188597e-05
  mentions {
    text {
      content: "anywhere"
      begin_offset: 108175
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ping pong side"
  type: OTHER
  salience: 1.2437088116712403e-05
  mentions {
    text {
      content: "ping pong side"
      begin_offset: 110464
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "coat turn telly"
  type: OTHER
  salience: 1.2435309145075735e-05
  mentions {
    text {
      content: "coat turn telly"
      begin_offset: 133508
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "sea level"
  type: OTHER
  salience: 1.2434469681465998e-05
  mentions {
    text {
      content: "sea level"
      begin_offset: 111601
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "guardian angels"
  type: ORGANIZATION
  salience: 1.242442613147432e-05
  mentions {
    text {
      content: "guardian angels"
      begin_offset: 120352
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "guardian angels"
  type: PERSON
  salience: 1.242442613147432e-05
  mentions {
    text {
      content: "guardian angels"
      begin_offset: 120307
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "guardian angels"
  type: ORGANIZATION
  salience: 1.242442613147432e-05
  mentions {
    text {
      content: "guardian angels"
      begin_offset: 120397
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonlife sessions"
  type: EVENT
  salience: 1.242442613147432e-05
  mentions {
    text {
      content: "londonlife sessions"
      begin_offset: 119155
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "fish telephone box butterfly"
  type: CONSUMER_GOOD
  salience: 1.2422016880009323e-05
  mentions {
    text {
      content: "fish telephone box  butterfly"
      begin_offset: 122590
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "happylondon"
  type: PERSON
  salience: 1.2422016880009323e-05
  mentions {
    text {
      content: "happylondon"
      begin_offset: 121278
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lights darkness"
  type: OTHER
  salience: 1.2374315701890737e-05
  mentions {
    text {
      content: "lights darkness"
      begin_offset: 129763
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "visitlondon pleasure"
  type: OTHER
  salience: 1.2370463991828728e-05
  mentions {
    text {
      content: "visitlondon pleasure"
      begin_offset: 66233
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp regent street btwn moimer"
  type: LOCATION
  salience: 1.2365915608825162e-05
  mentions {
    text {
      content: "amp regent street btwn moimer"
      begin_offset: 68372
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "londonlife sessions"
  type: EVENT
  salience: 1.2341185538389254e-05
  mentions {
    text {
      content: "londonlife sessions"
      begin_offset: 79064
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "amp regent street btwn moimer"
  type: LOCATION
  salience: 1.2326705473242328e-05
  mentions {
    text {
      content: "amp regent street btwn moimer"
      begin_offset: 85124
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "amp regent street btwn moimer"
  type: LOCATION
  salience: 1.2323293958615977e-05
  mentions {
    text {
      content: "amp regent street btwn moimer"
      begin_offset: 86353
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "amp regent street btwn moimer"
  type: LOCATION
  salience: 1.2323293958615977e-05
  mentions {
    text {
      content: "amp regent street btwn moimer"
      begin_offset: 87516
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "nickede"
  type: OTHER
  salience: 1.2293007785046939e-05
  mentions {
    text {
      content: "nickede"
      begin_offset: 128340
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "locations"
  type: LOCATION
  salience: 1.2223721569171175e-05
  mentions {
    text {
      content: "locations"
      begin_offset: 76973
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "twitter"
  type: OTHER
  salience: 1.2182261343696155e-05
  mentions {
    text {
      content: "twitter"
      begin_offset: 75721
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "twitter"
      begin_offset: 128032
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.0
    score: 0.20000000298023224
  }
}
entities {
  name: "goods"
  type: CONSUMER_GOOD
  salience: 1.2139685168222059e-05
  mentions {
    text {
      content: "goods"
      begin_offset: 104842
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "justin_venn lumierelondon2018 lumierelondon biuk"
  type: PERSON
  salience: 1.2138534657424316e-05
  mentions {
    text {
      content: "justin_venn  lumierelondon2018 lumierelondon  biuk"
      begin_offset: 43463
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "popcornmedia_uk wrap"
  type: PERSON
  salience: 1.2119670827814844e-05
  mentions {
    text {
      content: "popcornmedia_uk wrap"
      begin_offset: 97586
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wabbey westminsterabbey biuk"
  type: PERSON
  salience: 1.2112493095628452e-05
  mentions {
    text {
      content: "wabbey westminsterabbey  biuk"
      begin_offset: 50641
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "look updates"
  type: OTHER
  salience: 1.2076457096554805e-05
  mentions {
    text {
      content: "look updates"
      begin_offset: 126485
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "suzystories"
  type: LOCATION
  salience: 1.2074220649083145e-05
  mentions {
    text {
      content: "suzystories"
      begin_offset: 128855
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "update"
  type: OTHER
  salience: 1.2067707757523749e-05
  mentions {
    text {
      content: "update"
      begin_offset: 133923
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "must"
  type: OTHER
  salience: 1.2061471352353692e-05
  mentions {
    text {
      content: "must"
      begin_offset: 141102
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "must"
  type: OTHER
  salience: 1.2061471352353692e-05
  mentions {
    text {
      content: "must"
      begin_offset: 140475
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "must"
  type: OTHER
  salience: 1.2061471352353692e-05
  mentions {
    text {
      content: "must"
      begin_offset: 140659
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "must"
  type: OTHER
  salience: 1.2059450455126353e-05
  mentions {
    text {
      content: "must"
      begin_offset: 142277
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "trees"
  type: OTHER
  salience: 1.2047874406562187e-05
  mentions {
    text {
      content: "trees"
      begin_offset: 153960
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium cheriecity"
  type: PERSON
  salience: 1.1961006748606451e-05
  mentions {
    text {
      content: "\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  cheriecity"
      begin_offset: 71215
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 90277
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 1.1926455044886097e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 133347
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "flickr"
  type: OTHER
  salience: 1.1925330909434706e-05
  mentions {
    text {
      content: "flickr"
      begin_offset: 80169
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 1.1915179129573517e-05
  mentions {
    text {
      content: "works"
      begin_offset: 163039
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 1.1908457054232713e-05
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 150727
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "tube"
  type: OTHER
  salience: 1.1844349501188844e-05
  mentions {
    text {
      content: "tube"
      begin_offset: 91080
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "case"
  type: OTHER
  salience: 1.1839021681225859e-05
  mentions {
    text {
      content: "case"
      begin_offset: 149355
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "fitzrovia dontmissout egondesign"
  type: PERSON
  salience: 1.1807830560428556e-05
  mentions {
    text {
      content: "fitzrovia  dontmissout  egondesign"
      begin_offset: 109291
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumiere aworks"
  type: OTHER
  salience: 1.1793182238761801e-05
  mentions {
    text {
      content: "lumiere aworks"
      begin_offset: 149124
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "friend toddler"
  type: PERSON
  salience: 1.1769109732995275e-05
  mentions {
    text {
      content: "friend toddler"
      begin_offset: 140603
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "friend toddler"
  type: PERSON
  salience: 1.1767137948481832e-05
  mentions {
    text {
      content: "friend toddler"
      begin_offset: 142221
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "videoproduction zacvideo studiosession"
  type: ORGANIZATION
  salience: 1.1754622391890734e-05
  mentions {
    text {
      content: "videoproduction zacvideo studiosession"
      begin_offset: 79092
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "videoproduction zacvideo studiosession"
      begin_offset: 103527
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "videoproduction zacvideo studiosession"
      begin_offset: 119183
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.10000000149011612
  }
}
entities {
  name: "projection voyages"
  type: OTHER
  salience: 1.1677908332785591e-05
  mentions {
    text {
      content: "projection voyages"
      begin_offset: 82165
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aist imakefings leakestreet"
  type: PERSON
  salience: 1.1676344911393244e-05
  mentions {
    text {
      content: "aist imakefings leakestreet"
      begin_offset: 122277
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "aist imakefings leakestreet"
      begin_offset: 139874
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.10000000149011612
  }
}
entities {
  name: "decision"
  type: OTHER
  salience: 1.1603376151470002e-05
  mentions {
    text {
      content: "decision"
      begin_offset: 92430
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon marshalljulius london"
  type: ORGANIZATION
  salience: 1.1597448974498548e-05
  mentions {
    text {
      content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon  marshalljulius london"
      begin_offset: 161747
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "southbank london"
  type: LOCATION
  salience: 1.1595758223847952e-05
  mentions {
    text {
      content: "southbank london"
      begin_offset: 165332
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "daan roosegaarde london"
  type: LOCATION
  salience: 1.1594087482080795e-05
  mentions {
    text {
      content: "daan roosegaarde  london"
      begin_offset: 167248
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "flickr iesphotos cityatnight london"
  type: LOCATION
  salience: 1.1592436749197077e-05
  mentions {
    text {
      content: "flickr iesphotos cityatnight  london"
      begin_offset: 168399
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wasthatadream"
  type: OTHER
  salience: 1.1592165719775949e-05
  mentions {
    text {
      content: "wasthatadream"
      begin_offset: 99067
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "leakestreetarches development"
  type: OTHER
  salience: 1.1592165719775949e-05
  mentions {
    text {
      content: "leakestreetarches development"
      begin_offset: 98489
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colcannon"
  type: OTHER
  salience: 1.1592165719775949e-05
  mentions {
    text {
      content: "colcannon"
      begin_offset: 100084
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "lumierelondon carnabylondon london"
  type: LOCATION
  salience: 1.1587597327888943e-05
  mentions {
    text {
      content: "lumierelondon carnabylondon london"
      begin_offset: 174938
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: -0.4000000059604645
  }
}
entities {
  name: "cheese"
  type: OTHER
  salience: 1.1586877917579841e-05
  mentions {
    text {
      content: "cheese"
      begin_offset: 102749
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "xtophe_williams"
  type: OTHER
  salience: 1.1581781109271105e-05
  mentions {
    text {
      content: "xtophe_williams"
      begin_offset: 107340
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature"
  type: OTHER
  salience: 1.157578662969172e-05
  mentions {
    text {
      content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature"
      begin_offset: 36541
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "xtophe_williams"
  type: ORGANIZATION
  salience: 1.1574466043384746e-05
  mentions {
    text {
      content: "xtophe_williams"
      begin_offset: 114003
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "leakestreetarches development"
  type: OTHER
  salience: 1.1574466043384746e-05
  mentions {
    text {
      content: "leakestreetarches development"
      begin_offset: 114533
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "clarateddy"
  type: PERSON
  salience: 1.1572109542612452e-05
  mentions {
    text {
      content: "clarateddy"
      begin_offset: 115783
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "couyard clarateddy"
  type: PERSON
  salience: 1.1572109542612452e-05
  mentions {
    text {
      content: "couyard  clarateddy"
      begin_offset: 116321
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "xtophe_williams"
  type: OTHER
  salience: 1.1572109542612452e-05
  mentions {
    text {
      content: "xtophe_williams"
      begin_offset: 116061
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "gasholders"
  type: PERSON
  salience: 1.1569792150112335e-05
  mentions {
    text {
      content: "gasholders"
      begin_offset: 118910
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "winterlights yourcanarywharf"
  type: PERSON
  salience: 1.1568079571588896e-05
  mentions {
    text {
      content: "winterlights yourcanarywharf"
      begin_offset: 38209
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "person"
  type: PERSON
  salience: 1.156751204689499e-05
  mentions {
    text {
      content: "person"
      begin_offset: 119563
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "person"
  type: PERSON
  salience: 1.156751204689499e-05
  mentions {
    text {
      content: "person"
      begin_offset: 119417
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "\343\201\256\350\213\261\345\233\275\343\201\212\343\202\210\343\201\263\345\233\275\351\232\233\347\232\204\343\201\252\343\202\242\343\203\274\343\203\206\343\202\243\343\202\271\343\203\210\343\201\237\343\201\241\343\201\253\343\202\210\343\201\243\343\201\246 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\261\241\345\276\264\347\232\204\343\201\252\345\273\272\347\257\211\343\201\250\351\200\232\343\202\212\343\202\222\345\206\215\346\203\263\345\203\217\343\201\227 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\241\227\343\202\222 \345\244\234\351\226\223\347\276\216\350\241\223\351\244\250\343\201\253\345\244\211\343\201\210\343\201\276\343\201\231 \350\213\261\345\233\275\343\201\256\343\203\233\343\203\206\343\203\253 newsdigest \350\213\261\345\233\275 \346\230\250\346\227\245\343\201\213\343\202\211\345\247\213\343\201\276\343\201\243\343\201\237\343\203\252\343\203\245\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263 \345\213\225\347\224\273\343\201\257\343\202\255\343\203\263\343\202\260\343\202\271 \343\202\257\343\203\255\343\202\271 \343\202\260\343\203\251\343\203\212\343\203\252\343\203\274\343\202\271\343\202\257\343\202\250\343\202\242\343\201\247\345\261\225\347\244\272\343\201\225\343\202\214\343\201\246\343\201\204\343\202\213 \346\264\252\346\260\264\343\202\222\343\203\220\343\203\274\343\203\201\343\203\243\343\203\253\343\201\247\350\241\250\347\217\276\343\201\227\343\201\246\343\201\204\343\202\213\345\205\211\343\201\250\351\234\247\343\201\256\343\202\242\343\203\274\343\203\210 waterlicht"
  type: PERSON
  salience: 1.1547112080734223e-05
  mentions {
    text {
      content: "\343\201\256\350\213\261\345\233\275\343\201\212\343\202\210\343\201\263\345\233\275\351\232\233\347\232\204\343\201\252\343\202\242\343\203\274\343\203\206\343\202\243\343\202\271\343\203\210\343\201\237\343\201\241\343\201\253\343\202\210\343\201\243\343\201\246 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\261\241\345\276\264\347\232\204\343\201\252\345\273\272\347\257\211\343\201\250\351\200\232\343\202\212\343\202\222\345\206\215\346\203\263\345\203\217\343\201\227 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\241\227\343\202\222 \345\244\234\351\226\223\347\276\216\350\241\223\351\244\250\343\201\253\345\244\211\343\201\210\343\201\276\343\201\231  \350\213\261\345\233\275\343\201\256\343\203\233\343\203\206\343\203\253  newsdigest \350\213\261\345\233\275 \346\230\250\346\227\245\343\201\213\343\202\211\345\247\213\343\201\276\343\201\243\343\201\237\343\203\252\343\203\245\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263 \345\213\225\347\224\273\343\201\257\343\202\255\343\203\263\343\202\260\343\202\271 \343\202\257\343\203\255\343\202\271 \343\202\260\343\203\251\343\203\212\343\203\252\343\203\274\343\202\271\343\202\257\343\202\250\343\202\242\343\201\247\345\261\225\347\244\272\343\201\225\343\202\214\343\201\246\343\201\204\343\202\213 \346\264\252\346\260\264\343\202\222\343\203\220\343\203\274\343\203\201\343\203\243\343\203\253\343\201\247\350\241\250\347\217\276\343\201\227\343\201\246\343\201\204\343\202\213\345\205\211\343\201\250\351\234\247\343\201\256\343\202\242\343\203\274\343\203\210 waterlicht"
      begin_offset: 76648
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "redbridgelive umbrellaproject thisisredbridge mylocalculture"
  type: OTHER
  salience: 1.1540888408489991e-05
  mentions {
    text {
      content: "redbridgelive umbrellaproject thisisredbridge mylocalculture"
      begin_offset: 46041
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.4000000059604645
  }
}
entities {
  name: "anyone"
  type: PERSON
  salience: 1.1539444130903576e-05
  mentions {
    text {
      content: "anyone"
      begin_offset: 37111
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "river quality"
  type: OTHER
  salience: 1.1517270650074352e-05
  mentions {
    text {
      content: "river quality"
      begin_offset: 66576
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "locations"
  type: LOCATION
  salience: 1.1513036042742897e-05
  mentions {
    text {
      content: "locations"
      begin_offset: 69444
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "amsharif"
  type: PERSON
  salience: 1.1501050721562933e-05
  mentions {
    text {
      content: "amsharif"
      begin_offset: 74931
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "amp witchcraft"
  type: OTHER
  salience: 1.1486517905723304e-05
  mentions {
    text {
      content: "amp witchcraft"
      begin_offset: 79997
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colours sphere"
  type: OTHER
  salience: 1.1479781278467271e-05
  mentions {
    text {
      content: "colours sphere"
      begin_offset: 83141
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "excursion"
  type: EVENT
  salience: 1.1470247955003288e-05
  mentions {
    text {
      content: "excursion"
      begin_offset: 88519
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "movement"
  type: OTHER
  salience: 1.1470247955003288e-05
  mentions {
    text {
      content: "movement"
      begin_offset: 88062
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "attendance"
  type: OTHER
  salience: 1.142500332207419e-05
  mentions {
    text {
      content: "attendance"
      begin_offset: 98229
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kulbinderm"
  type: OTHER
  salience: 1.1416284905862994e-05
  mentions {
    text {
      content: "kulbinderm"
      begin_offset: 125465
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 1.1406253179302439e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 165783
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "abbey"
  type: LOCATION
  salience: 1.1398316019040067e-05
  mentions {
    text {
      content: "abbey"
      begin_offset: 176045
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "volumes"
  type: OTHER
  salience: 1.139150026574498e-05
  mentions {
    text {
      content: "volumes"
      begin_offset: 126445
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "haywardgallery"
  type: PERSON
  salience: 1.1385264770069625e-05
  mentions {
    text {
      content: "haywardgallery"
      begin_offset: 132420
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "thamespulse seacontainers mondrianhotel jasonbruges"
  type: PERSON
  salience: 1.1382820957805961e-05
  mentions {
    text {
      content: "thamespulse seacontainers mondrianhotel jasonbruges"
      begin_offset: 66428
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "thamespulse seacontainers mondrianhotel jasonbruges"
      begin_offset: 67113
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "thamespulse seacontainers mondrianhotel"
      begin_offset: 123239
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "tflbusales"
  type: OTHER
  salience: 1.1381258445908315e-05
  mentions {
    text {
      content: "tflbusales"
      begin_offset: 136342
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "tweeps"
  type: PERSON
  salience: 1.1379298484825995e-05
  mentions {
    text {
      content: "tweeps"
      begin_offset: 138090
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "bandwagon"
  type: OTHER
  salience: 1.1377364899090026e-05
  mentions {
    text {
      content: "bandwagon"
      begin_offset: 139596
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "tweeps"
  type: PERSON
  salience: 1.1371722393960226e-05
  mentions {
    text {
      content: "tweeps"
      begin_offset: 146421
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "facade"
  type: OTHER
  salience: 1.1369891581125557e-05
  mentions {
    text {
      content: "facade"
      begin_offset: 147766
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "crafts goods"
  type: OTHER
  salience: 1.1368084415153135e-05
  mentions {
    text {
      content: "crafts goods"
      begin_offset: 149907
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "tweeps"
  type: PERSON
  salience: 1.1366300896042958e-05
  mentions {
    text {
      content: "tweeps"
      begin_offset: 151688
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "tweeps"
  type: PERSON
  salience: 1.1366300896042958e-05
  mentions {
    text {
      content: "tweeps"
      begin_offset: 152835
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "butterflies"
  type: OTHER
  salience: 1.1364539204805624e-05
  mentions {
    text {
      content: "butterflies"
      begin_offset: 153940
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust visitlondon timeoutlondon lumierelondon2018 lumiere lumierelondon lightfestival lighta kingscrossn1c"
  type: PERSON
  salience: 1.1349657143000513e-05
  mentions {
    text {
      content: "aichoketrust visitlondon timeoutlondon  lumierelondon2018 lumiere lumierelondon lightfestival lighta  kingscrossn1c"
      begin_offset: 147519
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  mentions {
    text {
      content: "lumierelondon"
      begin_offset: 175209
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "description"
  type: OTHER
  salience: 1.1312288734188769e-05
  mentions {
    text {
      content: "description"
      begin_offset: 67689
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "london architecture"
  type: OTHER
  salience: 1.1251216164964717e-05
  mentions {
    text {
      content: "london architecture"
      begin_offset: 132354
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "event"
  type: EVENT
  salience: 1.1164176612510346e-05
  mentions {
    text {
      content: "event"
      begin_offset: 169548
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 1.2000000476837158
    score: 0.10000000149011612
  }
}
entities {
  name: "ppl"
  type: ORGANIZATION
  salience: 1.1136708963022102e-05
  mentions {
    text {
      content: "ppl"
      begin_offset: 64661
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mrsmmain chance"
  type: OTHER
  salience: 1.1135518434457481e-05
  mentions {
    text {
      content: "mrsmmain chance"
      begin_offset: 168457
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance"
  type: PERSON
  salience: 1.0919226951955352e-05
  mentions {
    text {
      content: "lovelondon beinspired oversizedobjects discoverlondon lumiere uniquebynature clouddancefest rambedance"
      begin_offset: 36649
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "redbridgelive umbrellaproject thisisredbridge mylocalculture engcathedrals"
  type: PERSON
  salience: 1.0905065209954046e-05
  mentions {
    text {
      content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  engcathedrals"
      begin_offset: 41039
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon levanterman"
  type: PERSON
  salience: 1.0880601621465757e-05
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon  levanterman"
      begin_offset: 48219
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aichoketrust asturn"
  type: OTHER
  salience: 1.0878886314458214e-05
  mentions {
    text {
      content: "aichoketrust  asturn"
      begin_offset: 57810
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "squares"
  type: OTHER
  salience: 1.0876761734834872e-05
  mentions {
    text {
      content: "squares"
      begin_offset: 157509
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "instagram sneequaye"
  type: OTHER
  salience: 1.0875131920329295e-05
  mentions {
    text {
      content: "instagram sneequaye"
      begin_offset: 50240
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "cycling"
  type: EVENT
  salience: 1.0835960893018637e-05
  mentions {
    text {
      content: "cycling"
      begin_offset: 100838
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "cycling"
  type: EVENT
  salience: 1.0835960893018637e-05
  mentions {
    text {
      content: "cycling"
      begin_offset: 101875
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon carnabylondon"
  type: PERSON
  salience: 1.0789546649903059e-05
  mentions {
    text {
      content: "lumierelondon  carnabylondon"
      begin_offset: 154799
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "happylondon"
  type: OTHER
  salience: 1.0611071047605947e-05
  mentions {
    text {
      content: "happylondon"
      begin_offset: 97995
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colcannon"
  type: OTHER
  salience: 1.0607819604047108e-05
  mentions {
    text {
      content: "colcannon"
      begin_offset: 124716
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "props"
  type: OTHER
  salience: 1.0607819604047108e-05
  mentions {
    text {
      content: "props"
      begin_offset: 124313
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "colcannon"
  type: OTHER
  salience: 1.0607819604047108e-05
  mentions {
    text {
      content: "colcannon"
      begin_offset: 124931
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "business"
  type: OTHER
  salience: 1.060582508216612e-05
  mentions {
    text {
      content: "business"
      begin_offset: 127338
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "clothes"
  type: OTHER
  salience: 1.0603860573610291e-05
  mentions {
    text {
      content: "clothes"
      begin_offset: 127752
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bits"
  type: OTHER
  salience: 1.0600019777484704e-05
  mentions {
    text {
      content: "bits"
      begin_offset: 132503
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "benjamingammon"
  type: PERSON
  salience: 1.0596289030218031e-05
  mentions {
    text {
      content: "benjamingammon"
      begin_offset: 136479
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "rain cheekychops"
  type: OTHER
  salience: 1.0594463674351573e-05
  mentions {
    text {
      content: "rain  cheekychops"
      begin_offset: 137724
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "neon tower"
  type: LOCATION
  salience: 1.0592663784336764e-05
  mentions {
    text {
      content: "neon tower"
      begin_offset: 140259
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "congratulations"
  type: OTHER
  salience: 1.0592663784336764e-05
  mentions {
    text {
      content: "congratulations"
      begin_offset: 140784
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pop bar"
  type: LOCATION
  salience: 1.058913767337799e-05
  mentions {
    text {
      content: "pop bar"
      begin_offset: 144559
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "pop bar"
  type: LOCATION
  salience: 1.058913767337799e-05
  mentions {
    text {
      content: "pop bar"
      begin_offset: 143368
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "businesses"
  type: ORGANIZATION
  salience: 1.0582362847344484e-05
  mentions {
    text {
      content: "businesses"
      begin_offset: 152494
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "memories"
  type: OTHER
  salience: 1.0582088179944549e-05
  mentions {
    text {
      content: "memories"
      begin_offset: 92261
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "clothes"
  type: OTHER
  salience: 1.0580723028397188e-05
  mentions {
    text {
      content: "clothes"
      begin_offset: 153824
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "businesses"
  type: ORGANIZATION
  salience: 1.0580723028397188e-05
  mentions {
    text {
      content: "businesses"
      begin_offset: 153757
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "rain snow brain fog shine"
  type: CONSUMER_GOOD
  salience: 1.0579455192782916e-05
  mentions {
    text {
      content: "rain snow brain fog shine"
      begin_offset: 93561
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival goers"
  type: PERSON
  salience: 1.0576874956313986e-05
  mentions {
    text {
      content: "festival goers"
      begin_offset: 94692
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "memory"
  type: OTHER
  salience: 1.0576874956313986e-05
  mentions {
    text {
      content: "memory"
      begin_offset: 95195
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "film"
  type: WORK_OF_ART
  salience: 1.057186455000192e-05
  mentions {
    text {
      content: "film"
      begin_offset: 100360
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "nurse"
  type: PERSON
  salience: 1.0569430742179975e-05
  mentions {
    text {
      content: "nurse"
      begin_offset: 100514
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "sphere lumiere jakubkrupa"
  type: PERSON
  salience: 1.056704240909312e-05
  mentions {
    text {
      content: "sphere lumiere   jakubkrupa"
      begin_offset: 103137
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "angles"
  type: OTHER
  salience: 1.056704240909312e-05
  mentions {
    text {
      content: "angles"
      begin_offset: 103105
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "saws"
  type: OTHER
  salience: 1.056704240909312e-05
  mentions {
    text {
      content: "saws"
      begin_offset: 103328
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "album"
  type: WORK_OF_ART
  salience: 1.056704240909312e-05
  mentions {
    text {
      content: "album"
      begin_offset: 104387
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "edition"
  type: WORK_OF_ART
  salience: 1.056704240909312e-05
  mentions {
    text {
      content: "edition"
      begin_offset: 102619
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "board game"
  type: CONSUMER_GOOD
  salience: 1.0562393981672358e-05
  mentions {
    text {
      content: "board game"
      begin_offset: 108049
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "rainbow shades"
  type: OTHER
  salience: 1.0560132068349048e-05
  mentions {
    text {
      content: "rainbow shades"
      begin_offset: 110198
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "red man"
  type: PERSON
  salience: 1.0557908353803214e-05
  mentions {
    text {
      content: "red man"
      begin_offset: 111969
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "green man"
  type: PERSON
  salience: 1.0557908353803214e-05
  mentions {
    text {
      content: "green man"
      begin_offset: 111951
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "church services"
  type: OTHER
  salience: 1.0553573702054564e-05
  mentions {
    text {
      content: "church services"
      begin_offset: 115008
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "prevalence"
  type: OTHER
  salience: 1.0551460036367644e-05
  mentions {
    text {
      content: "prevalence"
      begin_offset: 117344
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "timeoutlondon grabber"
  type: CONSUMER_GOOD
  salience: 1.054938093147939e-05
  mentions {
    text {
      content: "timeoutlondon grabber"
      begin_offset: 120135
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pa"
  type: OTHER
  salience: 1.052781954058446e-05
  mentions {
    text {
      content: "pa"
      begin_offset: 173260
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "magnificence"
  type: OTHER
  salience: 1.0503561497898772e-05
  mentions {
    text {
      content: "magnificence"
      begin_offset: 66087
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "pity"
  type: OTHER
  salience: 1.04755154097802e-05
  mentions {
    text {
      content: "pity"
      begin_offset: 80234
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "description"
  type: OTHER
  salience: 1.040413735609036e-05
  mentions {
    text {
      content: "description"
      begin_offset: 140693
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "description"
  type: OTHER
  salience: 1.040413735609036e-05
  mentions {
    text {
      content: "description"
      begin_offset: 140509
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 1.899999976158142
    score: 0.6000000238418579
  }
}
entities {
  name: "details"
  type: OTHER
  salience: 1.0304122042725794e-05
  mentions {
    text {
      content: "details"
      begin_offset: 123055
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "details"
      begin_offset: 148092
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "details"
      begin_offset: 165462
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.10000000149011612
  }
}
entities {
  name: "rainbow tunnel"
  type: LOCATION
  salience: 1.0299934729118831e-05
  mentions {
    text {
      content: "rainbow tunnel"
      begin_offset: 58428
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "oxfordcircus julie_guldahl"
  type: LOCATION
  salience: 1.0216558621323202e-05
  mentions {
    text {
      content: "oxfordcircus  julie_guldahl"
      begin_offset: 109036
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance check"
  type: OTHER
  salience: 1.0212367669737432e-05
  mentions {
    text {
      content: "chance check"
      begin_offset: 165265
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lewisham lumierelondon"
  type: PERSON
  salience: 1.020622130454285e-05
  mentions {
    text {
      content: "lewisham lumierelondon"
      begin_offset: 167027
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster lumierelondon"
  type: ORGANIZATION
  salience: 1.0201911209151149e-05
  mentions {
    text {
      content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust detail westminsterabbey westminster  lumierelondon"
      begin_offset: 171837
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere lumierelondon"
  type: PERSON
  salience: 1.0201911209151149e-05
  mentions {
    text {
      content: "lumiere  lumierelondon"
      begin_offset: 173190
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 1.0172756446991116e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 165006
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "photography"
  type: WORK_OF_ART
  salience: 1.0169842425966635e-05
  mentions {
    text {
      content: "photography"
      begin_offset: 168438
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "photos"
  type: WORK_OF_ART
  salience: 1.0166995707550086e-05
  mentions {
    text {
      content: "photos"
      begin_offset: 172890
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "photography"
  type: OTHER
  salience: 1.0165595995204058e-05
  mentions {
    text {
      content: "photography"
      begin_offset: 175003
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "atransformslives aichoketrust visitlondon leebrowne1971 lumierelondon2018 lumierelondon visitlondon justin_venn lumierelondon2018 lumierelondon theresidentmag"
  type: PERSON
  salience: 1.0146837666979991e-05
  mentions {
    text {
      content: "atransformslives aichoketrust visitlondon  leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  justin_venn  lumierelondon2018 lumierelondon  theresidentmag"
      begin_offset: 42934
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "jungle city"
  type: ORGANIZATION
  salience: 1.0146812201128341e-05
  mentions {
    text {
      content: "jungle city"
      begin_offset: 160111
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 1.0140931408386678e-05
  mentions {
    text {
      content: "city"
      begin_offset: 168268
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 1.0139503501704894e-05
  mentions {
    text {
      content: "city"
      begin_offset: 169929
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "nofilter cityscape"
  type: LOCATION
  salience: 1.0139503501704894e-05
  mentions {
    text {
      content: "nofilter cityscape"
      begin_offset: 170410
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "city"
  type: LOCATION
  salience: 1.0135318007087335e-05
  mentions {
    text {
      content: "city"
      begin_offset: 175530
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "50 aists couauldgall"
  type: ORGANIZATION
  salience: 1.0120179467776325e-05
  mentions {
    text {
      content: "50 aists couauldgall"
      begin_offset: 52287
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lumiere dewdropbook dewdrop ay abi"
  type: ORGANIZATION
  salience: 1.0110945368069224e-05
  mentions {
    text {
      content: "london lumiere  dewdropbook dewdrop ay abi"
      begin_offset: 56947
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "force"
  type: OTHER
  salience: 1.0079002095153555e-05
  mentions {
    text {
      content: "force"
      begin_offset: 141436
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "pattenden couesy aichoke aists simonmanleyfco que haya luz segunda edici\303\263n del festival de"
  type: PERSON
  salience: 1.0053229743789416e-05
  mentions {
    text {
      content: "pattenden couesy aichoke aists  simonmanleyfco que haya luz segunda edici\303\263n del festival de"
      begin_offset: 151039
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  mentions {
    text {
      content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de"
      begin_offset: 157093
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 1.7000000476837158
    score: 0.20000000298023224
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 1.0029317309090402e-05
  mentions {
    text {
      content: "works"
      begin_offset: 159736
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "works"
  type: WORK_OF_ART
  salience: 1.002350381895667e-05
  mentions {
    text {
      content: "works"
      begin_offset: 168798
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "work"
  type: OTHER
  salience: 1.00206980278017e-05
  mentions {
    text {
      content: "work"
      begin_offset: 171265
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "installations impulse pa exhibition"
  type: EVENT
  salience: 9.968377526092809e-06
  mentions {
    text {
      content: "installations impulse pa  exhibition"
      begin_offset: 161670
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lots"
  type: PERSON
  salience: 9.898467396851629e-06
  mentions {
    text {
      content: "lots"
      begin_offset: 121577
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "westminsterabbey colour timeout"
  type: OTHER
  salience: 9.80793538474245e-06
  mentions {
    text {
      content: "westminsterabbey  colour timeout"
      begin_offset: 171389
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 9.785829206521157e-06
  mentions {
    text {
      content: "way"
      begin_offset: 132524
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "canadian"
  type: LOCATION
  salience: 9.782862434803974e-06
  mentions {
    text {
      content: "canadian"
      begin_offset: 128287
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "canadian"
      begin_offset: 129367
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thinkingcity addition"
  type: OTHER
  salience: 9.749373020895291e-06
  mentions {
    text {
      content: "thinkingcity addition"
      begin_offset: 104959
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "therose pedalpower petalpower"
  type: OTHER
  salience: 9.737555046740454e-06
  mentions {
    text {
      content: "therose pedalpower petalpower"
      begin_offset: 51981
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "therose pedalpower petalpower"
      begin_offset: 57051
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "westminsterabbey ceainly trudyakelly"
  type: PERSON
  salience: 9.730000783747528e-06
  mentions {
    text {
      content: "westminsterabbey ceainly  trudyakelly"
      begin_offset: 99542
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "object"
  type: OTHER
  salience: 9.674155080574565e-06
  mentions {
    text {
      content: "object"
      begin_offset: 124784
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "vlog editing"
  type: OTHER
  salience: 9.674155080574565e-06
  mentions {
    text {
      content: "vlog editing"
      begin_offset: 123469
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "circus regents street spot"
  type: LOCATION
  salience: 9.670544386608526e-06
  mentions {
    text {
      content: "circus regents street spot"
      begin_offset: 127719
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "festival goers"
  type: PERSON
  salience: 9.668779966887087e-06
  mentions {
    text {
      content: "festival goers"
      begin_offset: 129492
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cross section"
  type: OTHER
  salience: 9.667041922511999e-06
  mentions {
    text {
      content: "cross section"
      begin_offset: 131856
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cross section"
  type: OTHER
  salience: 9.667041922511999e-06
  mentions {
    text {
      content: "cross section"
      begin_offset: 131761
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "visitor rules"
  type: OTHER
  salience: 9.667041922511999e-06
  mentions {
    text {
      content: "visitor rules"
      begin_offset: 133283
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "plate rules"
  type: OTHER
  salience: 9.665328434493858e-06
  mentions {
    text {
      content: "plate rules"
      begin_offset: 134141
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "photo credit"
  type: OTHER
  salience: 9.660333489591721e-06
  mentions {
    text {
      content: "photo credit"
      begin_offset: 141210
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "menus"
  type: OTHER
  salience: 9.657117516326252e-06
  mentions {
    text {
      content: "menus"
      begin_offset: 143422
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "menus"
  type: OTHER
  salience: 9.657117516326252e-06
  mentions {
    text {
      content: "menus"
      begin_offset: 144613
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "walls"
  type: OTHER
  salience: 9.657117516326252e-06
  mentions {
    text {
      content: "walls"
      begin_offset: 144407
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "check blog spots"
  type: OTHER
  salience: 9.653987945057452e-06
  mentions {
    text {
      content: "check blog spots"
      begin_offset: 149383
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "trafalgarsquare"
  type: OTHER
  salience: 9.653820598032326e-06
  mentions {
    text {
      content: "trafalgarsquare"
      begin_offset: 166214
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "comfo food"
  type: OTHER
  salience: 9.622466677683406e-06
  mentions {
    text {
      content: "comfo food"
      begin_offset: 115331
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "visit website"
  type: OTHER
  salience: 9.607862921257038e-06
  mentions {
    text {
      content: "visit website"
      begin_offset: 84582
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit website"
  type: OTHER
  salience: 9.607862921257038e-06
  mentions {
    text {
      content: "visit website"
      begin_offset: 85786
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "host"
  type: PERSON
  salience: 9.598545148037374e-06
  mentions {
    text {
      content: "host"
      begin_offset: 35494
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "host"
  type: PERSON
  salience: 9.568109817337245e-06
  mentions {
    text {
      content: "host"
      begin_offset: 44621
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere smitf_london"
  type: PERSON
  salience: 9.55890936893411e-06
  mentions {
    text {
      content: "lumiere   smitf_london"
      begin_offset: 152699
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "earlham street"
  type: LOCATION
  salience: 9.49400600802619e-06
  mentions {
    text {
      content: "earlham street"
      begin_offset: 161102
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "earlham street"
  type: LOCATION
  salience: 9.49400600802619e-06
  mentions {
    text {
      content: "earlham street"
      begin_offset: 160589
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "lightbulb installation ganton street"
  type: LOCATION
  salience: 9.484541806159541e-06
  mentions {
    text {
      content: "lightbulb installation ganton street"
      begin_offset: 174871
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.0
  }
}
entities {
  name: "lightbulb installation ganton street"
  type: LOCATION
  salience: 9.484541806159541e-06
  mentions {
    text {
      content: "lightbulb installation ganton street"
      begin_offset: 175142
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 1.0
  }
}
entities {
  name: "jubilee line baker street"
  type: LOCATION
  salience: 9.483251233177725e-06
  mentions {
    text {
      content: "jubilee line baker street"
      begin_offset: 175782
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "regent street"
  type: LOCATION
  salience: 9.483251233177725e-06
  mentions {
    text {
      content: "regent street"
      begin_offset: 176305
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "balloon lights"
  type: OTHER
  salience: 9.479040272708517e-06
  mentions {
    text {
      content: "balloon lights"
      begin_offset: 175957
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "hot chocolate"
  type: OTHER
  salience: 9.428479643247556e-06
  mentions {
    text {
      content: "hot chocolate"
      begin_offset: 136764
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "westminster smitf_london"
  type: LOCATION
  salience: 9.427978511666879e-06
  mentions {
    text {
      content: "westminster  smitf_london"
      begin_offset: 154390
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  mentions {
    text {
      content: "westminster  smitf_london"
      begin_offset: 155432
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.20000000298023224
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 9.394026164954994e-06
  mentions {
    text {
      content: "dreams"
      begin_offset: 158745
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.39262372412486e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 160225
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.39262372412486e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 160726
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 9.39123856369406e-06
  mentions {
    text {
      content: "dreams"
      begin_offset: 163255
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "dreams"
  type: OTHER
  salience: 9.388516446051653e-06
  mentions {
    text {
      content: "dreams"
      begin_offset: 166159
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 3.4000000953674316
    score: 0.6000000238418579
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: PERSON
  salience: 9.388516446051653e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 165501
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "ipreview badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.388516446051653e-06
  mentions {
    text {
      content: "ipreview  badgerust fox amp badger stars"
      begin_offset: 166840
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "travel badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.388516446051653e-06
  mentions {
    text {
      content: "travel  badgerust fox amp badger stars"
      begin_offset: 167076
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: CONSUMER_GOOD
  salience: 9.388516446051653e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 167314
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.387179488840047e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 167988
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "guide gt badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.387179488840047e-06
  mentions {
    text {
      content: "guide gt  badgerust fox amp badger stars"
      begin_offset: 167627
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.385857993038371e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 171103
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "visitlondon badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.385857993038371e-06
  mentions {
    text {
      content: "visitlondon  badgerust fox amp badger stars"
      begin_offset: 170828
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.385857993038371e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 169999
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.385857993038371e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 170103
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.384551958646625e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 172919
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "badgerust fox amp badger stars"
  type: ORGANIZATION
  salience: 9.383260476170108e-06
  mentions {
    text {
      content: "badgerust fox amp badger stars"
      begin_offset: 173541
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londonlife sessions"
  type: EVENT
  salience: 9.37483855523169e-06
  mentions {
    text {
      content: "londonlife sessions"
      begin_offset: 103499
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "ink"
  type: OTHER
  salience: 9.2957916422165e-06
  mentions {
    text {
      content: "ink"
      begin_offset: 91339
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ponds"
  type: OTHER
  salience: 9.293431503465399e-06
  mentions {
    text {
      content: "ponds"
      begin_offset: 92956
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "puddles"
  type: CONSUMER_GOOD
  salience: 9.293431503465399e-06
  mentions {
    text {
      content: "puddles"
      begin_offset: 92943
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "gear"
  type: CONSUMER_GOOD
  salience: 9.293431503465399e-06
  mentions {
    text {
      content: "gear"
      begin_offset: 92090
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "woxxy"
  type: OTHER
  salience: 9.293431503465399e-06
  mentions {
    text {
      content: "woxxy"
      begin_offset: 92405
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "display"
  type: OTHER
  salience: 9.293076800531708e-06
  mentions {
    text {
      content: "display"
      begin_offset: 155125
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "fab"
  type: OTHER
  salience: 9.29111865843879e-06
  mentions {
    text {
      content: "fab"
      begin_offset: 94199
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "doublemacbex"
  type: OTHER
  salience: 9.288853107136674e-06
  mentions {
    text {
      content: "doublemacbex"
      begin_offset: 95392
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "ai"
  type: OTHER
  salience: 9.288853107136674e-06
  mentions {
    text {
      content: "ai"
      begin_offset: 94875
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "woman"
  type: PERSON
  salience: 9.286631211580243e-06
  mentions {
    text {
      content: "woman"
      begin_offset: 98307
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ride"
  type: EVENT
  salience: 9.284452971769497e-06
  mentions {
    text {
      content: "ride"
      begin_offset: 99990
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: -0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: -0.6000000238418579
  }
}
entities {
  name: "shift team facltd treatment unit alpha1"
  type: OTHER
  salience: 9.284452971769497e-06
  mentions {
    text {
      content: "shift team facltd treatment unit alpha1"
      begin_offset: 100398
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "check hashtag"
  type: OTHER
  salience: 9.28021745494334e-06
  mentions {
    text {
      content: "check  hashtag"
      begin_offset: 103866
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "duds"
  type: OTHER
  salience: 9.278157449443825e-06
  mentions {
    text {
      content: "duds"
      begin_offset: 104837
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thewave"
  type: OTHER
  salience: 9.277864592149854e-06
  mentions {
    text {
      content: "thewave"
      begin_offset: 34918
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "globe"
  type: LOCATION
  salience: 9.276135642721783e-06
  mentions {
    text {
      content: "globe"
      begin_offset: 107897
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "issues"
  type: OTHER
  salience: 9.276135642721783e-06
  mentions {
    text {
      content: "issues"
      begin_offset: 108161
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visitlondon jonchanuk"
  type: OTHER
  salience: 9.27414839679841e-06
  mentions {
    text {
      content: "visitlondon  jonchanuk"
      begin_offset: 110394
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "feast"
  type: EVENT
  salience: 9.27414839679841e-06
  mentions {
    text {
      content: "feast"
      begin_offset: 110748
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "quokkas"
  type: PERSON
  salience: 9.27414839679841e-06
  mentions {
    text {
      content: "quokkas"
      begin_offset: 109612
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "madness"
  type: OTHER
  salience: 9.27414839679841e-06
  mentions {
    text {
      content: "madness"
      begin_offset: 110123
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tea pots"
  type: OTHER
  salience: 9.272195711673703e-06
  mentions {
    text {
      content: "tea pots"
      begin_offset: 111720
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "thefools"
  type: OTHER
  salience: 9.270276677852962e-06
  mentions {
    text {
      content: "thefools"
      begin_offset: 114255
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "existence"
  type: OTHER
  salience: 9.270276677852962e-06
  mentions {
    text {
      content: "existence"
      begin_offset: 114612
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "festival lights badger badger badger badger mushroom"
  type: LOCATION
  salience: 9.270276677852962e-06
  mentions {
    text {
      content: "festival lights badger badger badger badger mushroom"
      begin_offset: 113579
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "minster"
  type: PERSON
  salience: 9.268388566852082e-06
  mentions {
    text {
      content: "minster"
      begin_offset: 115042
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "jars"
  type: OTHER
  salience: 9.268388566852082e-06
  mentions {
    text {
      content: "jars"
      begin_offset: 115768
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "sound design projection mapping"
  type: OTHER
  salience: 9.268388566852082e-06
  mentions {
    text {
      content: "sound design projection mapping"
      begin_offset: 116581
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "miracle"
  type: OTHER
  salience: 9.268388566852082e-06
  mentions {
    text {
      content: "miracle"
      begin_offset: 115059
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rover"
  type: OTHER
  salience: 9.268388566852082e-06
  mentions {
    text {
      content: "rover"
      begin_offset: 115904
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "amp pandora box"
  type: OTHER
  salience: 9.256504199584015e-06
  mentions {
    text {
      content: "amp pandora box"
      begin_offset: 156309
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "amp pandora box"
  type: OTHER
  salience: 9.256504199584015e-06
  mentions {
    text {
      content: "amp pandora box"
      begin_offset: 157060
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "fish phone box"
  type: OTHER
  salience: 9.256504199584015e-06
  mentions {
    text {
      content: "fish phone box"
      begin_offset: 157287
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "beasts"
  type: OTHER
  salience: 9.252358722733334e-06
  mentions {
    text {
      content: "beasts"
      begin_offset: 161907
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "aquarium telephone box"
  type: OTHER
  salience: 9.249676622857805e-06
  mentions {
    text {
      content: "aquarium telephone box"
      begin_offset: 166919
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "aichoketrust biggsytravels toevho"
  type: CONSUMER_GOOD
  salience: 9.248445167031605e-06
  mentions {
    text {
      content: "aichoketrust biggsytravels  toevho"
      begin_offset: 43714
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "londonlumiere lumierelondon aichoketrust"
  type: PERSON
  salience: 9.245758519682568e-06
  mentions {
    text {
      content: "londonlumiere  lumierelondon  aichoketrust"
      begin_offset: 160855
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk"
  type: ORGANIZATION
  salience: 9.229433999280445e-06
  mentions {
    text {
      content: "flichr aichoketrust visitlondon lovelondon paulhdigiman physicusuk"
      begin_offset: 51674
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bicycles"
  type: CONSUMER_GOOD
  salience: 9.224467248714063e-06
  mentions {
    text {
      content: "bicycles"
      begin_offset: 67752
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "chinatownlondon lanterncompany lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018"
  type: ORGANIZATION
  salience: 9.22101298783673e-06
  mentions {
    text {
      content: "chinatownlondon lanterncompany  lumiere londonafterdark streeta urban londonlife lovelondon metrouk visitlondon eveningstandard mayoroflondon 21012018"
      begin_offset: 55481
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere london 2018 lumierelondon lumierelondon2018 meizu meizumx6"
  type: CONSUMER_GOOD
  salience: 9.22101298783673e-06
  mentions {
    text {
      content: "lumiere london 2018 lumierelondon lumierelondon2018  meizu meizumx6"
      begin_offset: 55632
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "whatthefishsaw aquarium phoneaddict mania"
  type: LOCATION
  salience: 9.211476026393939e-06
  mentions {
    text {
      content: "whatthefishsaw aquarium  phoneaddict mania"
      begin_offset: 73702
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "non"
  type: OTHER
  salience: 9.199836313200649e-06
  mentions {
    text {
      content: "non"
      begin_offset: 80270
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "defying gravity"
  type: EVENT
  salience: 9.19444028113503e-06
  mentions {
    text {
      content: "defying gravity"
      begin_offset: 83224
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "amp nature"
  type: OTHER
  salience: 9.19444028113503e-06
  mentions {
    text {
      content: "amp nature"
      begin_offset: 84086
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "world light amp colours balance"
  type: OTHER
  salience: 9.19444028113503e-06
  mentions {
    text {
      content: "world light amp colours balance"
      begin_offset: 84012
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "fella"
  type: PERSON
  salience: 9.19444028113503e-06
  mentions {
    text {
      content: "fella"
      begin_offset: 84460
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "hugs"
  type: OTHER
  salience: 9.19444028113503e-06
  mentions {
    text {
      content: "hugs"
      begin_offset: 84473
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "wabbey rcwestminster"
  type: PERSON
  salience: 9.192328434437513e-06
  mentions {
    text {
      content: "wabbey rcwestminster"
      begin_offset: 107609
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "legs ache"
  type: OTHER
  salience: 9.189293450617697e-06
  mentions {
    text {
      content: "legs ache"
      begin_offset: 86211
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "selfie london transpo system"
  type: OTHER
  salience: 9.189293450617697e-06
  mentions {
    text {
      content: "selfie london transpo system"
      begin_offset: 87007
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival"
  type: EVENT
  salience: 9.18723253562348e-06
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust a streeta lightfestival"
      begin_offset: 74269
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "structure"
  type: OTHER
  salience: 9.186805073113646e-06
  mentions {
    text {
      content: "structure"
      begin_offset: 88003
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "gates"
  type: PERSON
  salience: 9.186805073113646e-06
  mentions {
    text {
      content: "gates"
      begin_offset: 88048
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "poem"
  type: WORK_OF_ART
  salience: 9.184372174786404e-06
  mentions {
    text {
      content: "poem"
      begin_offset: 89971
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "eyes"
  type: OTHER
  salience: 9.184372174786404e-06
  mentions {
    text {
      content: "eyes"
      begin_offset: 89708
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "aquarium evdjones"
  type: PERSON
  salience: 9.181991117657162e-06
  mentions {
    text {
      content: "aquarium  evdjones"
      begin_offset: 91040
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon lumierelondon2018 lumiere"
  type: PERSON
  salience: 9.177019819617271e-06
  mentions {
    text {
      content: "lumierelondon  lumierelondon2018 lumiere"
      begin_offset: 176350
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "glance"
  type: OTHER
  salience: 9.054387192009017e-06
  mentions {
    text {
      content: "glance"
      begin_offset: 103118
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 8.923882887756918e-06
  mentions {
    text {
      content: "aquarium"
      begin_offset: 161072
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "aquarium"
  type: OTHER
  salience: 8.923882887756918e-06
  mentions {
    text {
      content: "aquarium"
      begin_offset: 160559
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 8.809288374322932e-06
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 158577
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "disney"
  type: ORGANIZATION
  metadata {
    key: "mid"
    value: "/m/09b3v"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/The_Walt_Disney_Company"
  }
  salience: 8.805289326119237e-06
  mentions {
    text {
      content: "disney"
      begin_offset: 100353
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  mentions {
    text {
      content: "disney"
      begin_offset: 162310
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 8.802868251223117e-06
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 168712
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 8.802868251223117e-06
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 169244
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "south bank king cross"
  type: OTHER
  salience: 8.801629519439302e-06
  mentions {
    text {
      content: "south bank king cross"
      begin_offset: 169631
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "line king cross"
  type: OTHER
  salience: 8.800404430076014e-06
  mentions {
    text {
      content: "line king cross"
      begin_offset: 172157
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "line king cross"
  type: OTHER
  salience: 8.800404430076014e-06
  mentions {
    text {
      content: "line king cross"
      begin_offset: 172456
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "tip king cross"
  type: OTHER
  salience: 8.797995178611018e-06
  mentions {
    text {
      content: "tip king cross"
      begin_offset: 175554
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "images"
  type: WORK_OF_ART
  salience: 8.795320354693104e-06
  mentions {
    text {
      content: "images"
      begin_offset: 174744
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "images"
  type: WORK_OF_ART
  salience: 8.79412345966557e-06
  mentions {
    text {
      content: "images"
      begin_offset: 176200
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "images"
  type: WORK_OF_ART
  salience: 8.79412345966557e-06
  mentions {
    text {
      content: "images"
      begin_offset: 175834
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "tmnikonian darraghdoyle"
  type: OTHER
  salience: 8.649091796542052e-06
  mentions {
    text {
      content: "tmnikonian  darraghdoyle"
      begin_offset: 114844
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "fitzroy"
  type: LOCATION
  salience: 8.645681191410404e-06
  mentions {
    text {
      content: "fitzroy"
      begin_offset: 147505
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "pattenden couesy aichoke aists"
  type: PERSON
  salience: 8.644306944916025e-06
  mentions {
    text {
      content: "pattenden couesy aichoke aists"
      begin_offset: 151430
    }
    type: PROPER
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231 benedetto bufalino benoit deseille aquarium"
  type: PERSON
  salience: 8.629456715425476e-06
  mentions {
    text {
      content: "\343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  barkingsideac"
      begin_offset: 75152
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "\350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium  newsdigest \350\213\261\345\233\275 \343\203\255\343\203\263\343\203\211\343\203\263\343\201\256\350\265\244\343\201\204\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\214\346\260\264\346\247\275\343\201\253\345\244\211\350\272\253 \351\233\273\350\251\261\346\251\237\343\201\256\343\201\276\343\202\217\343\202\212\343\202\222\343\202\271\343\202\244\343\202\271\343\202\244\346\263\263\343\201\220\343\202\253\343\203\251\343\203\225\343\203\253\343\201\252\351\207\221\351\255\232\343\202\202\343\202\244\343\203\263\343\203\221\343\202\257\343\203\210\345\244\247\343\201\247\343\201\231\343\201\214 \344\273\212\343\201\247\343\201\257\343\201\273\343\201\250\343\202\223\343\201\251\350\246\213\345\220\221\343\201\215\343\202\202\343\201\225\343\202\214\343\201\252\343\201\217\343\201\252\343\201\243\343\201\237\351\233\273\350\251\261\343\203\234\343\203\203\343\202\257\343\202\271\343\201\253\345\244\247\345\213\242\343\201\256\344\272\272\343\201\214\347\276\244\343\201\214\343\202\213\346\247\230\345\255\220\343\202\202\343\201\212\343\202\202\343\201\227\343\202\215\343\201\213\343\201\243\343\201\237\343\201\247\343\201\231  benedetto bufalino benoit deseille aquarium"
      begin_offset: 79612
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 8.564650670450646e-06
  mentions {
    text {
      content: "spirit"
      begin_offset: 162262
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 8.563401934225112e-06
  mentions {
    text {
      content: "spirit"
      begin_offset: 164656
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 8.562168659409508e-06
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 165827
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "spirit"
  type: OTHER
  salience: 8.560949936509132e-06
  mentions {
    text {
      content: "spirit"
      begin_offset: 169093
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "installation light spirit"
  type: OTHER
  salience: 8.556210559618194e-06
  mentions {
    text {
      content: "installation light spirit"
      begin_offset: 176089
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon victoriabid createvictoria"
  type: PERSON
  salience: 8.533200343663339e-06
  mentions {
    text {
      content: "visitlondon victoriabid createvictoria"
      begin_offset: 118087
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather"
  type: PERSON
  salience: 8.529864317097235e-06
  mentions {
    text {
      content: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_ discovergather"
      begin_offset: 122051
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "babcockwalk step count thethroneseekers team"
  type: ORGANIZATION
  salience: 8.497182534483727e-06
  mentions {
    text {
      content: "babcockwalk step count thethroneseekers team"
      begin_offset: 157213
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "thecrownestate"
  type: OTHER
  salience: 8.496061127516441e-06
  mentions {
    text {
      content: "thecrownestate"
      begin_offset: 124022
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "elements"
  type: OTHER
  salience: 8.496061127516441e-06
  mentions {
    text {
      content: "elements"
      begin_offset: 123988
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "money"
  type: OTHER
  salience: 8.494463145325426e-06
  mentions {
    text {
      content: "money"
      begin_offset: 126055
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "balls fire"
  type: OTHER
  salience: 8.494463145325426e-06
  mentions {
    text {
      content: "balls fire"
      begin_offset: 127074
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "heawarming"
  type: OTHER
  salience: 8.494463145325426e-06
  mentions {
    text {
      content: "heawarming"
      begin_offset: 125997
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cans"
  type: OTHER
  salience: 8.494463145325426e-06
  mentions {
    text {
      content: "cans"
      begin_offset: 126937
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "look rbehotels"
  type: OTHER
  salience: 8.49289062898606e-06
  mentions {
    text {
      content: "look rbehotels"
      begin_offset: 128915
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "desks"
  type: OTHER
  salience: 8.49134085001424e-06
  mentions {
    text {
      content: "desks"
      begin_offset: 129629
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "divas"
  type: OTHER
  salience: 8.49134085001424e-06
  mentions {
    text {
      content: "divas"
      begin_offset: 130325
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bank light bulbs pulse flash"
  type: OTHER
  salience: 8.48830950417323e-06
  mentions {
    text {
      content: "bank light bulbs pulse flash"
      begin_offset: 134650
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "outcome"
  type: OTHER
  salience: 8.486826118314639e-06
  mentions {
    text {
      content: "outcome"
      begin_offset: 135507
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "rococochocs"
  type: OTHER
  salience: 8.486826118314639e-06
  mentions {
    text {
      content: "rococochocs"
      begin_offset: 136786
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lovers"
  type: PERSON
  salience: 8.484460522595327e-06
  mentions {
    text {
      content: "lovers"
      begin_offset: 157382
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "susie"
  type: PERSON
  salience: 8.48392301122658e-06
  mentions {
    text {
      content: "susie"
      begin_offset: 141247
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "fans"
  type: PERSON
  salience: 8.482500561513007e-06
  mentions {
    text {
      content: "fans"
      begin_offset: 142677
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "glow sticks"
  type: OTHER
  salience: 8.482500561513007e-06
  mentions {
    text {
      content: "glow sticks"
      begin_offset: 141927
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "frost bite pneumonia"
  type: OTHER
  salience: 8.481098120682873e-06
  mentions {
    text {
      content: "frost bite pneumonia"
      begin_offset: 143841
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "enter calming"
  type: OTHER
  salience: 8.479714779241476e-06
  mentions {
    text {
      content: "enter calming"
      begin_offset: 147485
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "challenge"
  type: OTHER
  salience: 8.478349627694115e-06
  mentions {
    text {
      content: "challenge"
      begin_offset: 148268
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "evening standard"
  type: OTHER
  salience: 8.478349627694115e-06
  mentions {
    text {
      content: "evening standard"
      begin_offset: 149161
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "metline"
  type: OTHER
  salience: 8.478349627694115e-06
  mentions {
    text {
      content: "metline"
      begin_offset: 149560
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "ambassador house forecou"
  type: OTHER
  salience: 8.477001756546088e-06
  mentions {
    text {
      content: "ambassador house forecou"
      begin_offset: 149858
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "thornton heath"
  type: LOCATION
  salience: 8.477001756546088e-06
  mentions {
    text {
      content: "thornton heath"
      begin_offset: 149816
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "operations"
  type: OTHER
  salience: 8.474358764942735e-06
  mentions {
    text {
      content: "operations"
      begin_offset: 153852
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "trafalgar sqaure x lumierelondon lumierelondon2018 visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 8.46926741360221e-06
  mentions {
    text {
      content: "trafalgar sqaure x  lumierelondon lumierelondon2018 visitlondon aichoketrust"
      begin_offset: 81570
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "gasholderiplets kingscross lumiere levanterman"
  type: PERSON
  salience: 8.428373803326394e-06
  mentions {
    text {
      content: "gasholderiplets kingscross  lumiere  levanterman"
      begin_offset: 162822
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "reality gasholders"
      begin_offset: 162803
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ldn_culture"
  type: OTHER
  salience: 8.418456673098262e-06
  mentions {
    text {
      content: "ldn_culture"
      begin_offset: 105802
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 8.418309334956575e-06
  mentions {
    text {
      content: "way"
      begin_offset: 166265
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 8.418309334956575e-06
  mentions {
    text {
      content: "way"
      begin_offset: 166390
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "view"
  type: OTHER
  salience: 8.416621312790085e-06
  mentions {
    text {
      content: "view"
      begin_offset: 106781
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "granarysquare"
  type: OTHER
  salience: 8.397358215006534e-06
  mentions {
    text {
      content: "granarysquare"
      begin_offset: 159200
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon lumiere leicestersquare"
  type: OTHER
  salience: 8.391276423935778e-06
  mentions {
    text {
      content: "lumierelondon lumiere leicestersquare"
      begin_offset: 140870
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "granarysquare"
  type: OTHER
  salience: 8.388889000343625e-06
  mentions {
    text {
      content: "granarysquare"
      begin_offset: 171691
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 8.30241151561495e-06
  mentions {
    text {
      content: "people"
      begin_offset: 170778
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "people"
  type: PERSON
  salience: 8.298983630083967e-06
  mentions {
    text {
      content: "people"
      begin_offset: 175589
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "goodge street fouh"
  type: OTHER
  salience: 8.298876309709158e-06
  mentions {
    text {
      content: "goodge street  fouh"
      begin_offset: 110424
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "goodge street  fouh"
      begin_offset: 111321
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "dinner"
  type: EVENT
  salience: 8.293771315948106e-06
  mentions {
    text {
      content: "dinner"
      begin_offset: 124898
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "likes"
  type: OTHER
  salience: 8.287754099001177e-06
  mentions {
    text {
      content: "likes"
      begin_offset: 127298
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "fitzrovia dontmissout"
  type: OTHER
  salience: 8.20625700725941e-06
  mentions {
    text {
      content: "fitzrovia  dontmissout"
      begin_offset: 109227
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "fitzrovia  dontmissout"
      begin_offset: 110943
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "fitzrovia  dontmissout"
      begin_offset: 112176
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.10000000149011612
  }
}
entities {
  name: "gosee themayfairhotel"
  type: WORK_OF_ART
  salience: 8.179272299457807e-06
  mentions {
    text {
      content: "gosee  themayfairhotel"
      begin_offset: 114775
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "exitmagazine maxcoopermax 2nickjones"
  type: PERSON
  salience: 8.142293154378422e-06
  mentions {
    text {
      content: "exitmagazine  maxcoopermax  2nickjones"
      begin_offset: 35659
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "taize prayer"
  type: OTHER
  salience: 8.137256372720003e-06
  mentions {
    text {
      content: "taize prayer"
      begin_offset: 129515
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "aurais tellement aim\303\251 pouvoir assister aux d\303\251cid\303\251ment notre"
  type: WORK_OF_ART
  salience: 8.136872565955855e-06
  mentions {
    text {
      content: "aurais tellement aim\303\251 pouvoir assister aux  d\303\251cid\303\251ment notre"
      begin_offset: 38389
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "mauvais peut \303\252tre"
  type: OTHER
  salience: 8.136872565955855e-06
  mentions {
    text {
      content: "mauvais peut \303\252tre"
      begin_offset: 38463
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "panasonicfz2500 fz2500"
  type: OTHER
  salience: 8.126848115352914e-06
  mentions {
    text {
      content: "panasonicfz2500 fz2500"
      begin_offset: 42099
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumierelondon2018 lumierelondon justin_venn lumierelondon2018 lumierelondon lm_westminster"
  type: PERSON
  salience: 8.126848115352914e-06
  mentions {
    text {
      content: "lumierelondon2018 lumierelondon  justin_venn  lumierelondon2018 lumierelondon  lm_westminster"
      begin_offset: 42757
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "visitlondon keeponwalking"
  type: ORGANIZATION
  salience: 8.126012289721984e-06
  mentions {
    text {
      content: "visitlondon keeponwalking"
      begin_offset: 123067
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "go aichoketrust lumierelondon2018 visitlondon livonshoestring"
  type: OTHER
  salience: 8.10549590823939e-06
  mentions {
    text {
      content: "go aichoketrust lumierelondon2018  visitlondon  livonshoestring"
      begin_offset: 52657
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "kensington palace"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/022smk"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Kensington_Palace"
  }
  salience: 8.098099897324573e-06
  mentions {
    text {
      content: "kensington palace"
      begin_offset: 55328
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "atransformslives aichoketrust visitlondon openyoureyesldn"
  type: ORGANIZATION
  salience: 8.098099897324573e-06
  mentions {
    text {
      content: "atransformslives aichoketrust visitlondon  openyoureyesldn"
      begin_offset: 56679
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "wabbey westminsterabbey greatbritain"
  type: PERSON
  salience: 8.098099897324573e-06
  mentions {
    text {
      content: "wabbey westminsterabbey  greatbritain"
      begin_offset: 55879
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "redbridgelive umbrellaproject thisisredbridge mylocalculture livonshoestring"
  type: OTHER
  salience: 8.087953574431594e-06
  mentions {
    text {
      content: "redbridgelive umbrellaproject thisisredbridge mylocalculture  livonshoestring"
      begin_offset: 62728
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere mr_simms_hx"
  type: PERSON
  salience: 8.016057108761743e-06
  mentions {
    text {
      content: "lumiere   mr_simms_hx"
      begin_offset: 121939
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "swim bladder infection"
  type: OTHER
  salience: 7.896961506048683e-06
  mentions {
    text {
      content: "swim bladder infection"
      begin_offset: 116646
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "project"
  type: OTHER
  salience: 7.88356555858627e-06
  mentions {
    text {
      content: "project"
      begin_offset: 166543
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "miss"
  type: EVENT
  salience: 7.881333658588119e-06
  mentions {
    text {
      content: "miss"
      begin_offset: 170683
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "mayoroflondon"
  type: OTHER
  salience: 7.834854841348715e-06
  mentions {
    text {
      content: "mayoroflondon"
      begin_offset: 163423
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aworks"
  type: PERSON
  salience: 7.822609404684044e-06
  mentions {
    text {
      content: "aworks"
      begin_offset: 158654
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aist imakefings"
  type: ORGANIZATION
  salience: 7.81385006121127e-06
  mentions {
    text {
      content: "aist imakefings"
      begin_offset: 138681
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "aichoketrust visitlondon fuzzworks_uk"
  type: ORGANIZATION
  salience: 7.812523108441383e-06
  mentions {
    text {
      content: "aichoketrust visitlondon  fuzzworks_uk"
      begin_offset: 139617
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "shaftesbury avenue"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/01hhkk"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Shaftesbury_Avenue"
  }
  salience: 7.808462214597967e-06
  mentions {
    text {
      content: "shaftesbury avenue"
      begin_offset: 113983
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "shaftesbury avenue"
      begin_offset: 121777
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "shaftesbury avenue"
      begin_offset: 123833
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "lumierelondon grosvenor_ldn"
  type: ORGANIZATION
  salience: 7.793625627527945e-06
  mentions {
    text {
      content: "lumierelondon grosvenor_ldn"
      begin_offset: 103341
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "dot dot dot dot dot philippe morvan"
  type: ORGANIZATION
  salience: 7.749742508167401e-06
  mentions {
    text {
      content: "dot dot dot dot dot philippe morvan"
      begin_offset: 65704
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c suzystories"
  type: LOCATION
  salience: 7.741193257970735e-06
  mentions {
    text {
      content: "londoner abstractphoto abstracta colorphotography streeta streetphotographer streetphotography publica festivaloflights c  suzystories"
      begin_offset: 70500
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london chinatownldn festivaloflights"
  type: EVENT
  salience: 7.726495823590085e-06
  mentions {
    text {
      content: "london chinatownldn festivaloflights"
      begin_offset: 109759
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "london chinatownldn festivaloflights"
      begin_offset: 109675
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "catch"
  type: OTHER
  salience: 7.713278137089219e-06
  mentions {
    text {
      content: "catch"
      begin_offset: 162348
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "aworks"
  type: OTHER
  salience: 7.626686510775471e-06
  mentions {
    text {
      content: "aworks"
      begin_offset: 168290
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "video"
  type: WORK_OF_ART
  salience: 7.625142188771861e-06
  mentions {
    text {
      content: "video"
      begin_offset: 170821
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "piccadillycircus building lights music video"
  type: WORK_OF_ART
  salience: 7.624080808454892e-06
  mentions {
    text {
      content: "piccadillycircus building lights music video"
      begin_offset: 171484
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "visitlondon keeponwalking"
  type: OTHER
  salience: 7.613204161316389e-06
  mentions {
    text {
      content: "visitlondon keeponwalking"
      begin_offset: 148104
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "visitlondon keeponwalking"
      begin_offset: 165474
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.20000000298023224
  }
}
entities {
  name: "marshalljulius london leicester square"
  type: ORGANIZATION
  salience: 7.539726084360154e-06
  mentions {
    text {
      content: "marshalljulius london leicester square"
      begin_offset: 157799
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: -0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: -0.5
  }
}
entities {
  name: "westminsterabbey timeoutlondon kingscrossn1c"
  type: ORGANIZATION
  salience: 7.510228442697553e-06
  mentions {
    text {
      content: "westminsterabbey timeoutlondon  kingscrossn1c"
      begin_offset: 170436
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "colour"
  type: OTHER
  salience: 7.352391548920423e-06
  mentions {
    text {
      content: "colour"
      begin_offset: 164232
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "facebook"
  type: OTHER
  metadata {
    key: "mid"
    value: "/m/02y1vz"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Facebook"
  }
  salience: 7.3515793701517396e-06
  mentions {
    text {
      content: "facebook"
      begin_offset: 104378
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "amp walk home"
  type: ORGANIZATION
  salience: 7.350088708335534e-06
  mentions {
    text {
      content: "amp walk home"
      begin_offset: 108066
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "colours"
  type: OTHER
  salience: 7.348228336923057e-06
  mentions {
    text {
      content: "colours"
      begin_offset: 171974
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany"
  type: ORGANIZATION
  salience: 7.346771781158168e-06
  mentions {
    text {
      content: "lumiere flamingoflyaway aichoketrust mayoroflondon wabbey lanterncompany"
      begin_offset: 110755
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "ajwoodcock"
  type: PERSON
  salience: 7.299475782929221e-06
  mentions {
    text {
      content: "ajwoodcock"
      begin_offset: 82986
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "exhibits"
  type: OTHER
  salience: 7.2294933488592505e-06
  mentions {
    text {
      content: "exhibits"
      begin_offset: 176399
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "group"
  type: ORGANIZATION
  salience: 7.1353847488353495e-06
  mentions {
    text {
      content: "group"
      begin_offset: 149597
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "iphonese"
  type: CONSUMER_GOOD
  metadata {
    key: "mid"
    value: "/g/11c3zr6jgs"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/IPhone_SE"
  }
  salience: 7.135080522857606e-06
  mentions {
    text {
      content: "iphonese"
      begin_offset: 125155
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "thisislondon iphonephotography"
  type: ORGANIZATION
  salience: 7.135080522857606e-06
  mentions {
    text {
      content: "thisislondon iphonephotography"
      begin_offset: 125164
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "ltda lumiere piccadilly burlington house"
  type: LOCATION
  salience: 7.133739018172491e-06
  mentions {
    text {
      content: "ltda lumiere piccadilly burlington house"
      begin_offset: 126358
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon lumierelondon2018 lumiere londonlights fishbooth phonebooth"
  type: OTHER
  salience: 7.126096988940844e-06
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  lumiere londonlights fishbooth phonebooth"
      begin_offset: 138733
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "westminster thegl0betrotter"
  type: ORGANIZATION
  salience: 7.120206191757461e-06
  mentions {
    text {
      content: "westminster  thegl0betrotter"
      begin_offset: 148469
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "arches"
  type: OTHER
  salience: 7.118826943042222e-06
  mentions {
    text {
      content: "arches"
      begin_offset: 156760
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "folk"
  type: OTHER
  salience: 7.113576430128887e-06
  mentions {
    text {
      content: "folk"
      begin_offset: 167022
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "brown ha gardens"
  type: LOCATION
  salience: 7.0625837906845845e-06
  mentions {
    text {
      content: "brown ha gardens"
      begin_offset: 173819
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "song lumierelondon thought"
  type: OTHER
  salience: 7.024101705610519e-06
  mentions {
    text {
      content: "song lumierelondon  thought"
      begin_offset: 76871
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "tracey emin"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/015sxw"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Tracey_Emin"
  }
  salience: 6.987894266785588e-06
  mentions {
    text {
      content: "tracey emin"
      begin_offset: 82612
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "tracey emin"
      begin_offset: 82808
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "walk rainbow tunnel"
  type: LOCATION
  salience: 6.96801180311013e-06
  mentions {
    text {
      content: "walk rainbow tunnel"
      begin_offset: 114495
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "croydon"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/021cv"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/London_Borough_of_Croydon"
  }
  salience: 6.945833774807397e-06
  mentions {
    text {
      content: "croydon"
      begin_offset: 149981
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 6.9296916080929805e-06
  mentions {
    text {
      content: "flamingos"
      begin_offset: 155289
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 6.928631137270713e-06
  mentions {
    text {
      content: "flamingos"
      begin_offset: 155971
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flamingos"
  type: OTHER
  salience: 6.927583854121622e-06
  mentions {
    text {
      content: "flamingos"
      begin_offset: 158925
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 6.923521141288802e-06
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 165873
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "visit half price entry"
  type: OTHER
  salience: 6.91870309310616e-06
  mentions {
    text {
      content: "visit half price entry"
      begin_offset: 176135
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "share experience"
  type: OTHER
  salience: 6.858630058559356e-06
  mentions {
    text {
      content: "share experience"
      begin_offset: 164496
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "tmnikonian redlionmayfair"
  type: PERSON
  salience: 6.8509025368257426e-06
  mentions {
    text {
      content: "tmnikonian  redlionmayfair"
      begin_offset: 94993
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "piccadilly victoria amsharif"
  type: ORGANIZATION
  salience: 6.8415224632190075e-06
  mentions {
    text {
      content: "piccadilly victoria  amsharif"
      begin_offset: 106885
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "swimming sevendials coventgarden outsidework greypointe cubitt"
  type: PERSON
  salience: 6.840057267254451e-06
  mentions {
    text {
      content: "swimming  sevendials coventgarden outsidework  greypointe  cubitt"
      begin_offset: 108746
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "mayfair grosvenor_ldn grosvenor_gbi greypointe cubitt"
  type: PERSON
  salience: 6.838617082394194e-06
  mentions {
    text {
      content: "mayfair grosvenor_ldn grosvenor_gbi  greypointe  cubitt"
      begin_offset: 112382
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "bhawnasaini_yml"
  type: ORGANIZATION
  salience: 6.803415089962073e-06
  mentions {
    text {
      content: "bhawnasaini_yml"
      begin_offset: 66896
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "newwestend wave"
  type: OTHER
  salience: 6.795402896386804e-06
  mentions {
    text {
      content: "newwestend wave"
      begin_offset: 156664
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "telephonebox bufalino deseille jakubkrupa"
  type: PERSON
  salience: 6.793834018026246e-06
  mentions {
    text {
      content: "telephonebox bufalino deseille  jakubkrupa"
      begin_offset: 73745
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "newcastle fontwell crz_mankai8"
  type: ORGANIZATION
  salience: 6.793834018026246e-06
  mentions {
    text {
      content: "newcastle  fontwell crz_mankai8"
      begin_offset: 75096
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "website"
  type: OTHER
  salience: 6.746376584487734e-06
  mentions {
    text {
      content: "website"
      begin_offset: 171327
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "actioncountersterrorism teamworktomakethedreamwork revdsimonharvey"
  type: PERSON
  salience: 6.74251168675255e-06
  mentions {
    text {
      content: "actioncountersterrorism teamworktomakethedreamwork  revdsimonharvey"
      begin_offset: 127833
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "child hood"
  type: OTHER
  salience: 6.740458047715947e-06
  mentions {
    text {
      content: "child hood"
      begin_offset: 174438
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "sevendials lumierelondon ianbeetlestone westminsterabbey exitmagazine maxcoopermax"
  type: ORGANIZATION
  salience: 6.727873824274866e-06
  mentions {
    text {
      content: "sevendials  lumierelondon  ianbeetlestone westminsterabbey   exitmagazine  maxcoopermax"
      begin_offset: 128957
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "favourites"
  type: OTHER
  salience: 6.7276869231136516e-06
  mentions {
    text {
      content: "favourites"
      begin_offset: 155186
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "rhys coren"
  type: PERSON
  salience: 6.719643351971172e-06
  mentions {
    text {
      content: "rhys coren"
      begin_offset: 142449
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "child hood pulse movement light amp sound"
  type: OTHER
  salience: 6.6698621594696306e-06
  mentions {
    text {
      content: "child hood pulse movement light amp sound"
      begin_offset: 158766
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "city hall danielcanogar"
  type: PERSON
  salience: 6.591907549591269e-06
  mentions {
    text {
      content: "city hall danielcanogar"
      begin_offset: 144425
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "dancing lights music"
  type: WORK_OF_ART
  salience: 6.575071893166751e-06
  mentions {
    text {
      content: "dancing lights music"
      begin_offset: 175998
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "simonmanleyfco que haya luz segunda edici\303\263n del festival de luces en londres"
  type: LOCATION
  salience: 6.553487310156925e-06
  mentions {
    text {
      content: "simonmanleyfco que haya luz segunda edici\303\263n del festival de luces en londres"
      begin_offset: 160281
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust"
  type: ORGANIZATION
  salience: 6.5336535044480115e-06
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust"
      begin_offset: 172530
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "brightnights"
  type: OTHER
  salience: 6.510921593871899e-06
  mentions {
    text {
      content: "brightnights"
      begin_offset: 156325
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
  }
}
entities {
  name: "amp pandora box brightnights"
  type: ORGANIZATION
  salience: 6.509937520604581e-06
  mentions {
    text {
      content: "amp pandora box brightnights"
      begin_offset: 157766
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp pandora box brightnights"
  type: ORGANIZATION
  salience: 6.509937520604581e-06
  mentions {
    text {
      content: "amp pandora box brightnights"
      begin_offset: 158011
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "highlights"
  type: OTHER
  salience: 6.508005753858015e-06
  mentions {
    text {
      content: "highlights"
      begin_offset: 162946
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "things"
  type: OTHER
  salience: 6.505193141492782e-06
  mentions {
    text {
      content: "things"
      begin_offset: 167892
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "child"
  type: PERSON
  salience: 6.502476935565937e-06
  mentions {
    text {
      content: "child"
      begin_offset: 174459
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "traveljunkiegrl"
  type: PERSON
  salience: 6.4355272115790285e-06
  mentions {
    text {
      content: "traveljunkiegrl"
      begin_offset: 156830
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "statue"
  type: WORK_OF_ART
  salience: 6.428064807550982e-06
  mentions {
    text {
      content: "statue"
      begin_offset: 171374
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "david batchelor"
  type: PERSON
  salience: 6.395257059921278e-06
  mentions {
    text {
      content: "david batchelor"
      begin_offset: 132383
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 6.385106644302141e-06
  mentions {
    text {
      content: "warning"
      begin_offset: 158162
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 6.383211257343646e-06
  mentions {
    text {
      content: "warning"
      begin_offset: 161439
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 6.383211257343646e-06
  mentions {
    text {
      content: "warning"
      begin_offset: 162501
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 6.3822808442637324e-06
  mentions {
    text {
      content: "warning"
      begin_offset: 163889
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "warning"
  type: OTHER
  salience: 6.3822808442637324e-06
  mentions {
    text {
      content: "warning"
      begin_offset: 165139
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "thing"
  type: OTHER
  salience: 6.35247988611809e-06
  mentions {
    text {
      content: "thing"
      begin_offset: 156130
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "planning trip"
  type: EVENT
  salience: 6.35172091278946e-06
  mentions {
    text {
      content: "planning trip"
      begin_offset: 170482
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "make note"
  type: OTHER
  salience: 6.320424290606752e-06
  mentions {
    text {
      content: "make note"
      begin_offset: 126153
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "piccadilly stjames jermynstreet"
  type: OTHER
  salience: 6.28770976618398e-06
  mentions {
    text {
      content: "piccadilly stjames jermynstreet"
      begin_offset: 155853
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "style"
      begin_offset: 155847
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scape collectifcoin echelle ronhaselden"
  type: CONSUMER_GOOD
  salience: 6.2858207456883974e-06
  mentions {
    text {
      content: "scape collectifcoin echelle ronhaselden"
      begin_offset: 159845
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "child hood light amp sound"
      begin_offset: 159818
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "visitlondon visitlondon createvictoria tanjaphotograph magical lumi\303\250re london"
  type: ORGANIZATION
  salience: 6.2858207456883974e-06
  mentions {
    text {
      content: "visitlondon visitlondon createvictoria  tanjaphotograph magical lumi\303\250re london"
      begin_offset: 159528
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "blogger photographer"
      begin_offset: 159507
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "oppounities"
  type: OTHER
  salience: 6.275116447795881e-06
  mentions {
    text {
      content: "oppounities"
      begin_offset: 163583
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "pictures"
  type: WORK_OF_ART
  salience: 6.273319286265178e-06
  mentions {
    text {
      content: "pictures"
      begin_offset: 168501
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bhawnasaini_yml"
  type: LOCATION
  salience: 6.2551475821237545e-06
  mentions {
    text {
      content: "bhawnasaini_yml"
      begin_offset: 144743
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "chance"
  type: OTHER
  salience: 6.2422786868410185e-06
  mentions {
    text {
      content: "chance"
      begin_offset: 165659
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "kingscross couesy nofilterneeded"
  type: OTHER
  salience: 6.2366993915929925e-06
  mentions {
    text {
      content: "kingscross couesy  nofilterneeded"
      begin_offset: 110868
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "mayfair johansford johansfordsalon"
  type: LOCATION
  salience: 6.2328904277819674e-06
  mentions {
    text {
      content: "mayfair johansford johansfordsalon"
      begin_offset: 119001
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "pong lumierelondon2018 waterlicht dan"
  type: ORGANIZATION
  salience: 6.2328904277819674e-06
  mentions {
    text {
      content: "pong   lumierelondon2018 waterlicht dan"
      begin_offset: 118341
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "londonblogger wintersinlondon nightfestival wildscreens"
  type: OTHER
  salience: 6.204596047609812e-06
  mentions {
    text {
      content: "londonblogger wintersinlondon nightfestival   wildscreens"
      begin_offset: 67023
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scrums"
  type: OTHER
  salience: 6.123356342868647e-06
  mentions {
    text {
      content: "scrums"
      begin_offset: 83407
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "map"
  type: WORK_OF_ART
  salience: 6.114326424722094e-06
  mentions {
    text {
      content: "map"
      begin_offset: 155247
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "treasure hunt"
  type: PERSON
  salience: 6.113391009421321e-06
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 156532
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 6.110652975621633e-06
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 163340
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "treasure hunt"
  type: PERSON
  salience: 6.109762125561247e-06
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 165213
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
  }
}
entities {
  name: "planet"
  type: LOCATION
  salience: 6.109762125561247e-06
  mentions {
    text {
      content: "planet"
      begin_offset: 164274
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "map"
  type: WORK_OF_ART
  salience: 6.108882189437281e-06
  mentions {
    text {
      content: "map"
      begin_offset: 165454
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "treasure hunt"
  type: EVENT
  salience: 6.1063024077157024e-06
  mentions {
    text {
      content: "treasure hunt"
      begin_offset: 171798
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "piece"
  type: OTHER
  salience: 6.105462034611264e-06
  mentions {
    text {
      content: "piece"
      begin_offset: 174425
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 6.023397872922942e-06
  mentions {
    text {
      content: "sculpture"
      begin_offset: 164969
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 6.022530214977451e-06
  mentions {
    text {
      content: "sculpture"
      begin_offset: 166075
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "soho"
  type: OTHER
  salience: 6.022530214977451e-06
  mentions {
    text {
      content: "soho"
      begin_offset: 167415
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "soho"
  type: LOCATION
  salience: 6.021672561473679e-06
  mentions {
    text {
      content: "soho"
      begin_offset: 167932
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "soho"
  type: LOCATION
  salience: 6.021672561473679e-06
  mentions {
    text {
      content: "soho"
      begin_offset: 168188
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sculpture"
  type: OTHER
  salience: 6.019986813043943e-06
  mentions {
    text {
      content: "sculpture"
      begin_offset: 172853
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "soho"
  type: OTHER
  salience: 6.0191582633706275e-06
  mentions {
    text {
      content: "soho"
      begin_offset: 174853
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "soho"
  type: OTHER
  salience: 6.0191582633706275e-06
  mentions {
    text {
      content: "soho"
      begin_offset: 175124
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "insight magic"
  type: OTHER
  salience: 5.986421911075013e-06
  mentions {
    text {
      content: "insight magic"
      begin_offset: 163506
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "trafalgarsquare collectifcoin"
  type: LOCATION
  salience: 5.9369490372773726e-06
  mentions {
    text {
      content: "trafalgarsquare collectifcoin"
      begin_offset: 158815
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "physicalenergy openyoureyesldn"
  type: PERSON
  salience: 5.92289688938763e-06
  mentions {
    text {
      content: "physicalenergy  openyoureyesldn"
      begin_offset: 139487
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lumiere southbanklondon"
  type: PERSON
  salience: 5.834327566844877e-06
  mentions {
    text {
      content: "lumiere   southbanklondon"
      begin_offset: 162018
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon carnabylondon southbanklondon"
  type: PERSON
  salience: 5.831805992784211e-06
  mentions {
    text {
      content: "lumierelondon carnabylondon  southbanklondon"
      begin_offset: 167500
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "sroosegaarde pa catch"
  type: OTHER
  salience: 5.812025392515352e-06
  mentions {
    text {
      content: "sroosegaarde pa  catch"
      begin_offset: 157561
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "window"
  type: OTHER
  salience: 5.75053718421259e-06
  mentions {
    text {
      content: "window"
      begin_offset: 156885
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "way"
  type: OTHER
  salience: 5.748809599026572e-06
  mentions {
    text {
      content: "way"
      begin_offset: 159678
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "leebrowne1971 lumierelondon2018 lumierelondon visitlondon maxcoopermax"
  type: ORGANIZATION
  salience: 5.73131046621711e-06
  mentions {
    text {
      content: "leebrowne1971 lumierelondon2018 lumierelondon  visitlondon  maxcoopermax"
      begin_offset: 129965
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "london lumierelondon timeoutlondon lightfestival glamazonlondon"
  type: LOCATION
  salience: 5.713574410037836e-06
  mentions {
    text {
      content: "london lumierelondon  timeoutlondon lightfestival  glamazonlondon"
      begin_offset: 126659
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "lumierelondon bbctravelale"
  type: LOCATION
  salience: 5.700934707419947e-06
  mentions {
    text {
      content: "lumierelondon  bbctravelale"
      begin_offset: 151660
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "piccadilly stjames jermynstreet smitf_london"
  type: LOCATION
  salience: 5.700934707419947e-06
  mentions {
    text {
      content: "piccadilly stjames jermynstreet  smitf_london"
      begin_offset: 153436
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.4000000059604645
  }
}
entities {
  name: "dinner"
  type: OTHER
  salience: 5.576840976573294e-06
  mentions {
    text {
      content: "dinner"
      begin_offset: 157458
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 5.5492982937721536e-06
  mentions {
    text {
      content: "cocktails"
      begin_offset: 157004
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "cocktails"
  type: OTHER
  salience: 5.548459739657119e-06
  mentions {
    text {
      content: "cocktails"
      begin_offset: 157955
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 5.547631644731155e-06
  mentions {
    text {
      content: "love motion"
      begin_offset: 160825
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 5.545205567614175e-06
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 165984
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 5.5444161262130365e-06
  mentions {
    text {
      content: "love motion"
      begin_offset: 169026
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "love motion"
  type: OTHER
  salience: 5.543635325011564e-06
  mentions {
    text {
      content: "love motion"
      begin_offset: 169788
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 5.543635325011564e-06
  mentions {
    text {
      content: "buses"
      begin_offset: 169535
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 5.543635325011564e-06
  mentions {
    text {
      content: "buses"
      begin_offset: 169410
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "lighting capital"
  type: OTHER
  salience: 5.542864073504461e-06
  mentions {
    text {
      content: "lighting capital"
      begin_offset: 172762
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "music amp wind everyone"
  type: PERSON
  salience: 5.5421010074496735e-06
  mentions {
    text {
      content: "music amp wind everyone"
      begin_offset: 174506
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "fun"
  type: OTHER
  salience: 5.5421010074496735e-06
  mentions {
    text {
      content: "fun"
      begin_offset: 174530
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "magic mayfair lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy"
  type: ORGANIZATION
  salience: 5.488382157636806e-06
  mentions {
    text {
      content: "magic mayfair  lumierelondon lumiere london mayfair visitlondon aichoketrust timeoutlondon camillachild royalacademy"
      begin_offset: 93412
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "vous voulez voir quelques vid\303\251os"
  type: WORK_OF_ART
  salience: 5.487043381435797e-06
  mentions {
    text {
      content: "vous voulez voir quelques vid\303\251os"
      begin_offset: 94836
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "shaida ealking"
  type: OTHER
  salience: 5.485731435328489e-06
  mentions {
    text {
      content: "shaida ealking"
      begin_offset: 98335
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere umusicuk"
  type: OTHER
  salience: 5.472779776027892e-06
  mentions {
    text {
      content: "lumiere   umusicuk"
      begin_offset: 120433
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lewisham vbp2011"
  type: PERSON
  salience: 5.4470065151690505e-06
  mentions {
    text {
      content: "lewisham  vbp2011"
      begin_offset: 67884
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cast commentary"
  type: WORK_OF_ART
  salience: 5.441770099423593e-06
  mentions {
    text {
      content: "cast commentary"
      begin_offset: 158136
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "students"
  type: PERSON
  salience: 5.439362212200649e-06
  mentions {
    text {
      content: "students"
      begin_offset: 164544
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "euro_tour \345\205\211\343\201\256\347\245\255\345\205\270 \343\203\253\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263"
  type: ORGANIZATION
  salience: 5.43780834050267e-06
  mentions {
    text {
      content: "euro_tour \345\205\211\343\201\256\347\245\255\345\205\270 \343\203\253\343\203\237\343\202\250\343\203\274\343\203\253 \343\203\255\343\203\263\343\203\211\343\203\263"
      begin_offset: 76609
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.20000000298023224
  }
}
entities {
  name: "balloons"
  type: CONSUMER_GOOD
  salience: 5.435533694253536e-06
  mentions {
    text {
      content: "balloons"
      begin_offset: 174489
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "flickr"
  type: EVENT
  salience: 5.435533694253536e-06
  mentions {
    text {
      content: "flickr"
      begin_offset: 174986
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "ilovelondon nationalhuggingday2018"
  type: PERSON
  salience: 5.431272256828379e-06
  mentions {
    text {
      content: "ilovelondon nationalhuggingday2018"
      begin_offset: 84513
    }
    type: PROPER
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "wld"
  type: OTHER
  salience: 5.400603640737245e-06
  mentions {
    text {
      content: "wld"
      begin_offset: 173702
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "jayonlife visitlondon julie_guldahl"
  type: ORGANIZATION
  salience: 5.342810709407786e-06
  mentions {
    text {
      content: "jayonlife  visitlondon  julie_guldahl"
      begin_offset: 112893
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "fitzrovia area"
  type: LOCATION
  salience: 5.330446128937183e-06
  mentions {
    text {
      content: "fitzrovia area"
      begin_offset: 158689
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust mrcravenracont"
  type: ORGANIZATION
  salience: 5.329026407707715e-06
  mentions {
    text {
      content: "london lumierelondon londonisopen sadiqkhan mayoroflondon aichoketrust  mrcravenracont"
      begin_offset: 141578
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 5.328864062903449e-06
  mentions {
    text {
      content: "scenes"
      begin_offset: 162878
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 5.328864062903449e-06
  mentions {
    text {
      content: "scenes"
      begin_offset: 162547
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "scenes"
  type: OTHER
  salience: 5.325070105755003e-06
  mentions {
    text {
      content: "scenes"
      begin_offset: 172517
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "amp care animals"
  type: OTHER
  salience: 5.277275704429485e-06
  mentions {
    text {
      content: "amp care animals"
      begin_offset: 159709
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "order prints"
  type: OTHER
  salience: 5.272740509099094e-06
  mentions {
    text {
      content: "order prints"
      begin_offset: 171339
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "origin world bubble"
  type: OTHER
  salience: 5.214744305703789e-06
  mentions {
    text {
      content: "origin world bubble"
      begin_offset: 156600
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "website"
  type: OTHER
  salience: 5.211648840486305e-06
  mentions {
    text {
      content: "website"
      begin_offset: 163611
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "world bubble"
  type: OTHER
  salience: 5.211648840486305e-06
  mentions {
    text {
      content: "world bubble"
      begin_offset: 164188
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "eye visitlondon website"
  type: OTHER
  salience: 5.209422852203716e-06
  mentions {
    text {
      content: "eye visitlondon website"
      begin_offset: 170502
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "families"
  type: PERSON
  salience: 5.172857072466286e-06
  mentions {
    text {
      content: "families"
      begin_offset: 170580
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "friend"
  type: PERSON
  salience: 5.092433184472611e-06
  mentions {
    text {
      content: "friend"
      begin_offset: 157313
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "friends"
  type: PERSON
  salience: 5.08867742610164e-06
  mentions {
    text {
      content: "friends"
      begin_offset: 166800
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "bench lumierelondon friendship"
  type: OTHER
  salience: 5.08867742610164e-06
  mentions {
    text {
      content: "bench  lumierelondon friendship"
      begin_offset: 166808
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "flowers"
  type: OTHER
  salience: 5.0865282901213504e-06
  mentions {
    text {
      content: "flowers"
      begin_offset: 173072
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: -0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: -0.800000011920929
  }
}
entities {
  name: "canonukandie visitlondon aichoketrust southbanklondon"
  type: ORGANIZATION
  salience: 5.045871148467995e-06
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon"
      begin_offset: 155043
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon"
      begin_offset: 162560
    }
    type: PROPER
    sentiment {
    }
  }
  mentions {
    text {
      content: "canonukandie visitlondon aichoketrust southbanklondon"
      begin_offset: 162891
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
  }
}
entities {
  name: "trip"
  type: EVENT
  salience: 5.029188741900725e-06
  mentions {
    text {
      content: "trip"
      begin_offset: 162065
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "trip"
  type: EVENT
  salience: 5.027015504310839e-06
  mentions {
    text {
      content: "trip"
      begin_offset: 167566
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.20000000298023224
  }
}
entities {
  name: "kings cross lumiere reed_claire"
  type: ORGANIZATION
  salience: 5.018726824346231e-06
  mentions {
    text {
      content: "kings cross lumiere   reed_claire"
      begin_offset: 123548
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey visitlondon lumierelondon lumierelondon soed dslr lumiere london lumiere lumierelondon aichoketrust visitlondon tfltrafficnews"
  type: ORGANIZATION
  salience: 5.0159383135905955e-06
  mentions {
    text {
      content: "visitlondon timeoutlondon londonist standardnews guardianphotos lumierelondon a visitlondon westminsterabbey  visitlondon lumierelondon  lumierelondon soed dslr lumiere london  lumiere lumierelondon aichoketrust visitlondon  tfltrafficnews"
      begin_offset: 130840
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "manchester"
  type: LOCATION
  salience: 5.013271675124997e-06
  mentions {
    text {
      content: "manchester"
      begin_offset: 137167
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "philip vaughan"
  type: PERSON
  metadata {
    key: "mid"
    value: "/m/0463f05"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Philip_Vaughan"
  }
  salience: 5.0115563681174535e-06
  mentions {
    text {
      content: "philip vaughan"
      begin_offset: 140288
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "lumierelondon southbank chinatown westminsterabbey stjames london lovelondon piccadillyline"
  type: ORGANIZATION
  salience: 5.006062565371394e-06
  mentions {
    text {
      content: "lumierelondon southbank chinatown westminsterabbey stjames london lovelondon  piccadillyline"
      begin_offset: 172006
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 4.963548235537019e-06
  mentions {
    text {
      content: "weather"
      begin_offset: 155794
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "movement amp sound"
  type: OTHER
  salience: 4.963548235537019e-06
  mentions {
    text {
      content: "movement amp sound"
      begin_offset: 156738
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "beacon light darkness riverfront"
  type: LOCATION
  salience: 4.963548235537019e-06
  mentions {
    text {
      content: "beacon light darkness riverfront"
      begin_offset: 156785
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "stuff"
  type: OTHER
  salience: 4.96269740324351e-06
  mentions {
    text {
      content: "stuff"
      begin_offset: 157423
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "animals"
  type: OTHER
  salience: 4.962057118973462e-06
  mentions {
    text {
      content: "animals"
      begin_offset: 160140
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 4.962057118973462e-06
  mentions {
    text {
      content: "weather"
      begin_offset: 161186
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "animal"
  type: OTHER
  salience: 4.962057118973462e-06
  mentions {
    text {
      content: "animal"
      begin_offset: 159632
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "ladder"
  type: OTHER
  salience: 4.961324975738535e-06
  mentions {
    text {
      content: "ladder"
      begin_offset: 162191
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 4.961324975738535e-06
  mentions {
    text {
      content: "whizz"
      begin_offset: 163301
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "justice"
  type: OTHER
  salience: 4.959180841979105e-06
  mentions {
    text {
      content: "justice"
      begin_offset: 168510
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "tour"
  type: EVENT
  salience: 4.958482804795494e-06
  mentions {
    text {
      content: "tour"
      begin_offset: 171082
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "whizz"
  type: OTHER
  salience: 4.957792498316849e-06
  mentions {
    text {
      content: "whizz"
      begin_offset: 171759
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: -0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: -0.699999988079071
  }
}
entities {
  name: "south bank"
  type: ORGANIZATION
  salience: 4.84653583043837e-06
  mentions {
    text {
      content: "south bank"
      begin_offset: 162070
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "south bank"
  type: OTHER
  salience: 4.844441264140187e-06
  mentions {
    text {
      content: "south bank"
      begin_offset: 167571
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "weather"
  type: OTHER
  salience: 4.837818778469227e-06
  mentions {
    text {
      content: "weather"
      begin_offset: 169962
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "child hood collectif coin"
  type: OTHER
  salience: 4.8271394916810095e-06
  mentions {
    text {
      content: "child hood collectif coin"
      begin_offset: 155660
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "child hood collectif coin"
  type: OTHER
  salience: 4.825689302379033e-06
  mentions {
    text {
      content: "child hood collectif coin"
      begin_offset: 160973
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "child hood collectif coin"
  type: OTHER
  salience: 4.82289215142373e-06
  mentions {
    text {
      content: "child hood collectif coin"
      begin_offset: 168316
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "energy"
  type: OTHER
  salience: 4.821542006538948e-06
  mentions {
    text {
      content: "energy"
      begin_offset: 172798
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "child hood collectif coin"
  type: OTHER
  salience: 4.820878530154005e-06
  mentions {
    text {
      content: "child hood collectif coin"
      begin_offset: 173339
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "array"
  type: OTHER
  salience: 4.751292635774007e-06
  mentions {
    text {
      content: "array"
      begin_offset: 149892
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 4.6820186980767176e-06
  mentions {
    text {
      content: "glass"
      begin_offset: 156959
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 4.6820186980767176e-06
  mentions {
    text {
      content: "glass"
      begin_offset: 156208
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.681311111198738e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 158516
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "glass"
  type: OTHER
  salience: 4.681311111198738e-06
  mentions {
    text {
      content: "glass"
      begin_offset: 157665
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 4.681311111198738e-06
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 159152
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "production"
  type: OTHER
  salience: 4.67923973701545e-06
  mentions {
    text {
      content: "production"
      begin_offset: 164533
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677899596572388e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 168828
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677899596572388e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 168651
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677899596572388e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 169320
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677899596572388e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 169183
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677241122408304e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 169570
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "stories"
  type: WORK_OF_ART
  salience: 4.677241122408304e-06
  mentions {
    text {
      content: "stories"
      begin_offset: 171069
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "car bus"
  type: OTHER
  salience: 4.677241122408304e-06
  mentions {
    text {
      content: "car bus"
      begin_offset: 169445
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "scifi movie"
  type: WORK_OF_ART
  salience: 4.676589924201835e-06
  mentions {
    text {
      content: "scifi movie"
      begin_offset: 171643
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "staing"
  type: OTHER
  salience: 4.675946456700331e-06
  mentions {
    text {
      content: "staing"
      begin_offset: 175108
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "installation ganton street"
  type: ORGANIZATION
  salience: 4.635488494386664e-06
  mentions {
    text {
      content: "installation ganton street"
      begin_offset: 167443
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumiere2018 southbank leicestersquare westminsterabbey"
  type: ORGANIZATION
  salience: 4.6255199777078815e-06
  mentions {
    text {
      content: "lumiere2018 southbank leicestersquare westminsterabbey"
      begin_offset: 172212
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "names"
  type: OTHER
  salience: 4.526667453319533e-06
  mentions {
    text {
      content: "names"
      begin_offset: 157025
    }
    type: COMMON
    sentiment {
      magnitude: 0.8999999761581421
      score: 0.8999999761581421
    }
  }
  sentiment {
    magnitude: 0.8999999761581421
    score: 0.8999999761581421
  }
}
entities {
  name: "plastic bottles"
  type: CONSUMER_GOOD
  salience: 4.526667453319533e-06
  mentions {
    text {
      content: "plastic bottles"
      begin_offset: 156864
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "church"
  type: LOCATION
  salience: 4.522684321273118e-06
  mentions {
    text {
      content: "church"
      begin_offset: 168561
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "glissando action"
  type: OTHER
  salience: 4.522047674981877e-06
  mentions {
    text {
      content: "glissando action"
      begin_offset: 169854
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "academy"
  type: ORGANIZATION
  salience: 4.52141830464825e-06
  mentions {
    text {
      content: "academy"
      begin_offset: 171277
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "london lumierelondon londonisopen sadiqkhan"
  type: OTHER
  salience: 4.431250999914482e-06
  mentions {
    text {
      content: "london lumierelondon londonisopen sadiqkhan"
      begin_offset: 163379
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 4.359760168881621e-06
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 155515
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 4.359093054517871e-06
  mentions {
    text {
      content: "bat"
      begin_offset: 156296
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 4.359093054517871e-06
  mentions {
    text {
      content: "bat"
      begin_offset: 157047
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bum"
  type: OTHER
  salience: 4.358434125606436e-06
  mentions {
    text {
      content: "bum"
      begin_offset: 158184
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 4.358434125606436e-06
  mentions {
    text {
      content: "bat"
      begin_offset: 157753
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "bat"
  type: OTHER
  salience: 4.358434125606436e-06
  mentions {
    text {
      content: "bat"
      begin_offset: 157998
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "bum"
  type: OTHER
  salience: 4.356505542091327e-06
  mentions {
    text {
      content: "bum"
      begin_offset: 163911
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 4.356505542091327e-06
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 163714
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 4.356505542091327e-06
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 164398
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
  }
}
entities {
  name: "spire stop caf\303\251"
  type: LOCATION
  salience: 4.356505542091327e-06
  mentions {
    text {
      content: "spire  stop caf\303\251"
      begin_offset: 163986
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "wildlife"
  type: OTHER
  salience: 4.3558779907471035e-06
  mentions {
    text {
      content: "wildlife"
      begin_offset: 166654
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "corner"
  type: LOCATION
  salience: 4.355257715360494e-06
  mentions {
    text {
      content: "corner"
      begin_offset: 167477
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "images wildlife"
  type: OTHER
  salience: 4.355257715360494e-06
  mentions {
    text {
      content: "images wildlife"
      begin_offset: 167702
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "creation"
  type: OTHER
  salience: 4.354644715931499e-06
  mentions {
    text {
      content: "creation"
      begin_offset: 170965
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  sentiment {
    magnitude: 0.800000011920929
    score: 0.800000011920929
  }
}
entities {
  name: "tag"
  type: OTHER
  salience: 4.354038537712768e-06
  mentions {
    text {
      content: "tag"
      begin_offset: 172873
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "hyde park corner"
  type: PERSON
  salience: 4.354038537712768e-06
  mentions {
    text {
      content: "hyde park corner"
      begin_offset: 172483
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "hyde park corner"
  type: PERSON
  salience: 4.354038537712768e-06
  mentions {
    text {
      content: "hyde park corner"
      begin_offset: 172184
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "corner"
  type: LOCATION
  salience: 4.353439180704299e-06
  mentions {
    text {
      content: "corner"
      begin_offset: 174915
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "corner"
  type: LOCATION
  salience: 4.353439180704299e-06
  mentions {
    text {
      content: "corner"
      begin_offset: 175186
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "rhianbwatts"
  type: PERSON
  salience: 4.279207587387646e-06
  mentions {
    text {
      content: "rhianbwatts"
      begin_offset: 156055
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "pa imakefings"
  type: ORGANIZATION
  salience: 4.248674486007076e-06
  mentions {
    text {
      content: "pa  imakefings"
      begin_offset: 170730
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "well"
  type: LOCATION
  salience: 4.177242317382479e-06
  mentions {
    text {
      content: "well"
      begin_offset: 155227
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "buses"
  type: OTHER
  salience: 4.176522452326026e-06
  mentions {
    text {
      content: "buses"
      begin_offset: 168918
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "toddy"
  type: PERSON
  salience: 4.175972208031453e-06
  mentions {
    text {
      content: "toddy"
      begin_offset: 158912
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "dials"
  type: OTHER
  salience: 4.175348749413388e-06
  mentions {
    text {
      content: "dials"
      begin_offset: 161087
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "dials"
  type: OTHER
  salience: 4.175348749413388e-06
  mentions {
    text {
      content: "dials"
      begin_offset: 160574
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.10000000149011612
  }
}
entities {
  name: "srmlondon"
  type: PERSON
  salience: 4.174733021500288e-06
  mentions {
    text {
      content: "srmlondon"
      begin_offset: 163277
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "london lumiere srmlondon"
  type: PERSON
  salience: 4.171760338067543e-06
  mentions {
    text {
      content: "london lumiere  srmlondon"
      begin_offset: 171719
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "hands"
  type: OTHER
  salience: 4.171760338067543e-06
  mentions {
    text {
      content: "hands"
      begin_offset: 171315
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "theatre"
  type: LOCATION
  salience: 4.171186446910724e-06
  mentions {
    text {
      content: "theatre"
      begin_offset: 173513
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "lumierelondon2018 thelondoneye"
  type: OTHER
  salience: 4.126203748455737e-06
  mentions {
    text {
      content: "lumierelondon2018 thelondoneye"
      begin_offset: 171543
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "frogs"
  type: OTHER
  salience: 4.074966000189306e-06
  mentions {
    text {
      content: "frogs"
      begin_offset: 156414
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "helbron"
  type: OTHER
  salience: 3.975414529122645e-06
  mentions {
    text {
      content: "helbron"
      begin_offset: 156342
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "installation company"
  type: ORGANIZATION
  salience: 3.975414529122645e-06
  mentions {
    text {
      content: "installation company"
      begin_offset: 156695
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "training jobs"
  type: OTHER
  salience: 3.973054845118895e-06
  mentions {
    text {
      content: "training jobs"
      begin_offset: 163547
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "tfl update"
  type: OTHER
  salience: 3.971916612499626e-06
  mentions {
    text {
      content: "tfl update"
      begin_offset: 168614
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "mader wiermann grabber computer"
  type: CONSUMER_GOOD
  salience: 3.971357728005387e-06
  mentions {
    text {
      content: "mader wiermann grabber computer"
      begin_offset: 170901
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "sta"
  type: OTHER
  salience: 3.971357728005387e-06
  mentions {
    text {
      content: "sta"
      begin_offset: 169909
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "oxfordstreet bike"
  type: CONSUMER_GOOD
  salience: 3.970258603658294e-06
  mentions {
    text {
      content: "oxfordstreet bike"
      begin_offset: 173787
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "hatmanoflondon"
  type: PERSON
  salience: 3.970258603658294e-06
  mentions {
    text {
      content: "hatmanoflondon"
      begin_offset: 174544
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "gloves amp scarf"
  type: OTHER
  salience: 3.92759102396667e-06
  mentions {
    text {
      content: "gloves amp scarf"
      begin_offset: 158368
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "lumiere lumierelondon lumierelondon2018 mayfair streeta"
  type: LOCATION
  salience: 3.888371793436818e-06
  mentions {
    text {
      content: "lumiere  lumierelondon lumierelondon2018 mayfair streeta"
      begin_offset: 159906
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "que haya luz segunda edici\303\263n del festival de"
  type: PERSON
  salience: 3.751508074856247e-06
  mentions {
    text {
      content: "que haya luz segunda edici\303\263n del festival de"
      begin_offset: 171174
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "app"
  type: CONSUMER_GOOD
  salience: 3.7505049022001913e-06
  mentions {
    text {
      content: "app"
      begin_offset: 155263
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: 0.10000000149011612
  }
}
entities {
  name: "thesavoylondon"
  type: WORK_OF_ART
  salience: 3.7477050227607833e-06
  mentions {
    text {
      content: "thesavoylondon"
      begin_offset: 164043
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "tflbusales"
  type: PERSON
  salience: 3.746631591639016e-06
  mentions {
    text {
      content: "tflbusales"
      begin_offset: 169298
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "front page"
  type: OTHER
  salience: 3.7450672607519664e-06
  mentions {
    text {
      content: "front page"
      begin_offset: 173691
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: -0.4000000059604645
  }
}
entities {
  name: "background"
  type: OTHER
  salience: 3.744557716345298e-06
  mentions {
    text {
      content: "background"
      begin_offset: 175605
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: 0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: 0.20000000298023224
  }
}
entities {
  name: "techniciansmakeithappen smitf_london"
  type: LOCATION
  salience: 3.609101668189396e-06
  mentions {
    text {
      content: "techniciansmakeithappen  smitf_london"
      begin_offset: 163619
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "piccadillycircus wabbey stas"
  type: PERSON
  salience: 3.504961568978615e-06
  mentions {
    text {
      content: "piccadillycircus  wabbey  stas"
      begin_offset: 165740
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "westminster mayfair"
  type: EVENT
  salience: 3.504462483761017e-06
  mentions {
    text {
      content: "westminster mayfair"
      begin_offset: 168168
    }
    type: PROPER
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "giant"
  type: ORGANIZATION
  salience: 3.490243216219824e-06
  mentions {
    text {
      content: "giant"
      begin_offset: 160640
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "light festival gasholders"
  type: PERSON
  salience: 3.4897284422186203e-06
  mentions {
    text {
      content: "light festival gasholders"
      begin_offset: 162721
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "bum levanterman"
  type: PERSON
  salience: 3.4897284422186203e-06
  mentions {
    text {
      content: "bum  levanterman"
      begin_offset: 162523
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "giant"
  type: ORGANIZATION
  salience: 3.4897284422186203e-06
  mentions {
    text {
      content: "giant"
      begin_offset: 161471
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "followers"
  type: PERSON
  salience: 3.488717084110249e-06
  mentions {
    text {
      content: "followers"
      begin_offset: 166403
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "followers"
  type: PERSON
  salience: 3.488717084110249e-06
  mentions {
    text {
      content: "followers"
      begin_offset: 166278
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  sentiment {
    magnitude: 0.4000000059604645
    score: 0.4000000059604645
  }
}
entities {
  name: "photography lumiere london point"
  type: OTHER
  salience: 3.486289188003866e-06
  mentions {
    text {
      content: "photography  lumiere london point"
      begin_offset: 175296
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "pic"
  type: WORK_OF_ART
  salience: 3.486289188003866e-06
  mentions {
    text {
      content: "pic"
      begin_offset: 176447
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "nickede wait"
  type: OTHER
  salience: 3.4058166420436464e-06
  mentions {
    text {
      content: "nickede wait"
      begin_offset: 159009
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "shaftesburyplc regentst_assoc thecrownestate"
  type: ORGANIZATION
  salience: 3.2445761917188065e-06
  mentions {
    text {
      content: "shaftesburyplc regentst_assoc thecrownestate"
      begin_offset: 163118
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "seat"
  type: OTHER
  salience: 3.20010440191254e-06
  mentions {
    text {
      content: "seat"
      begin_offset: 164149
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "culture fitness"
  type: OTHER
  salience: 3.183994977007387e-06
  mentions {
    text {
      content: "culture fitness"
      begin_offset: 157401
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "buzz"
  type: OTHER
  salience: 3.1830384159547975e-06
  mentions {
    text {
      content: "buzz"
      begin_offset: 159896
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "film exposure"
  type: OTHER
  salience: 3.1816466616874095e-06
  mentions {
    text {
      content: "film exposure"
      begin_offset: 166578
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "waltz piano"
  type: LOCATION
  salience: 3.18030288326554e-06
  mentions {
    text {
      content: "waltz piano"
      begin_offset: 171295
    }
    type: COMMON
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "timings"
  type: OTHER
  salience: 3.1798654163139872e-06
  mentions {
    text {
      content: "timings"
      begin_offset: 173673
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "wld"
  type: OTHER
  salience: 3.1798654163139872e-06
  mentions {
    text {
      content: "wld"
      begin_offset: 173645
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "aichoketrust biggsytravels"
  type: PERSON
  salience: 3.079936277572415e-06
  mentions {
    text {
      content: "aichoketrust biggsytravels"
      begin_offset: 158466
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "badgermoon stopthecull"
  type: OTHER
  salience: 3.0038406748644775e-06
  mentions {
    text {
      content: "badgermoon stopthecull"
      begin_offset: 176451
    }
    type: PROPER
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "habitat"
  type: OTHER
  salience: 2.7962501008005347e-06
  mentions {
    text {
      content: "habitat"
      begin_offset: 156461
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "water fountain"
  type: PERSON
  salience: 2.7962501008005347e-06
  mentions {
    text {
      content: "water fountain"
      begin_offset: 156436
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "performance wiltonmusichall"
  type: OTHER
  salience: 2.7962501008005347e-06
  mentions {
    text {
      content: "performance wiltonmusichall"
      begin_offset: 157347
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "night go check visitlondon alifestylerebel"
  type: EVENT
  salience: 2.7958274131378857e-06
  mentions {
    text {
      content: "night go check visitlondon  alifestylerebel"
      begin_offset: 159372
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "spire hallelujah chorus"
  type: ORGANIZATION
  salience: 2.7949977265961934e-06
  mentions {
    text {
      content: "spire hallelujah chorus"
      begin_offset: 162202
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "drawings"
  type: WORK_OF_ART
  salience: 2.7949977265961934e-06
  mentions {
    text {
      content: "drawings"
      begin_offset: 162772
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "amp sweets sugar"
  type: CONSUMER_GOOD
  salience: 2.794590272969799e-06
  mentions {
    text {
      content: "amp  sweets sugar"
      begin_offset: 163470
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "polaroidorignls type"
  type: OTHER
  salience: 2.7941878215642646e-06
  mentions {
    text {
      content: "polaroidorignls type"
      begin_offset: 166553
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "hell"
  type: OTHER
  salience: 2.793789917632239e-06
  mentions {
    text {
      content: "hell"
      begin_offset: 167877
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: 0.30000001192092896
  }
}
entities {
  name: "festival lights engineering"
  type: OTHER
  salience: 2.793789917632239e-06
  mentions {
    text {
      content: "festival lights engineering"
      begin_offset: 167805
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "backdrop coal"
  type: OTHER
  salience: 2.793396561173722e-06
  mentions {
    text {
      content: "backdrop coal"
      begin_offset: 170978
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "version"
  type: CONSUMER_GOOD
  salience: 2.793396561173722e-06
  mentions {
    text {
      content: "version"
      begin_offset: 170943
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "cuties"
  type: OTHER
  salience: 2.792243321891874e-06
  mentions {
    text {
      content: "cuties"
      begin_offset: 176433
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "brrrrr"
  type: PERSON
  salience: 2.792243321891874e-06
  mentions {
    text {
      content: "brrrrr"
      begin_offset: 176419
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  sentiment {
    magnitude: 0.6000000238418579
    score: 0.6000000238418579
  }
}
entities {
  name: "lumi\303\250re london lumierelondon2018 7dialslondon"
  type: LOCATION
  salience: 2.6731424895842792e-06
  mentions {
    text {
      content: "lumi\303\250re london  lumierelondon2018  7dialslondon"
      begin_offset: 160479
    }
    type: PROPER
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 0.699999988079071
    score: 0.699999988079071
  }
}
entities {
  name: "aichoketrust lumierelondon2018 visitlondon fuzzworks_uk"
  type: ORGANIZATION
  salience: 2.5745684979483485e-06
  mentions {
    text {
      content: "aichoketrust lumierelondon2018  visitlondon  fuzzworks_uk"
      begin_offset: 159025
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "names"
  type: OTHER
  salience: 2.5367658054165076e-06
  mentions {
    text {
      content: "names"
      begin_offset: 157976
    }
    type: COMMON
    sentiment {
      magnitude: 0.699999988079071
      score: 0.699999988079071
    }
  }
  sentiment {
    magnitude: 1.600000023841858
    score: 0.800000011920929
  }
}
entities {
  name: "london lumierelondon ivysohobrass"
  type: LOCATION
  salience: 2.533257656978094e-06
  mentions {
    text {
      content: "london lumierelondon  ivysohobrass"
      begin_offset: 174786
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "shapes"
  type: OTHER
  salience: 2.440462367303553e-06
  mentions {
    text {
      content: "shapes"
      begin_offset: 164252
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "london lumiere openyoureyesldn"
  type: OTHER
  salience: 2.3479592528019566e-06
  mentions {
    text {
      content: "london lumiere  openyoureyesldn"
      begin_offset: 159228
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "piccadilly stjames jermynstreet loki_lego"
  type: LOCATION
  salience: 2.347608642594423e-06
  mentions {
    text {
      content: "piccadilly stjames jermynstreet  loki_lego"
      begin_offset: 161245
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon"
  type: PERSON
  salience: 2.345268285353086e-06
  mentions {
    text {
      content: "igerslondon london visionlondon ilovelondon timeoutlondon ilovelondon"
      begin_offset: 174133
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
entities {
  name: "ideas"
  type: OTHER
  salience: 2.206231101808953e-06
  mentions {
    text {
      content: "ideas"
      begin_offset: 4134
    }
    type: COMMON
    sentiment {
      magnitude: 0.800000011920929
      score: 0.800000011920929
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 16333
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: 0.4000000059604645
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 22836
    }
    type: COMMON
    sentiment {
      magnitude: 0.30000001192092896
      score: 0.30000001192092896
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 27424
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 31998
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 33468
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 33610
    }
    type: COMMON
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 35973
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 44415
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 44820
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 47016
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 47425
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 48698
    }
    type: COMMON
    sentiment {
      magnitude: 0.6000000238418579
      score: 0.6000000238418579
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 63920
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 69553
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 70276
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 73450
    }
    type: COMMON
    sentiment {
      magnitude: 0.4000000059604645
      score: -0.4000000059604645
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 92171
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 94100
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 94300
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 96197
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 96497
    }
    type: COMMON
    sentiment {
      magnitude: 0.10000000149011612
      score: 0.10000000149011612
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 96749
    }
    type: COMMON
    sentiment {
    }
  }
  mentions {
    text {
      content: "ideas"
      begin_offset: 97651
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
    magnitude: 6.5
    score: 0.10000000149011612
  }
}
entities {
  name: "copper pic"
  type: WORK_OF_ART
  salience: 2.1855937575310236e-06
  mentions {
    text {
      content: "copper pic"
      begin_offset: 160051
    }
    type: COMMON
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "lumierelondon photograghy lizziemidd"
  type: OTHER
  salience: 2.0626530385925435e-06
  mentions {
    text {
      content: "lumierelondon  photograghy  lizziemidd"
      begin_offset: 155147
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "newcastle"
  type: LOCATION
  metadata {
    key: "mid"
    value: "/m/0j7ng"
  }
  metadata {
    key: "wikipedia_url"
    value: "https://en.wikipedia.org/wiki/Newcastle_upon_Tyne"
  }
  salience: 2.060816314042313e-06
  mentions {
    text {
      content: "newcastle"
      begin_offset: 166288
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon lumierelondon2018 visitlondon ontheroadtoyou"
  type: ORGANIZATION
  salience: 1.9383360267966054e-06
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  visitlondon  ontheroadtoyou"
      begin_offset: 159265
    }
    type: PROPER
    sentiment {
      magnitude: 0.10000000149011612
      score: -0.10000000149011612
    }
  }
  sentiment {
    magnitude: 0.10000000149011612
    score: -0.10000000149011612
  }
}
entities {
  name: "danish"
  type: LOCATION
  salience: 1.8808135564540862e-06
  mentions {
    text {
      content: "danish"
      begin_offset: 156688
    }
    type: PROPER
    sentiment {
    }
  }
  sentiment {
  }
}
entities {
  name: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_"
  type: ORGANIZATION
  salience: 1.8783741779770935e-06
  mentions {
    text {
      content: "westminsterabbey vivadentist pinkparachute1 abbeycraft23 bestsellers_sx freereinfamily suttonarmshorn thatpetplaceuk daz600 moroccanrose_"
      begin_offset: 173926
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "thejanuarychallenge 64millionaists"
  type: PERSON
  salience: 1.6507881355209975e-06
  mentions {
    text {
      content: "thejanuarychallenge 64millionaists"
      begin_offset: 164306
    }
    type: PROPER
    sentiment {
      magnitude: 0.20000000298023224
      score: -0.20000000298023224
    }
  }
  sentiment {
    magnitude: 0.20000000298023224
    score: -0.20000000298023224
  }
}
entities {
  name: "newcastle fontwell crz_mankai8 awesmoeb adithatsme"
  type: ORGANIZATION
  salience: 1.6505504163433216e-06
  mentions {
    text {
      content: "newcastle  fontwell crz_mankai8 awesmoeb  adithatsme"
      begin_offset: 166413
    }
    type: PROPER
    sentiment {
      magnitude: 0.5
      score: 0.5
    }
  }
  sentiment {
    magnitude: 0.5
    score: 0.5
  }
}
entities {
  name: "lumierelondon lumierelondon2018 lumiere airheadhell"
  type: PERSON
  salience: 1.6498534023412503e-06
  mentions {
    text {
      content: "lumierelondon lumierelondon2018  lumiere  airheadhell"
      begin_offset: 173080
    }
    type: PROPER
    sentiment {
      magnitude: 0.30000001192092896
      score: -0.30000001192092896
    }
  }
  sentiment {
    magnitude: 0.30000001192092896
    score: -0.30000001192092896
  }
}
language: "en"

In [114]:
#print(json.dumps(response, indent=2))

#from pandas.io.json import json_normalize

#test2 = json_normalize(entities_sentiment['entities'])

Classifying Content

In [115]:
small = (sentence_tokenized1[120:10000])
In [116]:
language_client = language.LanguageServiceClient()

# The text to analyze
text = small #(sentence_tokenized1[:100])
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

categories = language_client.classify_text(document).categories

for category in categories:
        print(u'=' * 20)
        print(u'{:<16}: {}'.format('name', category.name))
        print(u'{:<16}: {}'.format('confidence', category.confidence))
====================
name            : /Arts & Entertainment/Events & Listings
confidence      : 0.6499999761581421